setupapi: Add a stub for SetupDiSetClassInstallParamsW.

This commit is contained in:
Austin English 2014-07-13 16:45:25 -07:00 committed by Alexandre Julliard
parent 421d3cd9e8
commit 3013b6c6da
2 changed files with 15 additions and 1 deletions

View file

@ -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.@)
*/

View file

@ -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)