Iamage loader: include windows.h and not Windows.h

Indeed, when cross-compiling on Linux, which has a case
sensitive file system, and as minwg-w64 provides windows.h,
we must use lower case name for header files.
This commit is contained in:
Vincent Torri 2019-06-28 10:40:16 +02:00 committed by Subhransu
parent 7219aeca64
commit 18f8caa199

View File

@ -4,7 +4,7 @@
#ifndef WIN32
#include <dlfcn.h>
#else
#include <Windows.h>
#include <windows.h>
#endif
#include <cstring>