Source code of Windows XP (NT5)
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.

26 lines
587 B

  1. //
  2. // Application Verifier UI
  3. // Copyright (c) Microsoft Corporation, 2001
  4. //
  5. //
  6. //
  7. // module: CmdLine.h
  8. // author: DMihai
  9. // created: 02/23/2001
  10. //
  11. // Description:
  12. //
  13. // Command line support
  14. //
  15. #ifndef __APP_VERIFIER_CMDLINE_H__
  16. #define __APP_VERIFIER_CMDLINE_H__
  17. #define AV_EXIT_CODE_SUCCESS 0
  18. #define AV_EXIT_CODE_RESTART 1
  19. #define AV_EXIT_CODE_ERROR 2
  20. /////////////////////////////////////////////////////////////////////////////
  21. DWORD CmdLineExecute( INT argc, TCHAR *agrv[] );
  22. #endif //#ifndef __APP_VERIFIER_CMDLINE_H__