|
| #define | VC_16BIT(version) 0 |
| |
| #define | VC_GE_2002(version) 0 |
| |
| #define | VC_LT_2005(version) 0 |
| |
| #define | VC_GE_2005(version) 0 |
| |
| #define | VC_GE_2008(version) 0 |
| |
| #define | VC_GE_2010(version) 0 |
| |
| #define | SYSTEM_16BIT |
| |
| #define | FAR_BSS |
| |
| #define | FALSE 0 |
| |
| #define | TRUE !FALSE |
| |
| #define | STATIC_DATA static |
| |
| #define | CONST_INIT const |
| |
| #define | CONST_INIT_STRUCT_3(decl, init1, init2, init3) decl = { init1, init2, init3 } |
| |
| #define | CONST_INIT_STRUCT_4(decl, init1, init2, init3, init4) decl = { init1, init2, init3, init4 } |
| |
| #define | CONST_INIT_STRUCT_5(decl, init1, init2, init3, init4, init5) decl = { init1, init2, init3, init4, init5 } |
| |
| #define | CONST_SET_STRUCT(init) |
| |
| #define | CONST_INIT_STRUCT_A2(decl, init1, init2) const decl = { { init1, 0 }, { init2, 0 } } |
| |
| #define | CONST_SET_STRUCT_A(init) |
| |
| #define | verifyVAList(x) ( ( x ) != NULL ) |
| |
| #define | DATA_LITTLEENDIAN |
| |
| #define | WCSIZE ( sizeof( wchar_t ) ) |
| |
| #define | isAlnum(ch) isalnum( byteToInt( ch ) ) |
| |
| #define | isAlpha(ch) isalpha( byteToInt( ch ) ) |
| |
| #define | isDigit(ch) isdigit( byteToInt( ch ) ) |
| |
| #define | isPrint(ch) isprint( byteToInt( ch ) ) |
| |
| #define | isXDigit(ch) isxdigit( byteToInt( ch ) ) |
| |
| #define | toLower(ch) tolower( byteToInt( ch ) ) |
| |
| #define | toUpper(ch) toupper( byteToInt( ch ) ) |
| |
| #define | strCompareZ(str1, str2) stricmp( str1, str2 ) |
| |
| #define | strCompare(str1, str2, len) strnicmp( str1, str2, len ) |
| |
| #define | strcpy_s(s1, s1max, s2) strcpy( s1, s2 ) |
| |
| #define | NO_NATIVE_STRLCPY |
| |
| #define | sprintf_s snprintf |
| |
| #define | vsprintf_s vsnprintf |
| |
| #define | gmTime_s(timer, result) gmtime( timer ) |
| |