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.

58 lines
758 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. Mca.h
  5. Abstract:
  6. (See module header of Mca.cpp)
  7. Author:
  8. Abdullah Ustuner (AUstuner) 30-August-2002
  9. [Notes:]
  10. Header file for Mca.cpp
  11. --*/
  12. #ifndef MCA_H
  13. #define MCA_H
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <windows.h>
  17. #include <wbemcli.h>
  18. #include "mce.h"
  19. #include "MCAObjectSink.h"
  20. #include "Common.h"
  21. #include "CorrectedEngine.h"
  22. #include "FatalEngine.h"
  23. #define TIME_OUT_MAX 60
  24. //
  25. // Function prototypes for Mca.cpp
  26. //
  27. BOOL
  28. MCAParseArguments(
  29. IN INT ArgumentCount,
  30. IN PWCHAR ArgumentList[]
  31. );
  32. VOID
  33. MCAPrintTitle(
  34. VOID
  35. );
  36. VOID
  37. MCAPrintUsage(
  38. VOID
  39. );
  40. #endif