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.

99 lines
2.5 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000 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. //
  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. 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 <Common.h>
  51. #include <Debug.h>
  52. #include <Log.h>
  53. #include <CITracker.h>
  54. #include <CFactory.h>
  55. #include <Dll.h>
  56. #include <guids.h>
  57. #include <loadstring.h>
  58. #include <PropList.h>
  59. #include <ObjectCookie.h>
  60. #include <ClusCfgClient.h>
  61. #include <ClusCfgGuids.h>
  62. #include <ClusCfgServer.h>
  63. #include <ClusCfgPrivate.h>
  64. #include "ClusterUtils.h"
  65. #include "W2KProxyResources.h"
  66. #include <StatusReports.h>
  67. #include "W2KProxyServerGuids.h"
  68. //////////////////////////////////////////////////////////////////////////////
  69. // Type Definitions
  70. //////////////////////////////////////////////////////////////////////////////
  71. //
  72. // Failure code.
  73. //
  74. #define SSR_W2KPROXY_STATUS( _major, _minor, _hr ) \
  75. { \
  76. HRESULT hrTemp; \
  77. hrTemp = THR( SendStatusReport( NULL, _major, _minor, 0, 1, 1, _hr, NULL, NULL, NULL ) ); \
  78. if ( FAILED( hrTemp ) ) \
  79. { \
  80. _hr = hrTemp; \
  81. } \
  82. }