Commit 66180389 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

user32: Add stub for GetPointerDevices.

parent 6b59f750
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
@ stub GetPointerDevice @ stub GetPointerDevice
@ stub GetPointerDeviceProperties @ stub GetPointerDeviceProperties
@ stub GetPointerDeviceRects @ stub GetPointerDeviceRects
@ stub GetPointerDevices @ stdcall GetPointerDevices(ptr ptr) user32.GetPointerDevices
@ stub GetPointerFrameInfo @ stub GetPointerFrameInfo
@ stub GetPointerFrameInfoHistory @ stub GetPointerFrameInfoHistory
@ stub GetPointerFramePenInfo @ stub GetPointerFramePenInfo
......
...@@ -846,6 +846,24 @@ BOOL WINAPI RegisterPointerDeviceNotifications(HWND hwnd, BOOL notifyrange) ...@@ -846,6 +846,24 @@ BOOL WINAPI RegisterPointerDeviceNotifications(HWND hwnd, BOOL notifyrange)
return TRUE; return TRUE;
} }
/**********************************************************************
* GetPointerDevices [USER32.@]
*/
BOOL WINAPI GetPointerDevices(UINT32 *device_count, POINTER_DEVICE_INFO *devices)
{
FIXME("(%p %p): partial stub\n", device_count, devices);
if (!device_count)
return FALSE;
if (devices)
return FALSE;
*device_count = 0;
return TRUE;
}
static const WCHAR imeW[] = {'I','M','E',0}; static const WCHAR imeW[] = {'I','M','E',0};
const struct builtin_class_descr IME_builtin_class = const struct builtin_class_descr IME_builtin_class =
{ {
......
...@@ -354,6 +354,7 @@ ...@@ -354,6 +354,7 @@
@ stdcall GetOpenClipboardWindow() @ stdcall GetOpenClipboardWindow()
@ stdcall GetParent(long) @ stdcall GetParent(long)
@ stdcall GetPhysicalCursorPos(ptr) @ stdcall GetPhysicalCursorPos(ptr)
@ stdcall GetPointerDevices(ptr ptr)
@ stdcall GetPriorityClipboardFormat(ptr long) @ stdcall GetPriorityClipboardFormat(ptr long)
@ stdcall GetProcessDefaultLayout(ptr) @ stdcall GetProcessDefaultLayout(ptr)
@ stdcall GetProcessDpiAwarenessInternal(long ptr) @ stdcall GetProcessDpiAwarenessInternal(long ptr)
......
...@@ -3357,6 +3357,26 @@ typedef struct tagGESTUREINFO { ...@@ -3357,6 +3357,26 @@ typedef struct tagGESTUREINFO {
} GESTUREINFO, *PGESTUREINFO; } GESTUREINFO, *PGESTUREINFO;
typedef GESTUREINFO const * PCGESTUREINFO; typedef GESTUREINFO const * PCGESTUREINFO;
#define POINTER_DEVICE_PRODUCT_STRING_MAX 520
typedef enum tagPOINTER_DEVICE_TYPE {
POINTER_DEVICE_TYPE_INTEGRATED_PEN = 0x00000001,
POINTER_DEVICE_TYPE_EXTERNAL_PEN = 0x00000002,
POINTER_DEVICE_TYPE_TOUCH = 0x00000003,
POINTER_DEVICE_TYPE_TOUCH_PAD = 0x00000004,
POINTER_DEVICE_TYPE_MAX = 0xFFFFFFFF
} POINTER_DEVICE_TYPE;
typedef struct tagPOINTER_DEVICE_INFO {
DWORD displayOrientation;
HANDLE device;
POINTER_DEVICE_TYPE pointerDeviceType;
HMONITOR monitor;
ULONG startingCursorId;
USHORT maxActiveContacts;
WCHAR productString[POINTER_DEVICE_PRODUCT_STRING_MAX];
} POINTER_DEVICE_INFO;
#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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment