Specifies the
ServiceMain function for a service that can run in the calling process. It is used by the
StartServiceCtrlDispatcher function.
Syntax
typedef struct _SERVICE_TABLE_ENTRY {
LPTSTR lpServiceName;
LPSERVICE_MAIN_FUNCTION lpServiceProc;
}SERVICE_TABLE_ENTRY, *LPSERVICE_TABLE_ENTRY;
Members
- lpServiceName
The name of a service to be run in this service process.
If the service is installed with the SERVICE_WIN32_OWN_PROCESS service type, this member is ignored, but cannot be NULL. This member can be an empty string ("").
If the service is installed with the SERVICE_WIN32_SHARE_PROCESS service type, this member specifies the name of the service that uses the
ServiceMain function pointed to by the lpServiceProc member.
- lpServiceProc
A pointer to a
ServiceMain function.
Examples
For an example, see Writing a Service Program's main Function.
Requirements
| Minimum supported client | Windows 2000 Professional |
| Minimum supported server | Windows 2000 Server |
| Header | Winsvc.h (include Windows.h) |
| Unicode and ANSI names | SERVICE_TABLE_ENTRYW (Unicode) and SERVICE_TABLE_ENTRYA (ANSI) |
See Also
- ServiceMain
- StartServiceCtrlDispatcher
Send comments about this topic to Microsoft
Build date: 11/19/2009