[PATCH 6/6] user32: Factor out raw input device enumeration.

Zebediah Figura wine at gitlab.winehq.org
Wed May 25 14:35:50 CDT 2022


From: Zebediah Figura <zfigura at codeweavers.com>

---
 dlls/user32/rawinput.c | 49 +++++++++++++++---------------------------
 1 file changed, 17 insertions(+), 32 deletions(-)

diff --git a/dlls/user32/rawinput.c b/dlls/user32/rawinput.c
index 5dd3e01751b..8f393c6b330 100644
--- a/dlls/user32/rawinput.c
+++ b/dlls/user32/rawinput.c
@@ -241,13 +241,24 @@ fail:
     return NULL;
 }
 
-void rawinput_update_device_list(void)
+static void enumerate_devices( DWORD type, const GUID *guid )
 {
-    SP_DEVICE_INTERFACE_DATA iface = { sizeof(iface) };
-    struct device *device;
+    SP_DEVICE_INTERFACE_DATA iface = {sizeof(iface)};
     HDEVINFO set;
     DWORD idx;
 
+    set = SetupDiGetClassDevsW( guid, NULL, NULL, DIGCF_DEVICEINTERFACE | DIGCF_PRESENT );
+
+    for (idx = 0; SetupDiEnumDeviceInterfaces( set, NULL, &GUID_DEVINTERFACE_HID, idx, &iface); ++idx )
+        add_device( set, &iface, type );
+
+    SetupDiDestroyDeviceInfoList( set );
+}
+
+void rawinput_update_device_list(void)
+{
+    DWORD idx;
+
     TRACE("\n");
 
     EnterCriticalSection(&rawinput_devices_cs);
@@ -261,35 +272,9 @@ void rawinput_update_device_list(void)
     }
     rawinput_devices_count = 0;
 
-    set = SetupDiGetClassDevsW(&GUID_DEVINTERFACE_HID, NULL, NULL, DIGCF_DEVICEINTERFACE | DIGCF_PRESENT);
-
-    for (idx = 0; SetupDiEnumDeviceInterfaces(set, NULL, &GUID_DEVINTERFACE_HID, idx, &iface); ++idx)
-    {
-        if (!(device = add_device( set, &iface, RIM_TYPEHID )))
-            continue;
-    }
-
-    SetupDiDestroyDeviceInfoList(set);
-
-    set = SetupDiGetClassDevsW(&GUID_DEVINTERFACE_MOUSE, NULL, NULL, DIGCF_DEVICEINTERFACE | DIGCF_PRESENT);
-
-    for (idx = 0; SetupDiEnumDeviceInterfaces(set, NULL, &GUID_DEVINTERFACE_MOUSE, idx, &iface); ++idx)
-    {
-        if (!(device = add_device( set, &iface, RIM_TYPEMOUSE )))
-            continue;
-    }
-
-    SetupDiDestroyDeviceInfoList(set);
-
-    set = SetupDiGetClassDevsW(&GUID_DEVINTERFACE_KEYBOARD, NULL, NULL, DIGCF_DEVICEINTERFACE | DIGCF_PRESENT);
-
-    for (idx = 0; SetupDiEnumDeviceInterfaces(set, NULL, &GUID_DEVINTERFACE_KEYBOARD, idx, &iface); ++idx)
-    {
-        if (!(device = add_device( set, &iface, RIM_TYPEHID )))
-            continue;
-    }
-
-    SetupDiDestroyDeviceInfoList(set);
+    enumerate_devices( RIM_TYPEHID, &GUID_DEVINTERFACE_HID );
+    enumerate_devices( RIM_TYPEMOUSE, &GUID_DEVINTERFACE_MOUSE );
+    enumerate_devices( RIM_TYPEKEYBOARD, &GUID_DEVINTERFACE_KEYBOARD );
 
     LeaveCriticalSection(&rawinput_devices_cs);
 }
-- 
GitLab

https://gitlab.winehq.org/wine/wine/-/merge_requests/130



More information about the wine-devel mailing list