mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
add stub for SetupDiSetClassInstallParamsW
svn path=/trunk/; revision=19917
This commit is contained in:
parent
49ba1e8fe4
commit
1741a49e15
2 changed files with 15 additions and 1 deletions
|
@ -2952,6 +2952,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 %lu\n",DeviceInfoSet, DeviceInfoData,
|
||||
ClassInstallParams->InstallFunction, ClassInstallParamsSize);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static DWORD
|
||||
GetFunctionPointer(
|
||||
IN PWSTR InstallerName,
|
||||
|
|
|
@ -373,7 +373,7 @@
|
|||
@ stub SetupDiSelectDevice
|
||||
@ stub SetupDiSelectOEMDrv
|
||||
@ stdcall SetupDiSetClassInstallParamsA(ptr ptr ptr long)
|
||||
@ stub SetupDiSetClassInstallParamsW
|
||||
@ stdcall SetupDiSetClassInstallParamsW(ptr ptr ptr long)
|
||||
@ stub SetupDiSetDeviceInstallParamsA
|
||||
@ stdcall SetupDiSetDeviceInstallParamsW(ptr ptr ptr)
|
||||
@ stdcall SetupDiSetDeviceRegistryPropertyA(ptr ptr long ptr long)
|
||||
|
|
Loading…
Reference in a new issue