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.

68 lines
1.6 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000-2002 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. // David Potter (DavidP) 25-MAR-2002
  13. // Vij Vasu (Vvasu) 03-MAR-2000
  14. //
  15. //////////////////////////////////////////////////////////////////////////////
  16. #pragma once
  17. //////////////////////////////////////////////////////////////////////////////
  18. // Macro Definitions
  19. //////////////////////////////////////////////////////////////////////////////
  20. #if DBG==1 || defined( _DEBUG )
  21. #define DEBUG
  22. #endif
  23. ////////////////////////////////////////////////////////////////////////////////
  24. // Include Files
  25. //////////////////////////////////////////////////////////////////////////////
  26. #include <Pragmas.h>
  27. #include <windows.h>
  28. // Contains setup API function declarations
  29. #include <setupapi.h>
  30. // For OC Manager definitions, macros, etc.
  31. #include <ocmanage.h>
  32. #include <StrSafe.h>
  33. // For tracing and debugging functions
  34. #include <Debug.h>
  35. // For Logging functions
  36. #include <Log.h>
  37. // A few common definitions, macros, etc.
  38. #include "CommonDefs.h"
  39. // For resource ids
  40. #include "ClusOCMResources.h"
  41. // For ClusRtl functions
  42. #include "ClusRTL.h"
  43. // For the names of several cluster service related registry keys and values
  44. #include "clusudef.h"
  45. // For CClusOCMApp
  46. #include "CClusOCMApp.h"
  47. // For the declarations of a few unrelated global functions and variables
  48. #include "GlobalFuncs.h"