setupapi: Add a stub for SetupDiGetDeviceInstallParamsW.
This commit is contained in:
parent
aefd9b5533
commit
7b32809890
|
@ -3682,6 +3682,18 @@ BOOL WINAPI SetupDiCallClassInstaller(
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetupDiGetDeviceInstallParamsW (SETUPAPI.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI SetupDiGetDeviceInstallParamsW(
|
||||||
|
HDEVINFO DeviceInfoSet,
|
||||||
|
PSP_DEVINFO_DATA DeviceInfoData,
|
||||||
|
PSP_DEVINSTALL_PARAMS_W DeviceInstallParams)
|
||||||
|
{
|
||||||
|
FIXME("%p %p %p\n", DeviceInfoSet, DeviceInfoData, DeviceInstallParams);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* SetupDiGetDeviceInstallParamsA (SETUPAPI.@)
|
* SetupDiGetDeviceInstallParamsA (SETUPAPI.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -336,7 +336,7 @@
|
||||||
@ stdcall SetupDiGetDeviceInfoListDetailA(ptr ptr)
|
@ stdcall SetupDiGetDeviceInfoListDetailA(ptr ptr)
|
||||||
@ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr)
|
@ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr)
|
||||||
@ stdcall SetupDiGetDeviceInstallParamsA(ptr ptr ptr)
|
@ stdcall SetupDiGetDeviceInstallParamsA(ptr ptr ptr)
|
||||||
@ stub SetupDiGetDeviceInstallParamsW
|
@ stdcall SetupDiGetDeviceInstallParamsW(ptr ptr ptr)
|
||||||
@ stdcall SetupDiGetDeviceInstanceIdA(ptr ptr ptr long ptr)
|
@ stdcall SetupDiGetDeviceInstanceIdA(ptr ptr ptr long ptr)
|
||||||
@ stdcall SetupDiGetDeviceInstanceIdW(ptr ptr ptr long ptr)
|
@ stdcall SetupDiGetDeviceInstanceIdW(ptr ptr ptr long ptr)
|
||||||
@ stub SetupDiGetDeviceInterfaceAlias
|
@ stub SetupDiGetDeviceInterfaceAlias
|
||||||
|
|
Loading…
Reference in New Issue