user32: Add stub for RegisterPointerDeviceNotifications.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
99e818154a
commit
0b27528c56
|
@ -837,6 +837,15 @@ LONG WINAPI GetDisplayConfigBufferSizes(UINT32 flags, UINT32 *num_path_info, UIN
|
||||||
return ERROR_NOT_SUPPORTED;
|
return ERROR_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* RegisterPointerDeviceNotifications [USER32.@]
|
||||||
|
*/
|
||||||
|
BOOL WINAPI RegisterPointerDeviceNotifications(HWND hwnd, BOOL notifyrange)
|
||||||
|
{
|
||||||
|
FIXME("(%p %d): stub\n", hwnd, notifyrange);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
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 =
|
||||||
{
|
{
|
||||||
|
|
|
@ -598,6 +598,7 @@
|
||||||
@ stdcall RegisterLogonProcess(long long)
|
@ stdcall RegisterLogonProcess(long long)
|
||||||
# @ stub RegisterMessagePumpHook
|
# @ stub RegisterMessagePumpHook
|
||||||
@ stub RegisterNetworkCapabilities
|
@ stub RegisterNetworkCapabilities
|
||||||
|
@ stdcall RegisterPointerDeviceNotifications(long long)
|
||||||
@ stdcall RegisterPowerSettingNotification(long ptr long)
|
@ stdcall RegisterPowerSettingNotification(long ptr long)
|
||||||
@ stdcall RegisterRawInputDevices(ptr long long)
|
@ stdcall RegisterRawInputDevices(ptr long long)
|
||||||
@ stdcall RegisterServicesProcess(long)
|
@ stdcall RegisterServicesProcess(long)
|
||||||
|
|
|
@ -4004,6 +4004,7 @@ WINUSERAPI HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE,LPVOID,DWORD);
|
||||||
WINUSERAPI HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE,LPVOID,DWORD);
|
WINUSERAPI HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE,LPVOID,DWORD);
|
||||||
#define RegisterDeviceNotification WINELIB_NAME_AW(RegisterDeviceNotification)
|
#define RegisterDeviceNotification WINELIB_NAME_AW(RegisterDeviceNotification)
|
||||||
WINUSERAPI BOOL WINAPI RegisterHotKey(HWND,INT,UINT,UINT);
|
WINUSERAPI BOOL WINAPI RegisterHotKey(HWND,INT,UINT,UINT);
|
||||||
|
WINUSERAPI BOOL WINAPI RegisterPointerDeviceNotifications(HWND,BOOL);
|
||||||
WINUSERAPI HPOWERNOTIFY WINAPI RegisterPowerSettingNotification(HANDLE,LPCGUID,DWORD);
|
WINUSERAPI HPOWERNOTIFY WINAPI RegisterPowerSettingNotification(HANDLE,LPCGUID,DWORD);
|
||||||
WINUSERAPI BOOL WINAPI RegisterRawInputDevices(PRAWINPUTDEVICE,UINT,UINT);
|
WINUSERAPI BOOL WINAPI RegisterRawInputDevices(PRAWINPUTDEVICE,UINT,UINT);
|
||||||
WINUSERAPI BOOL WINAPI RegisterShellHookWindow(HWND);
|
WINUSERAPI BOOL WINAPI RegisterShellHookWindow(HWND);
|
||||||
|
|
Loading…
Reference in New Issue