Commit d921d161 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Stub implementation for SetupDiOpenDeviceInterface.

parent 63d757f0
...@@ -1123,3 +1123,31 @@ HKEY WINAPI SetupDiOpenClassRegKeyExW( ...@@ -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;
}
...@@ -359,9 +359,9 @@ ...@@ -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
......
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