mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- forgot to add the new header.
This commit is contained in:
parent
5374eed06d
commit
2b0e9650bb
1 changed files with 18 additions and 0 deletions
18
src/sound/i_midi_win32.h
Normal file
18
src/sound/i_midi_win32.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifdef _WIN32
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#define USE_WINDOWS_DWORD
|
||||
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0400
|
||||
#undef _WIN32_WINNT
|
||||
#endif
|
||||
#ifndef _WIN32_WINNT
|
||||
#define _WIN32_WINNT 0x0400
|
||||
#endif
|
||||
#ifndef USE_WINDOWS_DWORD
|
||||
#define USE_WINDOWS_DWORD
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#include <mmsystem.h>
|
||||
#else
|
||||
#define FALSE 0
|
||||
#define TRUE 1
|
||||
#endif
|
Loading…
Reference in a new issue