setupapi: Stub SetupDiDestroyDriverInfoList.
This commit is contained in:
parent
8142543654
commit
bdadd760a3
|
@ -307,7 +307,7 @@
|
|||
@ stub SetupDiDeleteDeviceRegKey
|
||||
@ stdcall SetupDiDestroyClassImageList(ptr)
|
||||
@ stdcall SetupDiDestroyDeviceInfoList(long)
|
||||
@ stub SetupDiDestroyDriverInfoList
|
||||
@ stdcall SetupDiDestroyDriverInfoList(ptr ptr long)
|
||||
@ stdcall SetupDiDrawMiniIcon(ptr int128 long long)
|
||||
@ stdcall SetupDiEnumDeviceInfo(long long ptr)
|
||||
@ stdcall SetupDiEnumDeviceInterfaces(long ptr ptr long ptr)
|
||||
|
|
|
@ -524,6 +524,18 @@ BOOL WINAPI SetupDiBuildDriverInfoList(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiDestroyDriverInfoList (SETUPAPI.@)
|
||||
*/
|
||||
|
||||
BOOL WINAPI SetupDiDestroyDriverInfoList(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA DeviceInfoData, DWORD DriverType)
|
||||
{
|
||||
FIXME("%p %p %d\n", DeviceInfoSet, DeviceInfoData, DriverType);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiDeleteDeviceInfo (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue