StructDemo.h
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:7k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. /* this ALWAYS GENERATED file contains the definitions for the interfaces */
  2. /* File created by MIDL compiler version 5.01.0164 */
  3. /* at Fri Feb 26 13:45:02 2010
  4.  */
  5. /* Compiler settings for D:VCday11StructDemoStructDemo.idl:
  6.     Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
  7.     error checks: allocation ref bounds_check enum stub_data 
  8. */
  9. //@@MIDL_FILE_HEADING(  )
  10. /* verify that the <rpcndr.h> version is high enough to compile this file*/
  11. #ifndef __REQUIRED_RPCNDR_H_VERSION__
  12. #define __REQUIRED_RPCNDR_H_VERSION__ 440
  13. #endif
  14. #include "rpc.h"
  15. #include "rpcndr.h"
  16. #ifndef __RPCNDR_H_VERSION__
  17. #error this stub requires an updated version of <rpcndr.h>
  18. #endif // __RPCNDR_H_VERSION__
  19. #ifndef COM_NO_WINDOWS_H
  20. #include "windows.h"
  21. #include "ole2.h"
  22. #endif /*COM_NO_WINDOWS_H*/
  23. #ifndef __StructDemo_h__
  24. #define __StructDemo_h__
  25. #ifdef __cplusplus
  26. extern "C"{
  27. #endif 
  28. /* Forward Declarations */ 
  29. #ifndef __IMyStruct_FWD_DEFINED__
  30. #define __IMyStruct_FWD_DEFINED__
  31. typedef interface IMyStruct IMyStruct;
  32. #endif  /* __IMyStruct_FWD_DEFINED__ */
  33. #ifndef __MyStruct_FWD_DEFINED__
  34. #define __MyStruct_FWD_DEFINED__
  35. #ifdef __cplusplus
  36. typedef class MyStruct MyStruct;
  37. #else
  38. typedef struct MyStruct MyStruct;
  39. #endif /* __cplusplus */
  40. #endif  /* __MyStruct_FWD_DEFINED__ */
  41. /* header files for imported files */
  42. #include "oaidl.h"
  43. #include "ocidl.h"
  44. void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
  45. void __RPC_USER MIDL_user_free( void __RPC_FAR * ); 
  46. /* interface __MIDL_itf_StructDemo_0000 */
  47. /* [local] */ 
  48. typedef struct  StPerson
  49.     {
  50.     BSTR name;
  51.     UINT age;
  52.     BSTR sex;
  53.     } StPerson;
  54. extern RPC_IF_HANDLE __MIDL_itf_StructDemo_0000_v0_0_c_ifspec;
  55. extern RPC_IF_HANDLE __MIDL_itf_StructDemo_0000_v0_0_s_ifspec;
  56. #ifndef __IMyStruct_INTERFACE_DEFINED__
  57. #define __IMyStruct_INTERFACE_DEFINED__
  58. /* interface IMyStruct */
  59. /* [unique][helpstring][dual][uuid][object] */ 
  60. EXTERN_C const IID IID_IMyStruct;
  61. #if defined(__cplusplus) && !defined(CINTERFACE)
  62.     
  63.     MIDL_INTERFACE("4FB1A9EF-DBC7-498F-824D-1FEACA15E5A9")
  64.     IMyStruct : public IDispatch
  65.     {
  66.     public:
  67.         virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE GetPersonById( 
  68.             /* [in] */ UINT id,
  69.             /* [out] */ StPerson __RPC_FAR *__RPC_FAR *Result) = 0;
  70.         
  71.     };
  72.     
  73. #else  /* C style interface */
  74.     typedef struct IMyStructVtbl
  75.     {
  76.         BEGIN_INTERFACE
  77.         
  78.         HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )( 
  79.             IMyStruct __RPC_FAR * This,
  80.             /* [in] */ REFIID riid,
  81.             /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
  82.         
  83.         ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )( 
  84.             IMyStruct __RPC_FAR * This);
  85.         
  86.         ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )( 
  87.             IMyStruct __RPC_FAR * This);
  88.         
  89.         HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )( 
  90.             IMyStruct __RPC_FAR * This,
  91.             /* [out] */ UINT __RPC_FAR *pctinfo);
  92.         
  93.         HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )( 
  94.             IMyStruct __RPC_FAR * This,
  95.             /* [in] */ UINT iTInfo,
  96.             /* [in] */ LCID lcid,
  97.             /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
  98.         
  99.         HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )( 
  100.             IMyStruct __RPC_FAR * This,
  101.             /* [in] */ REFIID riid,
  102.             /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
  103.             /* [in] */ UINT cNames,
  104.             /* [in] */ LCID lcid,
  105.             /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
  106.         
  107.         /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )( 
  108.             IMyStruct __RPC_FAR * This,
  109.             /* [in] */ DISPID dispIdMember,
  110.             /* [in] */ REFIID riid,
  111.             /* [in] */ LCID lcid,
  112.             /* [in] */ WORD wFlags,
  113.             /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
  114.             /* [out] */ VARIANT __RPC_FAR *pVarResult,
  115.             /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
  116.             /* [out] */ UINT __RPC_FAR *puArgErr);
  117.         
  118.         /* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetPersonById )( 
  119.             IMyStruct __RPC_FAR * This,
  120.             /* [in] */ UINT id,
  121.             /* [out] */ StPerson __RPC_FAR *__RPC_FAR *Result);
  122.         
  123.         END_INTERFACE
  124.     } IMyStructVtbl;
  125.     interface IMyStruct
  126.     {
  127.         CONST_VTBL struct IMyStructVtbl __RPC_FAR *lpVtbl;
  128.     };
  129.     
  130. #ifdef COBJMACROS
  131. #define IMyStruct_QueryInterface(This,riid,ppvObject)
  132.     (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  133. #define IMyStruct_AddRef(This)
  134.     (This)->lpVtbl -> AddRef(This)
  135. #define IMyStruct_Release(This)
  136.     (This)->lpVtbl -> Release(This)
  137. #define IMyStruct_GetTypeInfoCount(This,pctinfo)
  138.     (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
  139. #define IMyStruct_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
  140.     (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
  141. #define IMyStruct_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
  142.     (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
  143. #define IMyStruct_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
  144.     (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
  145. #define IMyStruct_GetPersonById(This,id,Result)
  146.     (This)->lpVtbl -> GetPersonById(This,id,Result)
  147. #endif /* COBJMACROS */
  148. #endif  /* C style interface */
  149. /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IMyStruct_GetPersonById_Proxy( 
  150.     IMyStruct __RPC_FAR * This,
  151.     /* [in] */ UINT id,
  152.     /* [out] */ StPerson __RPC_FAR *__RPC_FAR *Result);
  153. void __RPC_STUB IMyStruct_GetPersonById_Stub(
  154.     IRpcStubBuffer *This,
  155.     IRpcChannelBuffer *_pRpcChannelBuffer,
  156.     PRPC_MESSAGE _pRpcMessage,
  157.     DWORD *_pdwStubPhase);
  158. #endif  /* __IMyStruct_INTERFACE_DEFINED__ */
  159. #ifndef __STRUCTDEMOLib_LIBRARY_DEFINED__
  160. #define __STRUCTDEMOLib_LIBRARY_DEFINED__
  161. /* library STRUCTDEMOLib */
  162. /* [helpstring][version][uuid] */ 
  163. EXTERN_C const IID LIBID_STRUCTDEMOLib;
  164. EXTERN_C const CLSID CLSID_MyStruct;
  165. #ifdef __cplusplus
  166. class DECLSPEC_UUID("0C704694-9121-496F-B635-FD4B3BAD4C53")
  167. MyStruct;
  168. #endif
  169. #endif /* __STRUCTDEMOLib_LIBRARY_DEFINED__ */
  170. /* Additional Prototypes for ALL interfaces */
  171. unsigned long             __RPC_USER  BSTR_UserSize(     unsigned long __RPC_FAR *, unsigned long            , BSTR __RPC_FAR * ); 
  172. unsigned char __RPC_FAR * __RPC_USER  BSTR_UserMarshal(  unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, BSTR __RPC_FAR * ); 
  173. unsigned char __RPC_FAR * __RPC_USER  BSTR_UserUnmarshal(unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, BSTR __RPC_FAR * ); 
  174. void                      __RPC_USER  BSTR_UserFree(     unsigned long __RPC_FAR *, BSTR __RPC_FAR * ); 
  175. /* end of Additional Prototypes */
  176. #ifdef __cplusplus
  177. }
  178. #endif
  179. #endif