mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Windows: Added a #define missing from some versions of the Windows 10 SDK
This commit is contained in:
parent
c3245bef0f
commit
d7a62f5f07
1 changed files with 6 additions and 0 deletions
|
|
@ -269,6 +269,12 @@ extern void* getUser32Function (const char*);
|
|||
#define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 ((DPI_AWARENESS_CONTEXT) - 4)
|
||||
#endif
|
||||
|
||||
// Some versions of the Windows 10 SDK define _DPI_AWARENESS_CONTEXTS_ but not
|
||||
// DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2
|
||||
#ifndef DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2
|
||||
#define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 ((DPI_AWARENESS_CONTEXT) - 4)
|
||||
#endif
|
||||
|
||||
//==============================================================================
|
||||
typedef BOOL (WINAPI* RegisterTouchWindowFunc) (HWND, ULONG);
|
||||
typedef BOOL (WINAPI* GetTouchInputInfoFunc) (HTOUCHINPUT, UINT, TOUCHINPUT*, int);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue