C++: Remove windows.h macros/types from reserved words list

This commit is contained in:
Katy Coe
2020-08-01 05:24:07 +02:00
parent 5c97202d8e
commit 4ae6772f5a

View File

@@ -542,7 +542,7 @@ namespace Il2CppInspector.Cpp
}
/* Reserve commonly defined C++ symbols for MSVC DLL projects */
/* This is not an exhaustive list! (windows.h etc.) */
foreach (var symbol in new[] {"_int32", "DEFAULT_CHARSET", "FILETIME", "NULL", "SYSTEMTIME", "stderr", "stdin", "stdout", "Sleep", "PlatformInformation", "LoadResource"}) {
foreach (var symbol in new[] {"_int32", "DEFAULT_CHARSET", "FILETIME", "NULL", "SYSTEMTIME", "stderr", "stdin", "stdout"}) {
ns.ReserveName(symbol);
}
/* Reserve builtin keywords in IDA */