From fc3d9599a457706bdce12e7c9ad387ae297bf780 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Sat, 21 Feb 2015 10:34:13 +0000 Subject: [PATCH] [STREAMCI] - hackfix build #2 svn path=/trunk/; revision=66381 --- reactos/dll/win32/streamci/streamci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/streamci/streamci.c b/reactos/dll/win32/streamci/streamci.c index 3230c400904..64905601330 100644 --- a/reactos/dll/win32/streamci/streamci.c +++ b/reactos/dll/win32/streamci/streamci.c @@ -50,7 +50,7 @@ InstallSoftwareDeviceInterface(IN LPGUID DeviceId, { HDEVINFO hDevInfo; SP_DEVICE_INTERFACE_DATA DeviceInterfaceData; - GUID SWBusGuid = {STATIC_BUSID_SoftwareDeviceEnumerator}; + // GUID SWBusGuid = {STATIC_BUSID_SoftwareDeviceEnumerator}; PSP_DEVICE_INTERFACE_DETAIL_DATA_W DeviceInterfaceDetailData; HANDLE hDevice; PSWENUM_INSTALL_INTERFACE InstallInterface; @@ -64,7 +64,7 @@ InstallSoftwareDeviceInterface(IN LPGUID DeviceId, } DeviceInterfaceData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA); - if (!SetupDiEnumDeviceInterfaces(hDevInfo, NULL, &SWBusGuid, 0, &DeviceInterfaceData)) + if (!SetupDiEnumDeviceInterfaces(hDevInfo, NULL, NULL, 0, &DeviceInterfaceData)) { // failed SetupDiDestroyDeviceInfoList(hDevInfo);