/*++ Copyright (c) 1992 Microsoft Corporation Module Name: valid.c Abstract: Contains validation routines for service controller parameters. Author: Dan Lafferty (danl) 29-Mar-1992 Environment: User Mode - Win32 Revision History: 29-Mar-1992 danl Created 10-Apr-1992 JohnRo Include so compiler checks prototypes. --*/ // // INCLUDES // #include #include // DbgPrint prototype #include // needed for winbase.h when ntrtl is present #include // CRITICAL_SECTION #include // SC_LOG #include // SERVICE_STATUS #include // My prototypes. BOOL ScCurrentStateInvalid( DWORD dwCurrentState ) /*++ Routine Description: This function returns TRUE if the CurrentState is invalid. Otherwise FALSE is returned. Arguments: dwCurrentState - This is the ServiceState that is being validiated. Return Value: TRUE - The CurrentState is invalid. FALSE - The CurrentState is valid. Note: --*/ { if ((dwCurrentState == SERVICE_STOPPED) || (dwCurrentState == SERVICE_START_PENDING) || (dwCurrentState == SERVICE_STOP_PENDING) || (dwCurrentState == SERVICE_RUNNING) || (dwCurrentState == SERVICE_CONTINUE_PENDING) || (dwCurrentState == SERVICE_PAUSE_PENDING) || (dwCurrentState == SERVICE_PAUSED )) { return(FALSE); } return(TRUE); }