This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define STR2(x) #x | |
#define STR(x) STR2(x) | |
#ifdef __APPLE__ | |
#define USTR(x) "_" STR(x) | |
#else | |
#define USTR(x) STR(x) | |
#endif | |
#ifdef _WIN32 |