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.

244 lines
6.5 KiB

  1. /* this ALWAYS GENERATED file contains the definitions for the interfaces */
  2. /* File created by MIDL compiler version 6.00.0361 */
  3. /* Compiler settings for cladmwiz.idl:
  4. Oicf, W1, Zp8, env=Win32 (32b run)
  5. protocol : dce , ms_ext, c_ext, robust
  6. error checks: allocation ref bounds_check enum stub_data
  7. VC __declspec() decoration level:
  8. __declspec(uuid()), __declspec(selectany), __declspec(novtable)
  9. DECLSPEC_UUID(), MIDL_INTERFACE()
  10. */
  11. //@@MIDL_FILE_HEADING( )
  12. #pragma warning( disable: 4049 ) /* more than 64k source lines */
  13. /* verify that the <rpcndr.h> version is high enough to compile this file*/
  14. #ifndef __REQUIRED_RPCNDR_H_VERSION__
  15. #define __REQUIRED_RPCNDR_H_VERSION__ 475
  16. #endif
  17. #include "rpc.h"
  18. #include "rpcndr.h"
  19. #ifndef __RPCNDR_H_VERSION__
  20. #error this stub requires an updated version of <rpcndr.h>
  21. #endif // __RPCNDR_H_VERSION__
  22. #ifndef COM_NO_WINDOWS_H
  23. #include "windows.h"
  24. #include "ole2.h"
  25. #endif /*COM_NO_WINDOWS_H*/
  26. #ifndef __cladmwiz_h__
  27. #define __cladmwiz_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __IClusterApplicationWizard_FWD_DEFINED__
  33. #define __IClusterApplicationWizard_FWD_DEFINED__
  34. typedef interface IClusterApplicationWizard IClusterApplicationWizard;
  35. #endif /* __IClusterApplicationWizard_FWD_DEFINED__ */
  36. #ifndef __ClusAppWiz_FWD_DEFINED__
  37. #define __ClusAppWiz_FWD_DEFINED__
  38. #ifdef __cplusplus
  39. typedef class ClusAppWiz ClusAppWiz;
  40. #else
  41. typedef struct ClusAppWiz ClusAppWiz;
  42. #endif /* __cplusplus */
  43. #endif /* __ClusAppWiz_FWD_DEFINED__ */
  44. /* header files for imported files */
  45. #include "oaidl.h"
  46. #include "ocidl.h"
  47. #include "clusapi.h"
  48. #ifdef __cplusplus
  49. extern "C"{
  50. #endif
  51. void * __RPC_USER MIDL_user_allocate(size_t);
  52. void __RPC_USER MIDL_user_free( void * );
  53. #ifndef __IClusterApplicationWizard_INTERFACE_DEFINED__
  54. #define __IClusterApplicationWizard_INTERFACE_DEFINED__
  55. /* interface IClusterApplicationWizard */
  56. /* [unique][helpstring][uuid][object] */
  57. typedef struct ClusAppWizData
  58. {
  59. ULONG nStructSize;
  60. BOOL bCreateNewVirtualServer;
  61. BOOL bCreateNewGroup;
  62. BOOL bCreateAppResource;
  63. LPCWSTR pszVirtualServerName;
  64. LPCWSTR pszIPAddress;
  65. LPCWSTR pszNetwork;
  66. LPCWSTR pszAppResourceType;
  67. LPCWSTR pszAppResourceName;
  68. } CLUSAPPWIZDATA;
  69. typedef struct ClusAppWizData *PCLUSAPPWIZDATA;
  70. EXTERN_C const IID IID_IClusterApplicationWizard;
  71. #if defined(__cplusplus) && !defined(CINTERFACE)
  72. MIDL_INTERFACE("24F97151-6689-11D1-9AA7-00C04FB93A80")
  73. IClusterApplicationWizard : public IUnknown
  74. {
  75. public:
  76. virtual /* [local] */ HRESULT STDMETHODCALLTYPE DoModalWizard(
  77. /* [in] */ HWND hwndParent,
  78. /* [in] */ ULONG_PTR hCluster,
  79. /* [in] */ const CLUSAPPWIZDATA *pcawData) = 0;
  80. virtual /* [local] */ HRESULT STDMETHODCALLTYPE DoModelessWizard(
  81. /* [in] */ HWND hwndParent,
  82. /* [in] */ ULONG_PTR hCluster,
  83. /* [in] */ const CLUSAPPWIZDATA *pcawData) = 0;
  84. };
  85. #else /* C style interface */
  86. typedef struct IClusterApplicationWizardVtbl
  87. {
  88. BEGIN_INTERFACE
  89. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  90. IClusterApplicationWizard * This,
  91. /* [in] */ REFIID riid,
  92. /* [iid_is][out] */ void **ppvObject);
  93. ULONG ( STDMETHODCALLTYPE *AddRef )(
  94. IClusterApplicationWizard * This);
  95. ULONG ( STDMETHODCALLTYPE *Release )(
  96. IClusterApplicationWizard * This);
  97. /* [local] */ HRESULT ( STDMETHODCALLTYPE *DoModalWizard )(
  98. IClusterApplicationWizard * This,
  99. /* [in] */ HWND hwndParent,
  100. /* [in] */ ULONG_PTR hCluster,
  101. /* [in] */ const CLUSAPPWIZDATA *pcawData);
  102. /* [local] */ HRESULT ( STDMETHODCALLTYPE *DoModelessWizard )(
  103. IClusterApplicationWizard * This,
  104. /* [in] */ HWND hwndParent,
  105. /* [in] */ ULONG_PTR hCluster,
  106. /* [in] */ const CLUSAPPWIZDATA *pcawData);
  107. END_INTERFACE
  108. } IClusterApplicationWizardVtbl;
  109. interface IClusterApplicationWizard
  110. {
  111. CONST_VTBL struct IClusterApplicationWizardVtbl *lpVtbl;
  112. };
  113. #ifdef COBJMACROS
  114. #define IClusterApplicationWizard_QueryInterface(This,riid,ppvObject) \
  115. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  116. #define IClusterApplicationWizard_AddRef(This) \
  117. (This)->lpVtbl -> AddRef(This)
  118. #define IClusterApplicationWizard_Release(This) \
  119. (This)->lpVtbl -> Release(This)
  120. #define IClusterApplicationWizard_DoModalWizard(This,hwndParent,hCluster,pcawData) \
  121. (This)->lpVtbl -> DoModalWizard(This,hwndParent,hCluster,pcawData)
  122. #define IClusterApplicationWizard_DoModelessWizard(This,hwndParent,hCluster,pcawData) \
  123. (This)->lpVtbl -> DoModelessWizard(This,hwndParent,hCluster,pcawData)
  124. #endif /* COBJMACROS */
  125. #endif /* C style interface */
  126. /* [local] */ HRESULT STDMETHODCALLTYPE IClusterApplicationWizard_DoModalWizard_Proxy(
  127. IClusterApplicationWizard * This,
  128. /* [in] */ HWND hwndParent,
  129. /* [in] */ ULONG_PTR hCluster,
  130. /* [in] */ const CLUSAPPWIZDATA *pcawData);
  131. void __RPC_STUB IClusterApplicationWizard_DoModalWizard_Stub(
  132. IRpcStubBuffer *This,
  133. IRpcChannelBuffer *_pRpcChannelBuffer,
  134. PRPC_MESSAGE _pRpcMessage,
  135. DWORD *_pdwStubPhase);
  136. /* [local] */ HRESULT STDMETHODCALLTYPE IClusterApplicationWizard_DoModelessWizard_Proxy(
  137. IClusterApplicationWizard * This,
  138. /* [in] */ HWND hwndParent,
  139. /* [in] */ ULONG_PTR hCluster,
  140. /* [in] */ const CLUSAPPWIZDATA *pcawData);
  141. void __RPC_STUB IClusterApplicationWizard_DoModelessWizard_Stub(
  142. IRpcStubBuffer *This,
  143. IRpcChannelBuffer *_pRpcChannelBuffer,
  144. PRPC_MESSAGE _pRpcMessage,
  145. DWORD *_pdwStubPhase);
  146. #endif /* __IClusterApplicationWizard_INTERFACE_DEFINED__ */
  147. #ifndef __CLADMWIZLib_LIBRARY_DEFINED__
  148. #define __CLADMWIZLib_LIBRARY_DEFINED__
  149. /* library CLADMWIZLib */
  150. /* [helpstring][version][uuid] */
  151. EXTERN_C const IID LIBID_CLADMWIZLib;
  152. EXTERN_C const CLSID CLSID_ClusAppWiz;
  153. #ifdef __cplusplus
  154. class DECLSPEC_UUID("24F97150-6689-11D1-9AA7-00C04FB93A80")
  155. ClusAppWiz;
  156. #endif
  157. #endif /* __CLADMWIZLib_LIBRARY_DEFINED__ */
  158. /* Additional Prototypes for ALL interfaces */
  159. /* end of Additional Prototypes */
  160. #ifdef __cplusplus
  161. }
  162. #endif
  163. #endif