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.

78 lines
1.9 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999-2002 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 <pragmas.h>
  36. #include <crtdbg.h>
  37. #include <wbemprov.h>
  38. #include <objbase.h>
  39. #include "ntrkcomm.h"
  40. //
  41. //STL related issues, can't fix this, not in our code.
  42. //
  43. #pragma warning( push )
  44. #pragma warning( disable : 4244 ) // In STL code: 'return' : conversion from 'int' to 'wchar_t', possible loss of data
  45. #pragma warning( disable : 4512 ) // assignment operator could not be generated
  46. #include <memory>
  47. #include <map>
  48. #include <list>
  49. #include <comdef.h>
  50. #include <wchar.h>
  51. #include <atlbase.h>
  52. #include <StrSafe.h>
  53. #include <clusapi.h>
  54. #include <resapi.h>
  55. #include <clusudef.h>
  56. #include <PropList.h>
  57. #include <cluswrap.h>
  58. #include "Common.h"
  59. #include "ClusterApi.h"
  60. #include "ClusterEnum.h"
  61. #include "ObjectPath.h"
  62. #include "ProvBase.h"
  63. #include "SafeHandle.h"
  64. #include "clstrcmp.h"
  65. #pragma warning( pop )