Consistency in Windows ifdefs/windows.h includes

Changing all defined(_WINDOWS) to defined(_WIN32)

Defining WIN32_LEAN_AND_MEAN in all files except those in Archutils/Win32
This commit is contained in:
sukibaby
2024-06-24 15:48:05 -07:00
committed by teejusb
parent 65fe06bcd3
commit 0447d9ae58
34 changed files with 84 additions and 69 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#if defined(ANDROID)
#include "Android/SpecialDirs.h"
#elif defined(_WINDOWS)
#elif defined(_WIN32)
#include "Win32/SpecialDirs.h"
#elif defined(MACOSX)
#include "Darwin/SpecialDirs.h"