setupapi: Add a stub for SetupDiSetClassInstallParamsW.
This commit is contained in:
parent
421d3cd9e8
commit
3013b6c6da
@ -3647,6 +3647,20 @@ BOOL WINAPI SetupDiSetClassInstallParamsA(
|
|||||||
return FALSE;
|
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.@)
|
* SetupDiCallClassInstaller (SETUPAPI.@)
|
||||||
*/
|
*/
|
||||||
|
@ -384,7 +384,7 @@
|
|||||||
@ stub SetupDiSelectDevice
|
@ stub SetupDiSelectDevice
|
||||||
@ stub SetupDiSelectOEMDrv
|
@ stub SetupDiSelectOEMDrv
|
||||||
@ stdcall SetupDiSetClassInstallParamsA(ptr ptr ptr long)
|
@ stdcall SetupDiSetClassInstallParamsA(ptr ptr ptr long)
|
||||||
@ stub SetupDiSetClassInstallParamsW
|
@ stdcall SetupDiSetClassInstallParamsW(ptr ptr ptr long)
|
||||||
@ stdcall SetupDiSetDeviceInstallParamsA(ptr ptr ptr)
|
@ stdcall SetupDiSetDeviceInstallParamsA(ptr ptr ptr)
|
||||||
@ stub SetupDiSetDeviceInstallParamsW
|
@ stub SetupDiSetDeviceInstallParamsW
|
||||||
@ stdcall SetupDiSetDeviceRegistryPropertyA(ptr ptr long ptr ptr)
|
@ stdcall SetupDiSetDeviceRegistryPropertyA(ptr ptr long ptr ptr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user