/** * Jingga * * @copyright Jingga * @license OMS License 2.0 * @version 1.0.0 * @link https://jingga.app */ #ifndef COMS_PLATFORM_WIN32_LEAN_H #define COMS_PLATFORM_WIN32_LEAN_H #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN 1 #define NOGDICAPMASKS 1 #define NOVIRTUALKEYCODES 1 //#define NOWINMESSAGES 0 #define NOWINSTYLES 1 #define NOSYSMETRICS 1 #define NOMENUS 1 #define NOICONS 1 #define NOKEYSTATES 1 #define NOSYSCOMMANDS 1 #define NORASTEROPS 1 #define NOSHOWWINDOW 1 #define OEMRESOURCE 1 #define NOATOM 1 #define NOCLIPBOARD 1 #define NOCOLOR 1 #define NOCTLMGR 1 #define NODRAWTEXT 1 #define NOGDI 1 #define NOKERNEL 1 //#define NOUSER 0 #define NONLS 1 #define NOMB 1 #define NOMEMMGR 1 #define NOMETAFILE 1 #define NOMINMAX 1 //#define NOMSG 0 #define NOOPENFILE 1 #define NOSCROLL 1 #define NOSERVICE 1 #define NOSOUND 1 #define NOTEXTMETRIC 1 //#define NOWH 0 //#define NOWINOFFSETS 0 #define NOCOMM 1 #define NOKANJI 1 #define NOHELP 1 #define NOPROFILER 1 #define NODEFERWINDOWPOS 1 #define NOMCX 1 #endif #endif