fosphor: Use lowercase for WIN32 includes

Apparently needed for mingw build and doesn't affect the MSVC ones.

Thanks to Martin Hauke <mardnh@gmx.de> for reporting

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2015-11-12 21:03:34 +01:00
parent 12c1a6d3f8
commit acdddf6e90
3 changed files with 4 additions and 4 deletions

View File

@ -40,8 +40,8 @@
# include <OpenGL/OpenGL.h>
# include <OpenGL/gl.h>
#elif defined(_WIN32)
# include <Windows.h>
# include <Wingdi.h>
# include <windows.h>
# include <wingdi.h>
#else
# include <GL/glx.h>
#endif

View File

@ -29,7 +29,7 @@
/* Include whatever is needed for dynamic symbol lookup */
#ifdef _WIN32
# include <Windows.h>
# include <windows.h>
#else
# define _GNU_SOURCE
# include <dlfcn.h>

View File

@ -48,7 +48,7 @@ static const int k_db_per_div[] = { 1, 2, 5, 10, 20 };
#ifdef _WIN32
#include <time.h>
#include <Windows.h>
#include <windows.h>
#if defined(_MSC_VER) || defined(_MSC_EXTENSIONS)
# define DELTA_EPOCH_IN_MICROSECS 11644473600000000Ui64