Initial Commit
[libctiny.git] / libctiny.h
blob15546afc520b493b34fffa9e3c212b10e3c13150
1 //
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).
4 //
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
12 #endif
14 // Make sure Unicode is not defined
15 #ifdef UNICODE
16 #undef UNICODE
17 #endif
19 #ifdef _UNICODE
20 #undef _UNICODE
21 #endif
23 #endif // TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__