setupapi: Add stub for SetupDiRegisterDeviceInfo.
This commit is contained in:
parent
6b50538f12
commit
3a2a99474e
|
@ -1049,6 +1049,24 @@ BOOL WINAPI SetupDiCreateDeviceInfoW(
|
|||
return ret;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiRegisterDeviceInfo (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiRegisterDeviceInfo(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PSP_DEVINFO_DATA DeviceInfoData,
|
||||
DWORD Flags,
|
||||
PSP_DETSIG_CMPPROC CompareProc,
|
||||
PVOID CompareContext,
|
||||
PSP_DEVINFO_DATA DupDeviceInfoData)
|
||||
{
|
||||
TRACE("%p %p %08x %p %p %p\n", DeviceInfoSet, DeviceInfoData, Flags,
|
||||
CompareProc, CompareContext, DupDeviceInfoData);
|
||||
|
||||
FIXME("\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiEnumDeviceInfo (SETUPAPI.@)
|
||||
*/
|
||||
|
|
|
@ -365,7 +365,7 @@
|
|||
@ stdcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
|
||||
@ stub SetupDiOpenDeviceInterfaceRegKey
|
||||
@ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
|
||||
@ stub SetupDiRegisterDeviceInfo
|
||||
@ stdcall SetupDiRegisterDeviceInfo(ptr ptr long ptr ptr ptr)
|
||||
@ stub SetupDiRemoveDevice
|
||||
@ stub SetupDiRemoveDeviceInterface
|
||||
@ stub SetupDiSelectDevice
|
||||
|
|
Loading…
Reference in New Issue