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.

104 lines
2.7 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000-2002 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // Pch.h
  7. //
  8. // Description:
  9. // Precompiled header file.
  10. //
  11. // Maintained By:
  12. // Galen Barbee (GalenB) 02-AUG-2000
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. //////////////////////////////////////////////////////////////////////////////
  16. // Constant Definitions
  17. //////////////////////////////////////////////////////////////////////////////
  18. #define UNICODE = 1
  19. #define _UNICODE = 1
  20. #if DBG==1 || defined( _DEBUG )
  21. #define DEBUG
  22. //
  23. // Define this to change Interface Tracking
  24. //
  25. //#define NO_TRACE_INTERFACES
  26. #endif // DBG==1 || _DEBUG
  27. //
  28. // Define this to pull in the SysAllocXXX functions. Requires linking to
  29. // OLEAUT32.DLL
  30. //
  31. #define USES_SYSALLOCSTRING
  32. const int TIMEOUT = -1;
  33. const int PUNKCHUNK = 10;
  34. //////////////////////////////////////////////////////////////////////////////
  35. // Forward Class Declarations
  36. //////////////////////////////////////////////////////////////////////////////
  37. //////////////////////////////////////////////////////////////////////////////
  38. // External Class Declarations
  39. //////////////////////////////////////////////////////////////////////////////
  40. //////////////////////////////////////////////////////////////////////////////
  41. // Include Files
  42. //////////////////////////////////////////////////////////////////////////////
  43. #include <Pragmas.h>
  44. #include <windows.h>
  45. #include <objbase.h>
  46. #include <wchar.h>
  47. #include <ComCat.h>
  48. #include <clusapi.h>
  49. #include <ClusRtl.h>
  50. #include <clusudef.h>
  51. #include <Common.h>
  52. #include <Debug.h>
  53. #include <Log.h>
  54. #include <CITracker.h>
  55. #include <CFactory.h>
  56. #include <Dll.h>
  57. #include <guids.h>
  58. #include <loadstring.h>
  59. #include <PropList.h>
  60. #include <ObjectCookie.h>
  61. #include <ClusCfgClient.h>
  62. #include <ClusCfgGuids.h>
  63. #include <ClusCfgInternalGuids.h>
  64. #include <ClusCfgServer.h>
  65. #include <ClusCfgPrivate.h>
  66. #include "ClusterUtils.h"
  67. #include "W2KProxyStrings.h"
  68. #include <StatusReports.h>
  69. #include "W2KProxyServerGuids.h"
  70. #include <strsafe.h>
  71. //////////////////////////////////////////////////////////////////////////////
  72. // Type Definitions
  73. //////////////////////////////////////////////////////////////////////////////
  74. //
  75. // Failure code.
  76. //
  77. #define SSR_W2KPROXY_STATUS( _major, _minor, _hr ) \
  78. { \
  79. HRESULT hrTemp; \
  80. hrTemp = THR( SendStatusReport( NULL, _major, _minor, 0, 1, 1, _hr, NULL, NULL, NULL ) ); \
  81. if ( FAILED( hrTemp ) ) \
  82. { \
  83. _hr = hrTemp; \
  84. } \
  85. }