📄 confpriv.h
字号:
/* [in] */ REFIID riid,
/* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
ITLocalParticipant __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
ITLocalParticipant __RPC_FAR * This);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
ITLocalParticipant __RPC_FAR * This,
/* [out] */ UINT __RPC_FAR *pctinfo);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
/* [out] */ VARIANT __RPC_FAR *pVarResult,
/* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
/* [out] */ UINT __RPC_FAR *puArgErr);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_LocalParticipantTypedInfo )(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ PARTICIPANT_TYPED_INFO InfoType,
/* [retval][out] */ BSTR __RPC_FAR *ppInfo);
/* [helpstring][id][propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_LocalParticipantTypedInfo )(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ PARTICIPANT_TYPED_INFO InfoType,
/* [in] */ BSTR ppInfo);
END_INTERFACE
} ITLocalParticipantVtbl;
interface ITLocalParticipant
{
CONST_VTBL struct ITLocalParticipantVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define ITLocalParticipant_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define ITLocalParticipant_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define ITLocalParticipant_Release(This) \
(This)->lpVtbl -> Release(This)
#define ITLocalParticipant_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define ITLocalParticipant_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define ITLocalParticipant_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define ITLocalParticipant_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define ITLocalParticipant_get_LocalParticipantTypedInfo(This,InfoType,ppInfo) \
(This)->lpVtbl -> get_LocalParticipantTypedInfo(This,InfoType,ppInfo)
#define ITLocalParticipant_put_LocalParticipantTypedInfo(This,InfoType,ppInfo) \
(This)->lpVtbl -> put_LocalParticipantTypedInfo(This,InfoType,ppInfo)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE ITLocalParticipant_get_LocalParticipantTypedInfo_Proxy(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ PARTICIPANT_TYPED_INFO InfoType,
/* [retval][out] */ BSTR __RPC_FAR *ppInfo);
void __RPC_STUB ITLocalParticipant_get_LocalParticipantTypedInfo_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE ITLocalParticipant_put_LocalParticipantTypedInfo_Proxy(
ITLocalParticipant __RPC_FAR * This,
/* [in] */ PARTICIPANT_TYPED_INFO InfoType,
/* [in] */ BSTR ppInfo);
void __RPC_STUB ITLocalParticipant_put_LocalParticipantTypedInfo_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __ITLocalParticipant_INTERFACE_DEFINED__ */
#ifndef __IEnumParticipant_INTERFACE_DEFINED__
#define __IEnumParticipant_INTERFACE_DEFINED__
/* interface IEnumParticipant */
/* [object][unique][hidden][helpstring][uuid] */
EXTERN_C const IID IID_IEnumParticipant;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("0a91b56c-5a35-11d2-95a0-00a0244d2298")
IEnumParticipant : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE Next(
/* [in] */ ULONG celt,
/* [out] */ ITParticipant __RPC_FAR *__RPC_FAR *ppElements,
/* [full][out][in] */ ULONG __RPC_FAR *pceltFetched) = 0;
virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0;
virtual HRESULT STDMETHODCALLTYPE Skip(
/* [in] */ ULONG celt) = 0;
virtual HRESULT STDMETHODCALLTYPE Clone(
/* [retval][out] */ IEnumParticipant __RPC_FAR *__RPC_FAR *ppEnum) = 0;
};
#else /* C style interface */
typedef struct IEnumParticipantVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
IEnumParticipant __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
IEnumParticipant __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
IEnumParticipant __RPC_FAR * This);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Next )(
IEnumParticipant __RPC_FAR * This,
/* [in] */ ULONG celt,
/* [out] */ ITParticipant __RPC_FAR *__RPC_FAR *ppElements,
/* [full][out][in] */ ULONG __RPC_FAR *pceltFetched);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Reset )(
IEnumParticipant __RPC_FAR * This);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Skip )(
IEnumParticipant __RPC_FAR * This,
/* [in] */ ULONG celt);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Clone )(
IEnumParticipant __RPC_FAR * This,
/* [retval][out] */ IEnumParticipant __RPC_FAR *__RPC_FAR *ppEnum);
END_INTERFACE
} IEnumParticipantVtbl;
interface IEnumParticipant
{
CONST_VTBL struct IEnumParticipantVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define IEnumParticipant_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IEnumParticipant_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IEnumParticipant_Release(This) \
(This)->lpVtbl -> Release(This)
#define IEnumParticipant_Next(This,celt,ppElements,pceltFetched) \
(This)->lpVtbl -> Next(This,celt,ppElements,pceltFetched)
#define IEnumParticipant_Reset(This) \
(This)->lpVtbl -> Reset(This)
#define IEnumParticipant_Skip(This,celt) \
(This)->lpVtbl -> Skip(This,celt)
#define IEnumParticipant_Clone(This,ppEnum) \
(This)->lpVtbl -> Clone(This,ppEnum)
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IEnumParticipant_Next_Proxy(
IEnumParticipant __RPC_FAR * This,
/* [in] */ ULONG celt,
/* [out] */ ITParticipant __RPC_FAR *__RPC_FAR *ppElements,
/* [full][out][in] */ ULONG __RPC_FAR *pceltFetched);
void __RPC_STUB IEnumParticipant_Next_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IEnumParticipant_Reset_Proxy(
IEnumParticipant __RPC_FAR * This);
void __RPC_STUB IEnumParticipant_Reset_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IEnumParticipant_Skip_Proxy(
IEnumParticipant __RPC_FAR * This,
/* [in] */ ULONG celt);
void __RPC_STUB IEnumParticipant_Skip_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IEnumParticipant_Clone_Proxy(
IEnumParticipant __RPC_FAR * This,
/* [retval][out] */ IEnumParticipant __RPC_FAR *__RPC_FAR *ppEnum);
void __RPC_STUB IEnumParticipant_Clone_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IEnumParticipant_INTERFACE_DEFINED__ */
#ifndef __ITParticipantControl_INTERFACE_DEFINED__
#define __ITParticipantControl_INTERFACE_DEFINED__
/* interface ITParticipantControl */
/* [object][dual][unique][helpstring][uuid] */
EXTERN_C const IID IID_ITParticipantControl;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("d2ee6684-5a34-11d2-95a0-00a0244d2298")
ITParticipantControl : public IDispatch
{
public:
virtual /* [hidden][id] */ HRESULT STDMETHODCALLTYPE EnumerateParticipants(
/* [retval][out] */ IEnumParticipant __RPC_FAR *__RPC_FAR *ppEnumParticipants) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Participants(
/* [retval][out] */ VARIANT __RPC_FAR *pVariant) = 0;
};
#else /* C style interface */
typedef struct ITParticipantControlVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
ITParticipantControl __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
ITParticipantControl __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
ITParticipantControl __RPC_FAR * This);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
ITParticipantControl __RPC_FAR * This,
/* [out] */ UINT __RPC_FAR *pctinfo);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
ITParticipantControl __RPC_FAR * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
ITParticipantControl __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
ITParticipantControl __RPC_FAR * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
/* [out] */ VARIANT __RPC_FAR *pVarResult,
/* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
/* [out] */ UINT __RPC_FAR *puArgErr);
/* [hidden][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *EnumerateParticipants )(
ITParticipantControl __RPC_FAR * This,
/* [retval][out] */ IEnumParticipant __RPC_FAR *__RPC_FAR *ppEnumParticipants);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Participants )(
ITParticipantControl __RPC_FAR * This,
/* [retval][out] */ VARIANT __RPC_FAR *pVariant);
END_INTERFACE
} ITParticipantControlVtbl;
interface ITParticipantControl
{
CONST_VTBL struct ITParticipantControlVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define ITParticipantControl_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define ITParticipantControl_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define ITParticipantControl_Release(This) \
(This)->lpVtbl -> Release(This)
#define ITParticipantControl_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define ITParticipantControl_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define ITParticipantControl_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define ITParticipantControl_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define ITParticipantControl_EnumerateParticipants(This,ppEnumParticipants) \
(This)->lpVtbl -> EnumerateParticipants(This,ppEnumParticipants)
#define ITParticipantControl_get_Participants(This,pVariant) \
(This)->lpVtbl -> get_Participants(This,pVariant)
#endif /* COBJMACROS */
#endif /* C style interface */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -