Commit cdb72f39 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

setupapi: Add a stub implementation of SetupDiRemoveDeviceInterface.

parent fd8f32aa
...@@ -1561,6 +1561,16 @@ BOOL WINAPI SetupDiRemoveDevice( ...@@ -1561,6 +1561,16 @@ BOOL WINAPI SetupDiRemoveDevice(
} }
/*********************************************************************** /***********************************************************************
* SetupDiRemoveDeviceInterface (SETUPAPI.@)
*/
BOOL WINAPI SetupDiRemoveDeviceInterface(HDEVINFO info, PSP_DEVICE_INTERFACE_DATA data)
{
FIXME("(%p, %p): stub\n", info, data);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* SetupDiEnumDeviceInfo (SETUPAPI.@) * SetupDiEnumDeviceInfo (SETUPAPI.@)
*/ */
BOOL WINAPI SetupDiEnumDeviceInfo( BOOL WINAPI SetupDiEnumDeviceInfo(
......
...@@ -381,7 +381,7 @@ ...@@ -381,7 +381,7 @@
@ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr) @ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
@ stdcall SetupDiRegisterDeviceInfo(ptr ptr long ptr ptr ptr) @ stdcall SetupDiRegisterDeviceInfo(ptr ptr long ptr ptr ptr)
@ stdcall SetupDiRemoveDevice(ptr ptr) @ stdcall SetupDiRemoveDevice(ptr ptr)
@ stub SetupDiRemoveDeviceInterface @ stdcall SetupDiRemoveDeviceInterface(ptr ptr)
@ stdcall SetupDiSelectBestCompatDrv(ptr ptr) @ stdcall SetupDiSelectBestCompatDrv(ptr ptr)
@ stub SetupDiSelectDevice @ stub SetupDiSelectDevice
@ stub SetupDiSelectOEMDrv @ stub SetupDiSelectOEMDrv
......
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