[SETUPAPI] Add a stub for SetupDiDeleteDeviceInterfaceData to make the wine tests work.

This commit is contained in:
Eric Kohl 2019-02-02 15:13:35 +01:00
parent c73c7cc16e
commit 8687529bdf
2 changed files with 15 additions and 1 deletions

View file

@ -627,3 +627,17 @@ SetupDiOpenDeviceInterfaceRegKey(
return hKey;
}
/***********************************************************************
* SetupDiDeleteDeviceInterfaceData (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiDeleteDeviceInterfaceData(
HDEVINFO DeviceInfoSet,
PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
{
FIXME("SetupDiDeleteDeviceInterfaceData(%p %p) stub\n",
DeviceInfoSet, DeviceInterfaceData);
return TRUE;
}

View file

@ -281,7 +281,7 @@
@ stdcall SetupDiCreateDeviceInterfaceW(ptr ptr ptr wstr long ptr)
@ stdcall SetupDiDeleteDevRegKey(ptr ptr long long long)
@ stdcall SetupDiDeleteDeviceInfo(long ptr)
@ stub SetupDiDeleteDeviceInterfaceData
@ stdcall SetupDiDeleteDeviceInterfaceData(ptr ptr)
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
@ stdcall SetupDiDestroyClassImageList(ptr)
@ stdcall SetupDiDestroyDeviceInfoList(long)