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

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 Mon Feb 22 19:30:23 2010
  4.  */
  5. /* Compiler settings for C:VCday09myaddintermyaddinter.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 __myaddinter_h__
  24. #define __myaddinter_h__
  25. #ifdef __cplusplus
  26. extern "C"{
  27. #endif 
  28. /* Forward Declarations */ 
  29. #ifndef __IMyfirst_FWD_DEFINED__
  30. #define __IMyfirst_FWD_DEFINED__
  31. typedef interface IMyfirst IMyfirst;
  32. #endif  /* __IMyfirst_FWD_DEFINED__ */
  33. #ifndef __IHello_FWD_DEFINED__
  34. #define __IHello_FWD_DEFINED__
  35. typedef interface IHello IHello;
  36. #endif  /* __IHello_FWD_DEFINED__ */
  37. #ifndef __Myfirst_FWD_DEFINED__
  38. #define __Myfirst_FWD_DEFINED__
  39. #ifdef __cplusplus
  40. typedef class Myfirst Myfirst;
  41. #else
  42. typedef struct Myfirst Myfirst;
  43. #endif /* __cplusplus */
  44. #endif  /* __Myfirst_FWD_DEFINED__ */
  45. /* header files for imported files */
  46. #include "oaidl.h"
  47. #include "ocidl.h"
  48. void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
  49. void __RPC_USER MIDL_user_free( void __RPC_FAR * ); 
  50. #ifndef __IMyfirst_INTERFACE_DEFINED__
  51. #define __IMyfirst_INTERFACE_DEFINED__
  52. /* interface IMyfirst */
  53. /* [unique][helpstring][uuid][object] */ 
  54. EXTERN_C const IID IID_IMyfirst;
  55. #if defined(__cplusplus) && !defined(CINTERFACE)
  56.     
  57.     MIDL_INTERFACE("B5DC4864-4819-4C1F-9BBE-07CE523C5B42")
  58.     IMyfirst : public IUnknown
  59.     {
  60.     public:
  61.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE add( 
  62.             /* [in] */ int a,
  63.             /* [in] */ int b,
  64.             /* [out] */ int __RPC_FAR *c) = 0;
  65.         
  66.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE sub( 
  67.             /* [in] */ int a,
  68.             /* [in] */ int b,
  69.             /* [out] */ int __RPC_FAR *c) = 0;
  70.         
  71.     };
  72.     
  73. #else  /* C style interface */
  74.     typedef struct IMyfirstVtbl
  75.     {
  76.         BEGIN_INTERFACE
  77.         
  78.         HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )( 
  79.             IMyfirst __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.             IMyfirst __RPC_FAR * This);
  85.         
  86.         ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )( 
  87.             IMyfirst __RPC_FAR * This);
  88.         
  89.         /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *add )( 
  90.             IMyfirst __RPC_FAR * This,
  91.             /* [in] */ int a,
  92.             /* [in] */ int b,
  93.             /* [out] */ int __RPC_FAR *c);
  94.         
  95.         /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *sub )( 
  96.             IMyfirst __RPC_FAR * This,
  97.             /* [in] */ int a,
  98.             /* [in] */ int b,
  99.             /* [out] */ int __RPC_FAR *c);
  100.         
  101.         END_INTERFACE
  102.     } IMyfirstVtbl;
  103.     interface IMyfirst
  104.     {
  105.         CONST_VTBL struct IMyfirstVtbl __RPC_FAR *lpVtbl;
  106.     };
  107.     
  108. #ifdef COBJMACROS
  109. #define IMyfirst_QueryInterface(This,riid,ppvObject)
  110.     (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  111. #define IMyfirst_AddRef(This)
  112.     (This)->lpVtbl -> AddRef(This)
  113. #define IMyfirst_Release(This)
  114.     (This)->lpVtbl -> Release(This)
  115. #define IMyfirst_add(This,a,b,c)
  116.     (This)->lpVtbl -> add(This,a,b,c)
  117. #define IMyfirst_sub(This,a,b,c)
  118.     (This)->lpVtbl -> sub(This,a,b,c)
  119. #endif /* COBJMACROS */
  120. #endif  /* C style interface */
  121. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IMyfirst_add_Proxy( 
  122.     IMyfirst __RPC_FAR * This,
  123.     /* [in] */ int a,
  124.     /* [in] */ int b,
  125.     /* [out] */ int __RPC_FAR *c);
  126. void __RPC_STUB IMyfirst_add_Stub(
  127.     IRpcStubBuffer *This,
  128.     IRpcChannelBuffer *_pRpcChannelBuffer,
  129.     PRPC_MESSAGE _pRpcMessage,
  130.     DWORD *_pdwStubPhase);
  131. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IMyfirst_sub_Proxy( 
  132.     IMyfirst __RPC_FAR * This,
  133.     /* [in] */ int a,
  134.     /* [in] */ int b,
  135.     /* [out] */ int __RPC_FAR *c);
  136. void __RPC_STUB IMyfirst_sub_Stub(
  137.     IRpcStubBuffer *This,
  138.     IRpcChannelBuffer *_pRpcChannelBuffer,
  139.     PRPC_MESSAGE _pRpcMessage,
  140.     DWORD *_pdwStubPhase);
  141. #endif  /* __IMyfirst_INTERFACE_DEFINED__ */
  142. #ifndef __IHello_INTERFACE_DEFINED__
  143. #define __IHello_INTERFACE_DEFINED__
  144. /* interface IHello */
  145. /* [helpstring][uuid][object] */ 
  146. EXTERN_C const IID IID_IHello;
  147. #if defined(__cplusplus) && !defined(CINTERFACE)
  148.     
  149.     MIDL_INTERFACE("B5DC4864-4819-4C1F-9BBE-07CE523C5B45")
  150.     IHello : public IUnknown
  151.     {
  152.     public:
  153.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE hello( 
  154.             /* [in] */ BSTR name,
  155.             /* [out] */ BSTR __RPC_FAR *result) = 0;
  156.         
  157.     };
  158.     
  159. #else  /* C style interface */
  160.     typedef struct IHelloVtbl
  161.     {
  162.         BEGIN_INTERFACE
  163.         
  164.         HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )( 
  165.             IHello __RPC_FAR * This,
  166.             /* [in] */ REFIID riid,
  167.             /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
  168.         
  169.         ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )( 
  170.             IHello __RPC_FAR * This);
  171.         
  172.         ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )( 
  173.             IHello __RPC_FAR * This);
  174.         
  175.         /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *hello )( 
  176.             IHello __RPC_FAR * This,
  177.             /* [in] */ BSTR name,
  178.             /* [out] */ BSTR __RPC_FAR *result);
  179.         
  180.         END_INTERFACE
  181.     } IHelloVtbl;
  182.     interface IHello
  183.     {
  184.         CONST_VTBL struct IHelloVtbl __RPC_FAR *lpVtbl;
  185.     };
  186.     
  187. #ifdef COBJMACROS
  188. #define IHello_QueryInterface(This,riid,ppvObject)
  189.     (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  190. #define IHello_AddRef(This)
  191.     (This)->lpVtbl -> AddRef(This)
  192. #define IHello_Release(This)
  193.     (This)->lpVtbl -> Release(This)
  194. #define IHello_hello(This,name,result)
  195.     (This)->lpVtbl -> hello(This,name,result)
  196. #endif /* COBJMACROS */
  197. #endif  /* C style interface */
  198. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IHello_hello_Proxy( 
  199.     IHello __RPC_FAR * This,
  200.     /* [in] */ BSTR name,
  201.     /* [out] */ BSTR __RPC_FAR *result);
  202. void __RPC_STUB IHello_hello_Stub(
  203.     IRpcStubBuffer *This,
  204.     IRpcChannelBuffer *_pRpcChannelBuffer,
  205.     PRPC_MESSAGE _pRpcMessage,
  206.     DWORD *_pdwStubPhase);
  207. #endif  /* __IHello_INTERFACE_DEFINED__ */
  208. #ifndef __MYADDINTERLib_LIBRARY_DEFINED__
  209. #define __MYADDINTERLib_LIBRARY_DEFINED__
  210. /* library MYADDINTERLib */
  211. /* [helpstring][version][uuid] */ 
  212. EXTERN_C const IID LIBID_MYADDINTERLib;
  213. EXTERN_C const CLSID CLSID_Myfirst;
  214. #ifdef __cplusplus
  215. class DECLSPEC_UUID("5DBA4E48-6A44-4455-816C-A91491CAF625")
  216. Myfirst;
  217. #endif
  218. #endif /* __MYADDINTERLib_LIBRARY_DEFINED__ */
  219. /* Additional Prototypes for ALL interfaces */
  220. unsigned long             __RPC_USER  BSTR_UserSize(     unsigned long __RPC_FAR *, unsigned long            , BSTR __RPC_FAR * ); 
  221. unsigned char __RPC_FAR * __RPC_USER  BSTR_UserMarshal(  unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, BSTR __RPC_FAR * ); 
  222. unsigned char __RPC_FAR * __RPC_USER  BSTR_UserUnmarshal(unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, BSTR __RPC_FAR * ); 
  223. void                      __RPC_USER  BSTR_UserFree(     unsigned long __RPC_FAR *, BSTR __RPC_FAR * ); 
  224. /* end of Additional Prototypes */
  225. #ifdef __cplusplus
  226. }
  227. #endif
  228. #endif