// Copyright (c) 2024-present The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef LIMENKA_KERNEL_WARNING_H #define LIMENKA_KERNEL_WARNING_H namespace kernel { enum class Warning { RULES_NOT_CONSENTED, UNKNOWN_NEW_RULES_ACTIVATED, LARGE_WORK_INVALID_CHAIN, UNKNOWN_NEW_RULES_SIGNAL_VBITS, UNKNOWN_NEW_RULES_SIGNAL_INTVER, }; } // namespace kernel #endif // LIMENKA_KERNEL_WARNING_H