mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-17 10:00:54 +00:00
15 lines
263 B
C
15 lines
263 B
C
|
#ifdef _WIN32
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0400
|
||
|
#undef _WIN32_WINNT
|
||
|
#endif
|
||
|
#ifndef _WIN32_WINNT
|
||
|
#define _WIN32_WINNT 0x0400
|
||
|
#endif
|
||
|
#include <windows.h>
|
||
|
#include <mmsystem.h>
|
||
|
#else
|
||
|
#define FALSE 0
|
||
|
#define TRUE 1
|
||
|
#endif
|