include: Add POINTER_INPUT_TYPE.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e6de503b1f
commit
40e6ba4e69
|
@ -3377,6 +3377,16 @@ typedef struct tagPOINTER_DEVICE_INFO {
|
||||||
WCHAR productString[POINTER_DEVICE_PRODUCT_STRING_MAX];
|
WCHAR productString[POINTER_DEVICE_PRODUCT_STRING_MAX];
|
||||||
} POINTER_DEVICE_INFO;
|
} POINTER_DEVICE_INFO;
|
||||||
|
|
||||||
|
enum tagPOINTER_INPUT_TYPE
|
||||||
|
{
|
||||||
|
PT_POINTER = 1,
|
||||||
|
PT_TOUCH,
|
||||||
|
PT_PEN,
|
||||||
|
PT_MOUSE,
|
||||||
|
PT_TOUCHPAD,
|
||||||
|
};
|
||||||
|
typedef DWORD POINTER_INPUT_TYPE;
|
||||||
|
|
||||||
#if defined(_WINGDI_) && !defined(NOGDI)
|
#if defined(_WINGDI_) && !defined(NOGDI)
|
||||||
WINUSERAPI LONG WINAPI ChangeDisplaySettingsA(LPDEVMODEA,DWORD);
|
WINUSERAPI LONG WINAPI ChangeDisplaySettingsA(LPDEVMODEA,DWORD);
|
||||||
WINUSERAPI LONG WINAPI ChangeDisplaySettingsW(LPDEVMODEW,DWORD);
|
WINUSERAPI LONG WINAPI ChangeDisplaySettingsW(LPDEVMODEW,DWORD);
|
||||||
|
|
Loading…
Reference in New Issue