SetServiceA function (nspapi.h)
The SetService function registers or removes from the registry a network service within one or more namespaces. The function can also add or remove a network service type within one or more namespaces.
Syntax
INT SetServiceA(
[in] DWORD dwNameSpace,
[in] DWORD dwOperation,
[in] DWORD dwFlags,
[in] LPSERVICE_INFOA lpServiceInfo,
[in, optional] LPSERVICE_ASYNC_INFO lpServiceAsyncInfo,
[out] LPDWORD lpdwStatusFlags
);
Parameters
[in] dwNameSpace
The namespace, or a set of default namespaces, within which the function will operate.
Use one of the following constants to specify a namespace.
[in] dwOperation
The operation that the function will perform. Use one of the following values to specify an operation:
Value | Meaning |
---|---|
|
Register the network service with the namespace. This operation can be used with the SERVICE_FLAG_DEFER and SERVICE_FLAG_HARD bit flags. |
|
Remove from the registry the network service from the namespace. This operation can be used with the SERVICE_FLAG_DEFER and SERVICE_FLAG_HARD bit flags. |
|
Perform any operation that was called with the SERVICE_FLAG_DEFER bit flag set to one. |
|
Add a service type to the namespace.
For this operation, use the ServiceSpecificInfo member of the SERVICE_INFO structure pointed to by lpServiceInfo to pass a SERVICE_TYPE_INFO_ABS structure. You must also set the ServiceType member of the SERVICE_INFO structure. Other SERVICE_INFO members are ignored. |
|
Remove a service type, added by a previous call specifying the SERVICE_ADD_TYPE operation, from the namespace. |
[in] dwFlags
A set of bit flags that modify the function's operation. You can set one or more of the following bit flags:
[in] lpServiceInfo
A pointer to a SERVICE_INFO structure that contains information about the network service or service type.
[in, optional] lpServiceAsyncInfo
Reserved for future use. Must be set to NULL.
[out] lpdwStatusFlags
A set of bit flags that receive function status information. The following bit flag is defined:
Value | Meaning |
---|---|
|
One or more namespace providers were unable to successfully perform the requested operation. |
Return value
If the function fails, the return value is SOCKET_ERROR. To get extended error information, call GetLastError. GetLastError can return the following extended error value.
Error code | Meaning |
---|---|
|
The function tried to register a service that was already registered. |
Remarks
Note
The nspapi.h header defines SetService 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 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | nspapi.h |
Library | Mswsock.lib |
DLL | Mswsock.dll |