SetProcessDpiAwareness

This commit is contained in:
FunkyFr3sh 2018-03-10 10:19:54 +01:00
parent ae1b46bce2
commit 308413323c
2 changed files with 27 additions and 6 deletions

View file

@ -116,4 +116,10 @@ struct IDirectDrawImplVtbl
HRESULT(__stdcall *WaitForVerticalBlank)(IDirectDrawImpl *, DWORD, HANDLE);
};
typedef enum PROCESS_DPI_AWARENESS {
PROCESS_DPI_UNAWARE = 0,
PROCESS_SYSTEM_DPI_AWARE = 1,
PROCESS_PER_MONITOR_DPI_AWARE = 2
} PROCESS_DPI_AWARENESS;
#endif