change Windows.h to windows.h

This commit is contained in:
John Alanbrook 2024-03-09 17:18:12 -06:00
parent 8f398707d9
commit 1dfbc55f83

View file

@ -284,7 +284,7 @@ SCHED_API void scheduler_stop(struct scheduler*, int doWait);
/* windows requires Windows.h even if you use mingw */ /* windows requires Windows.h even if you use mingw */
#if defined(_WIN32) || (defined(__MINGW32__) || defined(__MINGW64__)) #if defined(_WIN32) || (defined(__MINGW32__) || defined(__MINGW64__))
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <Windows.h> #include <windows.h>
#endif #endif
/* make sure atomic and pointer types have correct size */ /* make sure atomic and pointer types have correct size */