rename <Windows.h> include to <windows.h> for mingw compatibility (see pr #367)

This commit is contained in:
Daan Leijen 2021-02-22 13:04:11 -08:00
parent 7962420697
commit 71ac98ab08
7 changed files with 8 additions and 8 deletions

View file

@ -284,7 +284,7 @@ static void _mi_thread_done(mi_heap_t* default_heap);
// nothing to do as it is done in DllMain
#elif defined(_WIN32) && !defined(MI_SHARED_LIB)
// use thread local storage keys to detect thread ending
#include <Windows.h>
#include <windows.h>
#include <fibersapi.h>
#if (_WIN32_WINNT < 0x600) // before Windows Vista
WINBASEAPI DWORD WINAPI FlsAlloc( _In_opt_ PFLS_CALLBACK_FUNCTION lpCallback );