SERVICE_STATUS

public struct SERVICE_STATUS
{
    public ENUM_SERVICE_TYPE dwServiceType;
    public SERVICE_STATUS_CURRENT_STATE dwCurrentState;
    public uint dwControlsAccepted;
    public uint dwWin32ExitCode;
    public uint dwServiceSpecificExitCode;
    public uint dwCheckPoint;
    public uint dwWaitHint;
}

ENUM_SERVICE_TYPE

SERVICE_STATUS_CURRENT_STATE

Last updated