Stub implementation for SetupDiOpenDeviceInterface.
This commit is contained in:
parent
63d757f044
commit
d921d161c4
|
@ -1123,3 +1123,31 @@ HKEY WINAPI SetupDiOpenClassRegKeyExW(
|
|||
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -359,9 +359,9 @@
|
|||
@ stub SetupDiOpenDevRegKey
|
||||
@ stub SetupDiOpenDeviceInfoA
|
||||
@ stub SetupDiOpenDeviceInfoW
|
||||
@ stub SetupDiOpenDeviceInterfaceA
|
||||
@ stdcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
|
||||
@ stub SetupDiOpenDeviceInterfaceRegKey
|
||||
@ stub SetupDiOpenDeviceInterfaceW
|
||||
@ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
|
||||
@ stub SetupDiRegisterDeviceInfo
|
||||
@ stub SetupDiRemoveDevice
|
||||
@ stub SetupDiRemoveDeviceInterface
|
||||
|
|
Loading…
Reference in New Issue