Stub implementation for SetupDiOpenDeviceInterface.

This commit is contained in:
Mike McCormack 2004-12-06 16:19:15 +00:00 committed by Alexandre Julliard
parent 63d757f044
commit d921d161c4
2 changed files with 30 additions and 2 deletions

View File

@ -1123,3 +1123,31 @@ HKEY WINAPI SetupDiOpenClassRegKeyExW(
return hClassKey; return hClassKey;
} }
/***********************************************************************
* SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
*/
BOOL WINAPI SetupDiOpenDeviceInterfaceW(
HDEVINFO DeviceInfoSet,
PCWSTR DevicePath,
DWORD OpenFlags,
PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
{
FIXME("%p %s %08lx %p\n",
DeviceInfoSet, debugstr_w(DevicePath), OpenFlags, DeviceInterfaceData);
return FALSE;
}
/***********************************************************************
* SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
*/
BOOL WINAPI SetupDiOpenDeviceInterfaceA(
HDEVINFO DeviceInfoSet,
PCSTR DevicePath,
DWORD OpenFlags,
PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
{
FIXME("%p %s %08lx %p\n", DeviceInfoSet,
debugstr_a(DevicePath), OpenFlags, DeviceInterfaceData);
return FALSE;
}

View File

@ -359,9 +359,9 @@
@ stub SetupDiOpenDevRegKey @ stub SetupDiOpenDevRegKey
@ stub SetupDiOpenDeviceInfoA @ stub SetupDiOpenDeviceInfoA
@ stub SetupDiOpenDeviceInfoW @ stub SetupDiOpenDeviceInfoW
@ stub SetupDiOpenDeviceInterfaceA @ stdcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
@ stub SetupDiOpenDeviceInterfaceRegKey @ stub SetupDiOpenDeviceInterfaceRegKey
@ stub SetupDiOpenDeviceInterfaceW @ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
@ stub SetupDiRegisterDeviceInfo @ stub SetupDiRegisterDeviceInfo
@ stub SetupDiRemoveDevice @ stub SetupDiRemoveDevice
@ stub SetupDiRemoveDeviceInterface @ stub SetupDiRemoveDeviceInterface