1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Some mingw compile fixes.

This commit is contained in:
jules 2013-04-22 16:37:16 +01:00
parent 97ed2ac915
commit e6b717e713
2 changed files with 12 additions and 0 deletions

View file

@ -41,6 +41,14 @@
#undef STRICT
#define STRICT 1
#include <windows.h>
#ifdef __MINGW32__
struct MOUSEHOOKSTRUCTEX
{
MOUSEHOOKSTRUCT _unnamed;
DWORD mouseData;
};
#endif
#elif defined (LINUX)
#include <X11/Xlib.h>
#include <X11/Xutil.h>

View file

@ -65,6 +65,10 @@
#include "juce_VSTMidiEventList.h"
#if JUCE_MINGW
#ifndef WM_APPCOMMAND
#define WM_APPCOMMAND 0x0319
#endif
extern "C" void _fpreset();
extern "C" void _clearfp();
#elif ! JUCE_WINDOWS