📄 txcoord.h
字号:
//.-------------------------------------------------------------------------
//.
//. Microsoft Windows
//. Copyright (C) Microsoft Corporation, 1995.
//.
//. File: txcoord.idl
//.
//. Contents: Transaction types and interfaces related to
//. transaction coordination.
//.
//.--------------------------------------------------------------------------
/* File created by MIDL compiler version 2.00.0102 */
/* at Wed Jan 24 15:45:40 1996
*/
//@@MIDL_FILE_HEADING( )
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __txcoord_h__
#define __txcoord_h__
#ifdef __cplusplus
extern "C"{
#endif
/* Forward Declarations */
#ifndef __ITransactionResourceAsync_FWD_DEFINED__
#define __ITransactionResourceAsync_FWD_DEFINED__
typedef interface ITransactionResourceAsync ITransactionResourceAsync;
#endif /* __ITransactionResourceAsync_FWD_DEFINED__ */
#ifndef __ITransactionResource_FWD_DEFINED__
#define __ITransactionResource_FWD_DEFINED__
typedef interface ITransactionResource ITransactionResource;
#endif /* __ITransactionResource_FWD_DEFINED__ */
#ifndef __ITransactionEnlistmentAsync_FWD_DEFINED__
#define __ITransactionEnlistmentAsync_FWD_DEFINED__
typedef interface ITransactionEnlistmentAsync ITransactionEnlistmentAsync;
#endif /* __ITransactionEnlistmentAsync_FWD_DEFINED__ */
#ifndef __ITransactionExportFactory_FWD_DEFINED__
#define __ITransactionExportFactory_FWD_DEFINED__
typedef interface ITransactionExportFactory ITransactionExportFactory;
#endif /* __ITransactionExportFactory_FWD_DEFINED__ */
#ifndef __ITransactionImportWhereabouts_FWD_DEFINED__
#define __ITransactionImportWhereabouts_FWD_DEFINED__
typedef interface ITransactionImportWhereabouts ITransactionImportWhereabouts;
#endif /* __ITransactionImportWhereabouts_FWD_DEFINED__ */
#ifndef __ITransactionExport_FWD_DEFINED__
#define __ITransactionExport_FWD_DEFINED__
typedef interface ITransactionExport ITransactionExport;
#endif /* __ITransactionExport_FWD_DEFINED__ */
#ifndef __ITransactionImport_FWD_DEFINED__
#define __ITransactionImport_FWD_DEFINED__
typedef interface ITransactionImport ITransactionImport;
#endif /* __ITransactionImport_FWD_DEFINED__ */
/* header files for imported files */
#include "transact.h"
void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
void __RPC_USER MIDL_user_free( void __RPC_FAR * );
/****************************************
* Generated header for interface: __MIDL__intf_0000
* at Wed Jan 24 15:45:40 1996
* using MIDL 2.00.0102
****************************************/
/* [local] */
/* size is 0 */
/* size is 0 */
/* size is 0 */
/* size is 0 */
/* size is 0 */
/* size is 0 */
extern RPC_IF_HANDLE __MIDL__intf_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL__intf_0000_v0_0_s_ifspec;
#ifndef __ITransactionResourceAsync_INTERFACE_DEFINED__
#define __ITransactionResourceAsync_INTERFACE_DEFINED__
/****************************************
* Generated header for interface: ITransactionResourceAsync
* at Wed Jan 24 15:45:40 1996
* using MIDL 2.00.0102
****************************************/
/* [unique][uuid][object] */
EXTERN_C const IID IID_ITransactionResourceAsync;
#if defined(__cplusplus) && !defined(CINTERFACE)
interface ITransactionResourceAsync : public IUnknown
{
public:
virtual HRESULT __stdcall PrepareRequest(
/* [in] */ BOOL fRetaining,
/* [in] */ DWORD grfRM,
/* [in] */ BOOL fWantMoniker,
/* [in] */ BOOL fSinglePhase) = 0;
virtual HRESULT __stdcall CommitRequest(
/* [in] */ DWORD grfRM,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW) = 0;
virtual HRESULT __stdcall AbortRequest(
/* [in] */ BOID __RPC_FAR *pboidReason,
/* [in] */ BOOL fRetaining,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW) = 0;
virtual HRESULT __stdcall TMDown( void) = 0;
};
#else /* C style interface */
typedef struct ITransactionResourceAsyncVtbl
{
HRESULT ( __stdcall __RPC_FAR *QueryInterface )(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( __stdcall __RPC_FAR *AddRef )(
ITransactionResourceAsync __RPC_FAR * This);
ULONG ( __stdcall __RPC_FAR *Release )(
ITransactionResourceAsync __RPC_FAR * This);
HRESULT ( __stdcall __RPC_FAR *PrepareRequest )(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ BOOL fRetaining,
/* [in] */ DWORD grfRM,
/* [in] */ BOOL fWantMoniker,
/* [in] */ BOOL fSinglePhase);
HRESULT ( __stdcall __RPC_FAR *CommitRequest )(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ DWORD grfRM,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW);
HRESULT ( __stdcall __RPC_FAR *AbortRequest )(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ BOID __RPC_FAR *pboidReason,
/* [in] */ BOOL fRetaining,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW);
HRESULT ( __stdcall __RPC_FAR *TMDown )(
ITransactionResourceAsync __RPC_FAR * This);
} ITransactionResourceAsyncVtbl;
interface ITransactionResourceAsync
{
CONST_VTBL struct ITransactionResourceAsyncVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define ITransactionResourceAsync_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define ITransactionResourceAsync_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define ITransactionResourceAsync_Release(This) \
(This)->lpVtbl -> Release(This)
#define ITransactionResourceAsync_PrepareRequest(This,fRetaining,grfRM,fWantMoniker,fSinglePhase) \
(This)->lpVtbl -> PrepareRequest(This,fRetaining,grfRM,fWantMoniker,fSinglePhase)
#define ITransactionResourceAsync_CommitRequest(This,grfRM,pNewUOW) \
(This)->lpVtbl -> CommitRequest(This,grfRM,pNewUOW)
#define ITransactionResourceAsync_AbortRequest(This,pboidReason,fRetaining,pNewUOW) \
(This)->lpVtbl -> AbortRequest(This,pboidReason,fRetaining,pNewUOW)
#define ITransactionResourceAsync_TMDown(This) \
(This)->lpVtbl -> TMDown(This)
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT __stdcall ITransactionResourceAsync_PrepareRequest_Proxy(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ BOOL fRetaining,
/* [in] */ DWORD grfRM,
/* [in] */ BOOL fWantMoniker,
/* [in] */ BOOL fSinglePhase);
void __RPC_STUB ITransactionResourceAsync_PrepareRequest_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT __stdcall ITransactionResourceAsync_CommitRequest_Proxy(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ DWORD grfRM,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW);
void __RPC_STUB ITransactionResourceAsync_CommitRequest_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT __stdcall ITransactionResourceAsync_AbortRequest_Proxy(
ITransactionResourceAsync __RPC_FAR * This,
/* [in] */ BOID __RPC_FAR *pboidReason,
/* [in] */ BOOL fRetaining,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW);
void __RPC_STUB ITransactionResourceAsync_AbortRequest_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT __stdcall ITransactionResourceAsync_TMDown_Proxy(
ITransactionResourceAsync __RPC_FAR * This);
void __RPC_STUB ITransactionResourceAsync_TMDown_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __ITransactionResourceAsync_INTERFACE_DEFINED__ */
#ifndef __ITransactionResource_INTERFACE_DEFINED__
#define __ITransactionResource_INTERFACE_DEFINED__
/****************************************
* Generated header for interface: ITransactionResource
* at Wed Jan 24 15:45:40 1996
* using MIDL 2.00.0102
****************************************/
/* [unique][uuid][object] */
EXTERN_C const IID IID_ITransactionResource;
#if defined(__cplusplus) && !defined(CINTERFACE)
interface ITransactionResource : public IUnknown
{
public:
virtual HRESULT __stdcall PrepareRequest(
/* [in] */ BOOL fRetaining,
/* [in] */ DWORD grfRM,
/* [in] */ BOOL fWantMoniker,
/* [in] */ BOOL fSinglePhase) = 0;
virtual HRESULT __stdcall CommitRequest(
/* [in] */ DWORD grfRM,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW) = 0;
virtual HRESULT __stdcall AbortRequest(
/* [in] */ BOID __RPC_FAR *pboidReason,
/* [in] */ BOOL fRetaining,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW) = 0;
virtual HRESULT __stdcall TMDown( void) = 0;
};
#else /* C style interface */
typedef struct ITransactionResourceVtbl
{
HRESULT ( __stdcall __RPC_FAR *QueryInterface )(
ITransactionResource __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( __stdcall __RPC_FAR *AddRef )(
ITransactionResource __RPC_FAR * This);
ULONG ( __stdcall __RPC_FAR *Release )(
ITransactionResource __RPC_FAR * This);
HRESULT ( __stdcall __RPC_FAR *PrepareRequest )(
ITransactionResource __RPC_FAR * This,
/* [in] */ BOOL fRetaining,
/* [in] */ DWORD grfRM,
/* [in] */ BOOL fWantMoniker,
/* [in] */ BOOL fSinglePhase);
HRESULT ( __stdcall __RPC_FAR *CommitRequest )(
ITransactionResource __RPC_FAR * This,
/* [in] */ DWORD grfRM,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW);
HRESULT ( __stdcall __RPC_FAR *AbortRequest )(
ITransactionResource __RPC_FAR * This,
/* [in] */ BOID __RPC_FAR *pboidReason,
/* [in] */ BOOL fRetaining,
/* [in] */ XACTUOW __RPC_FAR *pNewUOW);
HRESULT ( __stdcall __RPC_FAR *TMDown )(
ITransactionResource __RPC_FAR * This);
} ITransactionResourceVtbl;
interface ITransactionResource
{
CONST_VTBL struct ITransactionResourceVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define ITransactionResource_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define ITransactionResource_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define ITransactionResource_Release(This) \
(This)->lpVtbl -> Release(This)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -