mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[SETUPAPI] Add a stub for SetupDiDeleteDeviceInterfaceData to make the wine tests work.
This commit is contained in:
parent
c73c7cc16e
commit
8687529bdf
2 changed files with 15 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue