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.

85 lines
2.4 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999-2003 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // Pch.h
  7. //
  8. // Description:
  9. // Precompiled header file.
  10. //
  11. // Maintained By:
  12. // Ozan Ozhan (OzanO) 08-JAN-2003
  13. // Geoffrey Pease (GPease) 15-OCT-1999
  14. //
  15. //////////////////////////////////////////////////////////////////////////////
  16. //////////////////////////////////////////////////////////////////////////////
  17. // Constant Definitions
  18. //////////////////////////////////////////////////////////////////////////////
  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. // Forward Class Declarations
  34. //////////////////////////////////////////////////////////////////////////////
  35. //////////////////////////////////////////////////////////////////////////////
  36. // External Class Declarations
  37. //////////////////////////////////////////////////////////////////////////////
  38. //////////////////////////////////////////////////////////////////////////////
  39. // Include Files
  40. //////////////////////////////////////////////////////////////////////////////
  41. #include <windows.h>
  42. #include <objbase.h>
  43. #include <ocidl.h>
  44. #include <dispex.h>
  45. #include <shlwapi.h>
  46. #include <resapi.h>
  47. #include <activscp.h>
  48. #include <activdbg.h>
  49. #include <nserror.h>
  50. // Safe string functions
  51. #include <strsafe.h>
  52. #include <Pragmas.h>
  53. #include <CITracker.h>
  54. #include <Debug.h>
  55. #include <Log.h>
  56. #include <Common.h>
  57. #include <clusudef.h>
  58. #include <clusrtl.h>
  59. #include "clstrcmp.h"
  60. #include "genscript.h"
  61. #define cchGUID_STRING_SIZE (sizeof("{12345678-1234-1234-1234-123456789012}"))
  62. extern "C" {
  63. extern PLOG_EVENT_ROUTINE ClusResLogEvent;
  64. }
  65. //////////////////////////////////////////////////////////////////////////////
  66. // Type Definitions
  67. //////////////////////////////////////////////////////////////////////////////
  68. //
  69. // Generic script resource type private properties.
  70. //
  71. typedef struct GENSCRIPT_PROPS
  72. {
  73. LPWSTR pszScriptFilePath;
  74. } GENSCRIPT_PROPS, * PGENSCRIPT_PROPS;