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.

64 lines
1.4 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999-2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // Pch.h
  7. //
  8. // Description:
  9. // Precompiled header file.
  10. //
  11. // Maintained By:
  12. // David Potter (DavidP) 05-APR-2000
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. //////////////////////////////////////////////////////////////////////////////
  16. // Constant Definitions
  17. //////////////////////////////////////////////////////////////////////////////
  18. #define UNICODE
  19. #define _UNICODE
  20. #if DBG==1 || defined( _DEBUG )
  21. #define DEBUG
  22. //
  23. // Define this to change Interface Tracking
  24. //
  25. //#define NO_TRACE_INTERFACES
  26. //
  27. // Define this to pull in the SysAllocXXX functions. Requires linking to
  28. // OLEAUT32.DLL
  29. //
  30. #define USES_SYSALLOCSTRING
  31. #endif // DBG==1 || _DEBUG
  32. //////////////////////////////////////////////////////////////////////////////
  33. // Include Files
  34. //////////////////////////////////////////////////////////////////////////////
  35. #include <crtdbg.h>
  36. #include <wbemprov.h>
  37. #include <objbase.h>
  38. #include "ntrkcomm.h"
  39. #include <memory>
  40. #include <map>
  41. #include <list>
  42. #include <comdef.h>
  43. #include <tchar.h>
  44. #include <atlbase.h>
  45. #include <clusapi.h>
  46. #include <resapi.h>
  47. #include <clusudef.h>
  48. #include "Common.h"
  49. #include "ClusterApi.h"
  50. #include "ClusterEnum.h"
  51. #include "ObjectPath.h"
  52. #include "PropList.h"
  53. #include "ProvBase.h"
  54. #include "SafeHandle.h"