mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 09:13:00 +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;
|
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 SetupDiCreateDeviceInterfaceW(ptr ptr ptr wstr long ptr)
|
||||||
@ stdcall SetupDiDeleteDevRegKey(ptr ptr long long long)
|
@ stdcall SetupDiDeleteDevRegKey(ptr ptr long long long)
|
||||||
@ stdcall SetupDiDeleteDeviceInfo(long ptr)
|
@ stdcall SetupDiDeleteDeviceInfo(long ptr)
|
||||||
@ stub SetupDiDeleteDeviceInterfaceData
|
@ stdcall SetupDiDeleteDeviceInterfaceData(ptr ptr)
|
||||||
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
|
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
|
||||||
@ stdcall SetupDiDestroyClassImageList(ptr)
|
@ stdcall SetupDiDestroyClassImageList(ptr)
|
||||||
@ stdcall SetupDiDestroyDeviceInfoList(long)
|
@ stdcall SetupDiDestroyDeviceInfoList(long)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue