1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added experimental WinRT MIDI support, enabling BLE MIDI on machines with Windows 10 Anniversary Update installed

This commit is contained in:
tpoole 2017-02-20 17:36:36 +00:00
parent 78bbe49616
commit 9a38505dad
11 changed files with 1377 additions and 386 deletions

View file

@ -40,8 +40,13 @@
#define JUCE_CORE_INCLUDE_OBJC_HELPERS 1
#define JUCE_CORE_INCLUDE_JNI_HELPERS 1
#define JUCE_CORE_INCLUDE_NATIVE_HEADERS 1
#define JUCE_CORE_INCLUDE_COM_SMART_PTR 1
#define JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW 1
#if JUCE_USE_WINRT_MIDI
#define JUCE_EVENTS_INCLUDE_WINRT_WRAPPER 1
#endif
#include "juce_events.h"
//==============================================================================
@ -84,6 +89,9 @@ namespace juce
#elif JUCE_WINDOWS
#include "native/juce_win32_Messaging.cpp"
#if JUCE_EVENTS_INCLUDE_WINRT_WRAPPER
#include "native/juce_win32_WinRTWrapper.cpp"
#endif
#elif JUCE_LINUX
#include "native/juce_linux_Messaging.cpp"