- forgot to add the new header.

This commit is contained in:
Christoph Oelckers 2017-03-10 19:11:30 +01:00
parent 5374eed06d
commit 2b0e9650bb

18
src/sound/i_midi_win32.h Normal file
View 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