Writing a ServiceMain Function
The MyServiceStart function in the following example is the entry point for
the service. MyServiceStart has access to the command-line arguments, in the way
that the main function of a console application does. The first parameter
contains the number of arguments being passed to the service. There will always be
at least one argument. The second parameter is a pointer to an array of string
pointers. The first item in the array always points to the service name. 
The MyServiceStart function first fills in the 
SERVICE_STATUS structure including the control codes that it accepts. Although this service
accepts SERVICE_CONTROL_PAUSE and SERVICE_CONTROL_CONTINUE, it does nothing
significant when told to pause. The flags SERVICE_ACCEPT_PAUSE_CONTINUE was
included for illustration purposes only; if pausing does not add value to your
service, do not support it. 
The MyServiceStart function then calls the 
RegisterServiceCtrlHandler function to register MyService as the service's 
Handler function and begin initialization. The following sample initialization
function, MyServiceInitialization, is included for illustration purposes; it does not
perform any initialization tasks such as creating additional threads. If your
service's initialization performs tasks that are expected to take longer than
one second, your code must call the 
SetServiceStatus function periodically to send out wait hints and check points indicating that
progress is being made. 
When initialization has completed successfully, the example calls 
SetServiceStatus with a status of SERVICE_RUNNING and the service continues with its work. If
an error has occurred in initialization, MyServiceStart reports SERVICE_STOPPED
with the 
SetServiceStatus function and returns.
Because this sample service does not complete any real tasks, MyServiceStart
simply returns control to the caller. However, your service should use this
thread to complete whatever tasks it was designed to do. If a service does not need
a thread to do its work (such as a service that only processes RPC requests),
its 
ServiceMain function should return control to the caller. It is important for the
function to return, rather than call the 
ExitThread function, because returning allows for cleanup of the memory allocated for
the arguments.
To output debugging information, MyServiceStart calls SvcDebugOut. The source
code for SvcDebugOut is given in 
Writing a Service Program's main Function.
- oid MyServiceStart (DWORD argc, LPTSTR *argv)  
{ 
    DWORD status; 
    DWORD specificError; 
 
    MyServiceStatus.dwServiceType        = SERVICE_WIN32; 
    MyServiceStatus.dwCurrentState       = SERVICE_START_PENDING; 
    MyServiceStatus.dwControlsAccepted   = SERVICE_ACCEPT_STOP | 
        SERVICE_ACCEPT_PAUSE_CONTINUE; 
    MyServiceStatus.dwWin32ExitCode      = 0; 
    MyServiceStatus.dwServiceSpecificExitCode = 0; 
    MyServiceStatus.dwCheckPoint         = 0; 
    MyServiceStatus.dwWaitHint           = 0; 
 
    MyServiceStatusHandle = RegisterServiceCtrlHandler( 
        TEXT("MyService"), 
        MyServiceCtrlHandler); 
 
    if (MyServiceStatusHandle == (SERVICE_STATUS_HANDLE)0) 
    { 
        SvcDebugOut(" [MY_SERVICE] RegisterServiceCtrlHandler 
            failed %d\n", GetLastError()); 
        return; 
    } 
 
    // Initialization code goes here. 
    status = MyServiceInitialization(argc,argv, &specificError); 
 
    // Handle error condition 
    if (status != NO_ERROR) 
    { 
        MyServiceStatus.dwCurrentState       = SERVICE_STOPPED; 
        MyServiceStatus.dwCheckPoint         = 0; 
        MyServiceStatus.dwWaitHint           = 0; 
        MyServiceStatus.dwWin32ExitCode      = status; 
        MyServiceStatus.dwServiceSpecificExitCode = specificError; 
 
        SetServiceStatus (MyServiceStatusHandle, &MyServiceStatus); 
        return; 
    } 
 
    // Initialization complete - report running status. 
    MyServiceStatus.dwCurrentState       = SERVICE_RUNNING; 
    MyServiceStatus.dwCheckPoint         = 0; 
    MyServiceStatus.dwWaitHint           = 0; 
 
    if (!SetServiceStatus (MyServiceStatusHandle, &MyServiceStatus)) 
    { 
        status = GetLastError(); 
        SvcDebugOut(" [MY_SERVICE] SetServiceStatus error
            %ld\n",status); 
    } 
 
    // This is where the service does its work. 
    SvcDebugOut(" [MY_SERVICE] Returning the Main Thread \n",0); 
 
    return; 
} 
 
// Stub initialization function. 
DWORD MyServiceInitialization(DWORD   argc, LPTSTR  *argv, 
    DWORD *specificError) 
{ 
    argv; 
    argc; 
    specificError; 
    return(0); 
}
			
				- Software for developers
				
- 
				Delphi Components
 .Net Components
 Software for Android Developers
- More information resources
				
- 
				MegaDetailed.Net
 Unix Manual Pages
 Delphi Examples