This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Some mingw compile fixes.
tags/2021-05-28
jules
12 years ago
parent
97ed2ac915
commit
e6b717e713
2 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
+4
-0
modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp
+ 8
- 0
modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
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>
+ 4
- 0
modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp
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
Write
Preview
Loading…
Cancel
Save