Arkadiusz Hiler : user32: Move *RegisterDeviceNotification*() to input.c.

Alexandre Julliard julliard at winehq.org
Wed May 27 15:19:31 CDT 2020


Module: wine
Branch: master
Commit: 8091922d9af2ae82bea37c7dbc26776c1407252a
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8091922d9af2ae82bea37c7dbc26776c1407252a

Author: Arkadiusz Hiler <arek at hiler.eu>
Date:   Tue May 26 23:01:35 2020 +0300

user32: Move *RegisterDeviceNotification*() to input.c.

Signed-off-by: Arkadiusz Hiler <arek at hiler.eu>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/user32/input.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 dlls/user32/misc.c  | 69 -----------------------------------------------------
 2 files changed, 69 insertions(+), 69 deletions(-)

diff --git a/dlls/user32/input.c b/dlls/user32/input.c
index 2f8648f177..1dd43a36a1 100644
--- a/dlls/user32/input.c
+++ b/dlls/user32/input.c
@@ -45,6 +45,7 @@
 #include "winerror.h"
 #include "win.h"
 #include "user_private.h"
+#include "dbt.h"
 #include "wine/server.h"
 #include "wine/debug.h"
 #include "wine/unicode.h"
@@ -1298,3 +1299,71 @@ BOOL WINAPI EnableMouseInPointer(BOOL enable)
     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     return FALSE;
 }
+
+static DWORD CALLBACK devnotify_window_callback(HANDLE handle, DWORD flags, DEV_BROADCAST_HDR *header)
+{
+    SendMessageTimeoutW(handle, WM_DEVICECHANGE, flags, (LPARAM)header, SMTO_ABORTIFHUNG, 2000, NULL);
+    return 0;
+}
+
+static DWORD CALLBACK devnotify_service_callback(HANDLE handle, DWORD flags, DEV_BROADCAST_HDR *header)
+{
+    FIXME("Support for service handles is not yet implemented!\n");
+    return 0;
+}
+
+struct device_notification_details
+{
+    DWORD (CALLBACK *cb)(HANDLE handle, DWORD flags, DEV_BROADCAST_HDR *header);
+    HANDLE handle;
+};
+
+extern HDEVNOTIFY WINAPI I_ScRegisterDeviceNotification( struct device_notification_details *details,
+        void *filter, DWORD flags );
+extern BOOL WINAPI I_ScUnregisterDeviceNotification( HDEVNOTIFY handle );
+
+/***********************************************************************
+ *		RegisterDeviceNotificationA (USER32.@)
+ *
+ * See RegisterDeviceNotificationW.
+ */
+HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hRecipient, LPVOID pNotificationFilter, DWORD dwFlags)
+{
+    TRACE("(hwnd=%p, filter=%p,flags=0x%08x)\n",
+        hRecipient,pNotificationFilter,dwFlags);
+    if (pNotificationFilter)
+        FIXME("The notification filter will requires an A->W when filter support is implemented\n");
+    return RegisterDeviceNotificationW(hRecipient, pNotificationFilter, dwFlags);
+}
+
+/***********************************************************************
+ *		RegisterDeviceNotificationW (USER32.@)
+ */
+HDEVNOTIFY WINAPI RegisterDeviceNotificationW( HANDLE handle, void *filter, DWORD flags )
+{
+    struct device_notification_details details;
+
+    TRACE("handle %p, filter %p, flags %#x\n", handle, filter, flags);
+
+    if (flags & ~(DEVICE_NOTIFY_SERVICE_HANDLE | DEVICE_NOTIFY_ALL_INTERFACE_CLASSES))
+        FIXME("unhandled flags %#x\n", flags);
+
+    details.handle = handle;
+
+    if (flags & DEVICE_NOTIFY_SERVICE_HANDLE)
+        details.cb = devnotify_service_callback;
+    else
+        details.cb = devnotify_window_callback;
+
+    return I_ScRegisterDeviceNotification( &details, filter, 0 );
+}
+
+/***********************************************************************
+ *		UnregisterDeviceNotification (USER32.@)
+ */
+BOOL WINAPI UnregisterDeviceNotification( HDEVNOTIFY handle )
+{
+    TRACE("%p\n", handle);
+
+    return I_ScUnregisterDeviceNotification( handle );
+}
diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c
index 41909f9071..59b85baa58 100644
--- a/dlls/user32/misc.c
+++ b/dlls/user32/misc.c
@@ -31,7 +31,6 @@
 #include "wingdi.h"
 #include "controls.h"
 #include "user_private.h"
