Commit 1c7891f8 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

setupapi: Add stub for SetupInstallServicesFromInfSectionA.

parent e122f813
......@@ -1065,3 +1065,12 @@ void WINAPI InstallHinfSectionA( HWND hwnd, HINSTANCE handle, LPCSTR cmdline, IN
RtlFreeUnicodeString( &cmdlineW );
}
}
/***********************************************************************
* SetupInstallServicesFromInfSectionA (SETUPAPI.@)
*/
BOOL WINAPI SetupInstallServicesFromInfSectionA( HINF Inf, PCSTR SectionName, DWORD Flags)
{
FIXME("(%p, %s, %d) stub!\n", Inf, debugstr_a(SectionName), Flags);
return FALSE;
}
......@@ -442,7 +442,7 @@
@ stdcall SetupInstallFilesFromInfSectionW(long long long wstr wstr long)
@ stdcall SetupInstallFromInfSectionA(long long str long long str long ptr ptr long ptr)
@ stdcall SetupInstallFromInfSectionW(long long wstr long long wstr long ptr ptr long ptr)
@ stub SetupInstallServicesFromInfSectionA
@ stdcall SetupInstallServicesFromInfSectionA(long str long)
@ stub SetupInstallServicesFromInfSectionExA
@ stub SetupInstallServicesFromInfSectionExW
@ stub SetupInstallServicesFromInfSectionW
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment