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.

92 lines
2.1 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 BaseCluster library.
  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. #define USES_SYSALLOCSTRING
  22. #endif
  23. ////////////////////////////////////////////////////////////////////////////////
  24. // Include Files
  25. //////////////////////////////////////////////////////////////////////////////
  26. // The next three files have to be the first files to be included.If nt.h comes
  27. // after windows.h, NT_INCLUDED will not be defined and so, winnt.h will be
  28. // included. This will give errors later, if ntdef.h is included. But ntdef has
  29. // types which winnt.h does not have, so the chicken and egg problem.
  30. #include <nt.h>
  31. #include <ntrtl.h>
  32. #include <nturtl.h>
  33. #include <windows.h>
  34. #include <ComCat.h>
  35. // For debugging functions.
  36. #include <debug.h>
  37. // For logging functions.
  38. #include <debug.h>
  39. // For tracing macros specific to this project
  40. #include "BCATrace.h"
  41. // Contains setup API function declarations
  42. #include <setupapi.h>
  43. // For serveral common macros
  44. #include <clusudef.h>
  45. // A few common declarations
  46. #include "CommonDefs.h"
  47. // For the CStr class
  48. #include "CStr.h"
  49. // For resource ids
  50. #include "BaseClusterResources.h"
  51. // For smart classes
  52. #include "SmartClasses.h"
  53. // For the exception classes.
  54. #include "Exceptions.h"
  55. // For CAction
  56. #include "CAction.h"
  57. // For the CBaseClusterAction class
  58. #include "CBaseClusterAction.h"
  59. // For the CRegistryKey class
  60. #include "CRegistryKey.h"
  61. // For the notification guids.
  62. #include <Guids.h>
  63. // For published ClusCfg guids
  64. #include <ClusCfgGuids.h>
  65. // For the CBCAInterface class.
  66. #include "CBCAInterface.h"
  67. // For the CStatusReport class
  68. #include "CStatusReport.h"