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.

63 lines
1.4 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // pch.h
  7. //
  8. // Description:
  9. // Precompiled header file for the ClusOCM DLL.
  10. //
  11. // Maintained By:
  12. // Vij Vasu (Vvasu) 03-MAR-2000
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. #pragma once
  16. //////////////////////////////////////////////////////////////////////////////
  17. // Macro Definitions
  18. //////////////////////////////////////////////////////////////////////////////
  19. #if DBG==1 || defined( _DEBUG )
  20. #define DEBUG
  21. #endif
  22. ////////////////////////////////////////////////////////////////////////////////
  23. // Include Files
  24. //////////////////////////////////////////////////////////////////////////////
  25. #include <windows.h>
  26. // Contains setup API function declarations
  27. #include <setupapi.h>
  28. // For OC Manager definitions, macros, etc.
  29. #include <ocmanage.h>
  30. // For tracing and debugging functions
  31. #include <Debug.h>
  32. // For Logging functions
  33. #include <Log.h>
  34. // A few common definitions, macros, etc.
  35. #include "CommonDefs.h"
  36. // For resource ids
  37. #include "ClusOCMResources.h"
  38. // For ClusRtl functions
  39. #include "ClusRTL.h"
  40. // For the names of several cluster service related registry keys and values
  41. #include "clusudef.h"
  42. // For CClusOCMApp
  43. #include "CClusOCMApp.h"
  44. // For the declarations of a few unrelated global functions and variables
  45. #include "GlobalFuncs.h"