setupapi: Add stub for SetupInstallServicesFromInfSectionW.
This commit is contained in:
parent
407db36684
commit
4d721de4d2
|
@ -1066,6 +1066,15 @@ void WINAPI InstallHinfSectionA( HWND hwnd, HINSTANCE handle, LPCSTR cmdline, IN
|
|||
}
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupInstallServicesFromInfSectionW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupInstallServicesFromInfSectionW( HINF Inf, PCWSTR SectionName, DWORD Flags)
|
||||
{
|
||||
FIXME("(%p, %s, %d) stub!\n", Inf, debugstr_w(SectionName), Flags);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupInstallServicesFromInfSectionA (SETUPAPI.@)
|
||||
*/
|
||||
|
|
|
@ -445,7 +445,7 @@
|
|||
@ stdcall SetupInstallServicesFromInfSectionA(long str long)
|
||||
@ stub SetupInstallServicesFromInfSectionExA
|
||||
@ stub SetupInstallServicesFromInfSectionExW
|
||||
@ stub SetupInstallServicesFromInfSectionW
|
||||
@ stdcall SetupInstallServicesFromInfSectionW(long wstr long)
|
||||
@ stdcall SetupIterateCabinetA(str long ptr ptr)
|
||||
@ stdcall SetupIterateCabinetW(wstr long ptr ptr)
|
||||
@ stub SetupLogErrorA
|
||||
|
|
Loading…
Reference in New Issue