-#include "dbt.h"
 
 #include "wine/unicode.h"
 #include "wine/debug.h"
@@ -279,74 +278,6 @@ DWORD WINAPI RegisterTasklist (DWORD x)
     return TRUE;
 }
 
-static DWORD CALLBACK devnotify_window_callback(HANDLE handle, DWORD flags, DEV_BROADCAST_HDR *header)
-{
-    SendMessageTimeoutW(handle, WM_DEVICECHANGE, flags, (LPARAM)header, SMTO_ABORTIFHUNG, 2000, NULL);
-    return 0;
-}
-
-static DWORD CALLBACK devnotify_service_callback(HANDLE handle, DWORD flags, DEV_BROADCAST_HDR *header)
-{
-    FIXME("Support for service handles is not yet implemented!\n");
-    return 0;
-}
-
-struct device_notification_details
-{
-    DWORD (CALLBACK *cb)(HANDLE handle, DWORD flags, DEV_BROADCAST_HDR *header);
-    HANDLE handle;
-};
-
-extern HDEVNOTIFY WINAPI I_ScRegisterDeviceNotification( struct device_notification_details *details,
-        void *filter, DWORD flags );
-extern BOOL WINAPI I_ScUnregisterDeviceNotification( HDEVNOTIFY handle );
-
-/***********************************************************************
- *		RegisterDeviceNotificationA (USER32.@)
- *
- * See RegisterDeviceNotificationW.
- */
-HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hRecipient, LPVOID pNotificationFilter, DWORD dwFlags)
-{
-    TRACE("(hwnd=%p, filter=%p,flags=0x%08x)\n",
-        hRecipient,pNotificationFilter,dwFlags);
-    if (pNotificationFilter)
-        FIXME("The notification filter will requires an A->W when filter support is implemented\n");
-    return RegisterDeviceNotificationW(hRecipient, pNotificationFilter, dwFlags);
-}
-
-/***********************************************************************
- *		RegisterDeviceNotificationW (USER32.@)
- */
-HDEVNOTIFY WINAPI RegisterDeviceNotificationW( HANDLE handle, void *filter, DWORD flags )
-{
-    struct device_notification_details details;
-
-    TRACE("handle %p, filter %p, flags %#x\n", handle, filter, flags);
-
-    if (flags & ~(DEVICE_NOTIFY_SERVICE_HANDLE | DEVICE_NOTIFY_ALL_INTERFACE_CLASSES))
-        FIXME("unhandled flags %#x\n", flags);
-
-    details.handle = handle;
-
-    if (flags & DEVICE_NOTIFY_SERVICE_HANDLE)
-        details.cb = devnotify_service_callback;
-    else
-        details.cb = devnotify_window_callback;
-
-    return I_ScRegisterDeviceNotification( &details, filter, 0 );
-}
-
-/***********************************************************************
- *		UnregisterDeviceNotification (USER32.@)
- */
-BOOL WINAPI UnregisterDeviceNotification( HDEVNOTIFY handle )
-{
-    TRACE("%p\n", handle);
-
-    return I_ScUnregisterDeviceNotification( handle );
-}
-
 /***********************************************************************
  *           GetAppCompatFlags   (USER32.@)
  */




More information about the wine-cvs mailing list