mirror of
https://github.com/SSCLI/sscli_20021101
synced 2026-06-08 12:28:57 +00:00
9fa3874800
Moved the original file to the archive subfolder.
257 lines
6.0 KiB
C++
257 lines
6.0 KiB
C++
// ==++==
|
|
//
|
|
//
|
|
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
|
|
//
|
|
// The use and distribution terms for this software are contained in the file
|
|
// named license.txt, which can be found in the root of this distribution.
|
|
// By using this software in any fashion, you are agreeing to be bound by the
|
|
// terms of this license.
|
|
//
|
|
// You must not remove this notice, or any other, from this software.
|
|
//
|
|
//
|
|
// ==--==
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning( disable: 4049 ) /* more than 64k source lines */
|
|
#endif
|
|
|
|
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
|
|
|
|
|
|
/* File created by MIDL compiler version 6.00.0347 */
|
|
//@@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__
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
|
#pragma once
|
|
#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"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
void * __RPC_USER MIDL_user_allocate(size_t);
|
|
void __RPC_USER MIDL_user_free( void * );
|
|
|
|
/* interface __MIDL_itf_ivehandler_0000 */
|
|
/* [local] */
|
|
|
|
typedef struct tag_VerError
|
|
{
|
|
unsigned long flags;
|
|
unsigned long opcode;
|
|
unsigned long uOffset;
|
|
unsigned long Token;
|
|
unsigned long item1_flags;
|
|
int *item1_data;
|
|
unsigned long item2_flags;
|
|
int *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 * psa) = 0;
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE SetReporterFtn(
|
|
/* [in] */ __int64 lFnPtr) = 0;
|
|
|
|
};
|
|
|
|
#else /* C style interface */
|
|
|
|
typedef struct IVEHandlerVtbl
|
|
{
|
|
BEGIN_INTERFACE
|
|
|
|
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
|
|
IVEHandler * This,
|
|
/* [in] */ REFIID riid,
|
|
/* [iid_is][out] */ void **ppvObject);
|
|
|
|
ULONG ( STDMETHODCALLTYPE *AddRef )(
|
|
IVEHandler * This);
|
|
|
|
ULONG ( STDMETHODCALLTYPE *Release )(
|
|
IVEHandler * This);
|
|
|
|
HRESULT ( STDMETHODCALLTYPE *VEHandler )(
|
|
IVEHandler * This,
|
|
/* [in] */ HRESULT VECode,
|
|
/* [in] */ VEContext Context,
|
|
/* [in] */ SAFEARRAY * psa);
|
|
|
|
HRESULT ( STDMETHODCALLTYPE *SetReporterFtn )(
|
|
IVEHandler * This,
|
|
/* [in] */ __int64 lFnPtr);
|
|
|
|
END_INTERFACE
|
|
} IVEHandlerVtbl;
|
|
|
|
interface IVEHandler
|
|
{
|
|
CONST_VTBL struct IVEHandlerVtbl *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 * This,
|
|
/* [in] */ HRESULT VECode,
|
|
/* [in] */ VEContext Context,
|
|
/* [in] */ SAFEARRAY * psa);
|
|
|
|
|
|
void __RPC_STUB IVEHandler_VEHandler_Stub(
|
|
IRpcStubBuffer *This,
|
|
IRpcChannelBuffer *_pRpcChannelBuffer,
|
|
PRPC_MESSAGE _pRpcMessage,
|
|
DWORD *_pdwStubPhase);
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE IVEHandler_SetReporterFtn_Proxy(
|
|
IVEHandler * This,
|
|
/* [in] */ __int64 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 *, unsigned long , LPSAFEARRAY * );
|
|
unsigned char * __RPC_USER LPSAFEARRAY_UserMarshal( unsigned long *, unsigned char *, LPSAFEARRAY * );
|
|
unsigned char * __RPC_USER LPSAFEARRAY_UserUnmarshal(unsigned long *, unsigned char *, LPSAFEARRAY * );
|
|
void __RPC_USER LPSAFEARRAY_UserFree( unsigned long *, LPSAFEARRAY * );
|
|
|
|
/* end of Additional Prototypes */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|