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.

56 lines
737 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. CorrectedEngine.h
  5. Abstract:
  6. (See module header of CorrectedEngine.cpp)
  7. Author:
  8. Abdullah Ustuner (AUstuner) 28-August-2002
  9. [Notes:]
  10. Header file for CorrectedEngine.cpp
  11. --*/
  12. #ifndef CORRECTEDENGINE_H
  13. #define CORRECTEDENGINE_H
  14. class MCAObjectSink;
  15. //
  16. // Function prototypes for CorrectedEngine.cpp
  17. //
  18. BOOL
  19. MCACreateProcessedEvent(
  20. VOID
  21. );
  22. VOID
  23. MCAErrorReceived(
  24. IN IWbemClassObject *ErrorObject
  25. );
  26. BOOL
  27. MCAGetCorrectedError(
  28. VOID
  29. );
  30. BOOL
  31. MCARegisterCMCConsumer(
  32. MCAObjectSink *pCMCSink
  33. );
  34. BOOL
  35. MCARegisterCPEConsumer(
  36. MCAObjectSink *pCPESink
  37. );
  38. #endif