SetupInstallServicesFromInfSectionExA function (setupapi.h)
[This function is available for use in the operating systems indicated in the Requirements section. It may be altered or unavailable in subsequent versions. SetupAPI should no longer be used for installing applications. Instead, use the Windows Installer for developing application installers. SetupAPI continues to be used for installing device drivers.]
The SetupInstallServicesFromInfSectionEx function performs service installation and deletion operations that are specified in the Service Install sections listed in the Service section of an INF file.
A caller of this function is required to have access to the Service Control Manager, and privileges to modify services.
Syntax
WINSETUPAPI BOOL SetupInstallServicesFromInfSectionExA(
[in] HINF InfHandle,
[in] PCSTR SectionName,
[in] DWORD Flags,
[in] HDEVINFO DeviceInfoSet,
[in] PSP_DEVINFO_DATA DeviceInfoData,
PVOID Reserved1,
PVOID Reserved2
);
Parameters
[in] InfHandle
A handle to the INF file that contains the Service section.
[in] SectionName
The name of the Service section to process. You should use a null-terminated string.
[in] Flags
The controls for the installation.
[in] DeviceInfoSet
An optional pointer to a handle to a device information set. For more information, see the DDK Programmer's Guide. (This resource may not be available in some languages
and countries.)
[in] DeviceInfoData
An optional pointer to the SP_DEVINFO_DATA structure that provides a context to a specific element in the set that DeviceInfoSet specifies. For more information, see the DDK Programmer's Guide. (This resource may not be available in some languages
and countries.)
Reserved1
Reserved.
Reserved2
Reserved.
Return value
If the function succeeds, the return value is nonzero. The function calls SetLastError with ERROR_SUCCESS_REBOOT_REQUIRED if a reboot of the system is required.
If the function fails, the return value is 0 (zero). To get extended error information, call GetLastError.
Remarks
Note
The setupapi.h header defines SetupInstallServicesFromInfSectionEx as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | setupapi.h |
Library | Setupapi.lib |
DLL | Setupapi.dll |