// SPDX-License-Identifier: MIT // // Copyright (c) 2009-2014 Cesar Rincon "NightFox" // Copyright (c) 2023 Antonio Niño Díaz "AntonioND" // // NightFox LIB - Global include // http://www.nightfoxandco.com/ #ifdef __cplusplus extern "C" { #endif #ifndef NF_LIB_H__ #define NF_LIB_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include /// Major version of NightFox's Lib #define NF_LIB_MAJOR (1) /// Minor version of NightFox's Lib #define NF_LIB_MINOR (1) /// Patch version of NightFox's Lib #define NF_LIB_PATCH (9) /// Full version of NightFox's Lib #define NF_LIB_VERSION ((NF_LIB_MAJOR << 16) | (NF_LIB_MINOR << 8) | (NF_LIB_PATCH)) /// String with the version of NightFox's Lib #define NF_LIB_VERSION_STRING "1.1.9" #endif // NF_LIB_H__ #ifdef __cplusplus } #endif