home *** CD-ROM | disk | FTP | other *** search
- /* this ALWAYS GENERATED file contains the definitions for the interfaces */
-
-
- /* File created by MIDL compiler version 5.01.0164 */
- /* at Fri Jun 23 00:40:18 2000
- */
- /* Compiler settings for ivehandler.idl:
- Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
- error checks: allocation ref bounds_check enum stub_data , no_format_optimization
- */
- //@@MIDL_FILE_HEADING( )
-
-
- /* verify that the <rpcndr.h> version is high enough to compile this file*/
- #ifndef __REQUIRED_RPCNDR_H_VERSION__
- #define __REQUIRED_RPCNDR_H_VERSION__ 440
- #endif
-
- #include "rpc.h"
- #include "rpcndr.h"
-
- #ifndef __RPCNDR_H_VERSION__
- #error this stub requires an updated version of <rpcndr.h>
- #endif // __RPCNDR_H_VERSION__
-
- #ifndef COM_NO_WINDOWS_H
- #include "windows.h"
- #include "ole2.h"
- #endif /*COM_NO_WINDOWS_H*/
-
- #ifndef __ivehandler_h__
- #define __ivehandler_h__
-
- #ifdef __cplusplus
- extern "C"{
- #endif
-
- /* Forward Declarations */
-
- #ifndef __VEHandlerClass_FWD_DEFINED__
- #define __VEHandlerClass_FWD_DEFINED__
-
- #ifdef __cplusplus
- typedef class VEHandlerClass VEHandlerClass;
- #else
- typedef struct VEHandlerClass VEHandlerClass;
- #endif /* __cplusplus */
-
- #endif /* __VEHandlerClass_FWD_DEFINED__ */
-
-
- #ifndef __IVEHandler_FWD_DEFINED__
- #define __IVEHandler_FWD_DEFINED__
- typedef interface IVEHandler IVEHandler;
- #endif /* __IVEHandler_FWD_DEFINED__ */
-
-
- /* header files for imported files */
- #include "unknwn.h"
-
- void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
- void __RPC_USER MIDL_user_free( void __RPC_FAR * );
-
- /* interface __MIDL_itf_ivehandler_0000 */
- /* [local] */
-
- #pragma once
- typedef /* [public][public][public] */ struct __MIDL___MIDL_itf_ivehandler_0000_0001
- {
- unsigned long flags;
- unsigned long opcode;
- unsigned long uOffset;
- unsigned long Token;
- unsigned long item1_flags;
- int __RPC_FAR *item1_data;
- unsigned long item2_flags;
- int __RPC_FAR *item2_data;
- } _VerError;
-
- typedef _VerError VEContext;
-
-
-
-
- extern RPC_IF_HANDLE __MIDL_itf_ivehandler_0000_v0_0_c_ifspec;
- extern RPC_IF_HANDLE __MIDL_itf_ivehandler_0000_v0_0_s_ifspec;
-
-
- #ifndef __VEHandlerLib_LIBRARY_DEFINED__
- #define __VEHandlerLib_LIBRARY_DEFINED__
-
- /* library VEHandlerLib */
- /* [helpstring][version][uuid] */
-
-
- EXTERN_C const IID LIBID_VEHandlerLib;
-
- EXTERN_C const CLSID CLSID_VEHandlerClass;
-
- #ifdef __cplusplus
-
- class DECLSPEC_UUID("856CA1B1-7DAB-11d3-ACEC-00C04F86C309")
- VEHandlerClass;
- #endif
- #endif /* __VEHandlerLib_LIBRARY_DEFINED__ */
-
- #ifndef __IVEHandler_INTERFACE_DEFINED__
- #define __IVEHandler_INTERFACE_DEFINED__
-
- /* interface IVEHandler */
- /* [unique][uuid][object] */
-
-
- EXTERN_C const IID IID_IVEHandler;
-
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("856CA1B2-7DAB-11d3-ACEC-00C04F86C309")
- IVEHandler : public IUnknown
- {
- public:
- virtual HRESULT STDMETHODCALLTYPE VEHandler(
- /* [in] */ HRESULT VECode,
- /* [in] */ VEContext Context,
- /* [in] */ SAFEARRAY __RPC_FAR * psa) = 0;
-
- virtual HRESULT STDMETHODCALLTYPE SetReporterFtn(
- /* [in] */ long lFnPtr) = 0;
-
- };
-
- #else /* C style interface */
-
- typedef struct IVEHandlerVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- IVEHandler __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- IVEHandler __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- IVEHandler __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *VEHandler )(
- IVEHandler __RPC_FAR * This,
- /* [in] */ HRESULT VECode,
- /* [in] */ VEContext Context,
- /* [in] */ SAFEARRAY __RPC_FAR * psa);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *SetReporterFtn )(
- IVEHandler __RPC_FAR * This,
- /* [in] */ long lFnPtr);
-
- END_INTERFACE
- } IVEHandlerVtbl;
-
- interface IVEHandler
- {
- CONST_VTBL struct IVEHandlerVtbl __RPC_FAR *lpVtbl;
- };
-
-
-
- #ifdef COBJMACROS
-
-
- #define IVEHandler_QueryInterface(This,riid,ppvObject) \
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
-
- #define IVEHandler_AddRef(This) \
- (This)->lpVtbl -> AddRef(This)
-
- #define IVEHandler_Release(This) \
- (This)->lpVtbl -> Release(This)
-
-
- #define IVEHandler_VEHandler(This,VECode,Context,psa) \
- (This)->lpVtbl -> VEHandler(This,VECode,Context,psa)
-
- #define IVEHandler_SetReporterFtn(This,lFnPtr) \
- (This)->lpVtbl -> SetReporterFtn(This,lFnPtr)
-
- #endif /* COBJMACROS */
-
-
- #endif /* C style interface */
-
-
-
- HRESULT STDMETHODCALLTYPE IVEHandler_VEHandler_Proxy(
- IVEHandler __RPC_FAR * This,
- /* [in] */ HRESULT VECode,
- /* [in] */ VEContext Context,
- /* [in] */ SAFEARRAY __RPC_FAR * psa);
-
-
- void __RPC_STUB IVEHandler_VEHandler_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
-
-
- HRESULT STDMETHODCALLTYPE IVEHandler_SetReporterFtn_Proxy(
- IVEHandler __RPC_FAR * This,
- /* [in] */ long lFnPtr);
-
-
- void __RPC_STUB IVEHandler_SetReporterFtn_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
-
-
-
- #endif /* __IVEHandler_INTERFACE_DEFINED__ */
-
-
- /* Additional Prototypes for ALL interfaces */
-
- unsigned long __RPC_USER LPSAFEARRAY_UserSize( unsigned long __RPC_FAR *, unsigned long , LPSAFEARRAY __RPC_FAR * );
- unsigned char __RPC_FAR * __RPC_USER LPSAFEARRAY_UserMarshal( unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, LPSAFEARRAY __RPC_FAR * );
- unsigned char __RPC_FAR * __RPC_USER LPSAFEARRAY_UserUnmarshal(unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, LPSAFEARRAY __RPC_FAR * );
- void __RPC_USER LPSAFEARRAY_UserFree( unsigned long __RPC_FAR *, LPSAFEARRAY __RPC_FAR * );
-
- /* end of Additional Prototypes */
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-