Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

  1. /******************************************************************************
  2. Copyright(c) Microsoft Corporation
  3. Module Name:
  4. run.h
  5. Abstract:
  6. This module contains the macros, user defined structures & function
  7. definitions needed by run.cpp
  8. Author:
  9. Venu Gopal Choudary 12-Mar-2001
  10. Revision History:
  11. Venu Gopal Choudary 12-Mar-2001 : Created it
  12. ******************************************************************************/
  13. #ifndef __RUN_H
  14. #define __RUN_H
  15. #pragma once
  16. #define MAX_RUN_OPTIONS 6
  17. #define OI_RUN_OPTION 0 // Index of -run option in cmdOptions structure.
  18. #define OI_RUN_USAGE 1 // Index of -? option in cmdOptions structure.
  19. #define OI_RUN_SERVER 2 // Index of -s option in cmdOptions structure.
  20. #define OI_RUN_USERNAME 3 // Index of -u option in cmdOptions structure.
  21. #define OI_RUN_PASSWORD 4 // Index of -p option in cmdOptions structure.
  22. #define OI_RUN_TASKNAME 5 // Index of -p option in cmdOptions structure.
  23. #endif