2 // Custom include file that I've added to all libctiny source code.
3 // Here we handle global settings/overrides (e.g. ensuring Unicode is not defined).
6 #ifndef TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__
7 #define TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__
9 // Make sure WIN32_LEAN_AND_MEAN is defined
10 #ifndef WIN32_LEAN_AND_MEAN
11 #define WIN32_LEAN_AND_MEAN
14 // Make sure Unicode is not defined
23 #endif // TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__