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.

75 lines
2.2 KiB

  1. /*++
  2. Copyright (c) 1992-1997 Microsoft Corporation
  3. Module Name:
  4. args.h
  5. Abstract:
  6. Contains definitions for processing command line arguments.
  7. Environment:
  8. User Mode - Win32
  9. Revision History:
  10. 10-Feb-1997 DonRyan
  11. Rewrote to implement SNMPv2 support.
  12. --*/
  13. #ifndef _ARGS_H_
  14. #define _ARGS_H_
  15. ///////////////////////////////////////////////////////////////////////////////
  16. // //
  17. // Public definitions //
  18. // //
  19. ///////////////////////////////////////////////////////////////////////////////
  20. typedef struct _CMD_LINE_ARGUMENTS {
  21. UINT nLogType;
  22. UINT nLogLevel;
  23. BOOL fBypassCtrlDispatcher;
  24. } CMD_LINE_ARGUMENTS, *PCMD_LINE_ARGUMENTS;
  25. ///////////////////////////////////////////////////////////////////////////////
  26. // //
  27. // Public prototypes //
  28. // //
  29. ///////////////////////////////////////////////////////////////////////////////
  30. BOOL
  31. ProcessArguments(
  32. DWORD NumberOfArgs,
  33. LPSTR ArgumentPtrs[]
  34. );
  35. ///////////////////////////////////////////////////////////////////////////////
  36. // //
  37. // Private definitions //
  38. // //
  39. ///////////////////////////////////////////////////////////////////////////////
  40. #define DEFINE_ARGUMENT(x) \
  41. (x ## _ARGUMENT)
  42. #define IS_ARGUMENT(x,y) \
  43. (!_strnicmp(((LPSTR)(x)),DEFINE_ARGUMENT(y),strlen(DEFINE_ARGUMENT(y))))
  44. #define DWORD_ARGUMENT(x,y) \
  45. (atoi(&((LPSTR)(x))[strlen(DEFINE_ARGUMENT(y))]))
  46. #define DEBUG_ARGUMENT "/debug"
  47. #define LOGTYPE_ARGUMENT "/logtype:"
  48. #define LOGLEVEL_ARGUMENT "/loglevel:"
  49. #define INVALID_ARGUMENT 0xffffffff
  50. #endif // _ARGS_H_