setupapi: Add a stub for SetupDiSetClassInstallParamsW.
This commit is contained in:
parent
421d3cd9e8
commit
3013b6c6da
|
@ -3647,6 +3647,20 @@ BOOL WINAPI SetupDiSetClassInstallParamsA(
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiSetClassInstallParamsW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiSetClassInstallParamsW(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PSP_DEVINFO_DATA DeviceInfoData,
|
||||
PSP_CLASSINSTALL_HEADER ClassInstallParams,
|
||||
DWORD ClassInstallParamsSize)
|
||||
{
|
||||
FIXME("%p %p %x %u\n",DeviceInfoSet, DeviceInfoData,
|
||||
ClassInstallParams->InstallFunction, ClassInstallParamsSize);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiCallClassInstaller (SETUPAPI.@)
|
||||
*/
|
||||
|
|
|
@ -384,7 +384,7 @@
|
|||
@ stub SetupDiSelectDevice
|
||||
@ stub SetupDiSelectOEMDrv
|
||||
@ stdcall SetupDiSetClassInstallParamsA(ptr ptr ptr long)
|
||||
@ stub SetupDiSetClassInstallParamsW
|
||||
@ stdcall SetupDiSetClassInstallParamsW(ptr ptr ptr long)
|
||||
@ stdcall SetupDiSetDeviceInstallParamsA(ptr ptr ptr)
|
||||
@ stub SetupDiSetDeviceInstallParamsW
|
||||
@ stdcall SetupDiSetDeviceRegistryPropertyA(ptr ptr long ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue