Commit 0881d42e authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

user32: Factor out raw input device enumeration.

parent 879ef361
......@@ -232,13 +232,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);
......@@ -252,35 +263,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);
}
......
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