📄 objectmodel.h
字号:
/* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
IDocuments __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] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *AddDocument )(
IDocuments __RPC_FAR * This,
/* [retval][out] */ IDocument __RPC_FAR *__RPC_FAR *ppDocument);
/* [propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Count )(
IDocuments __RPC_FAR * This,
/* [retval][out] */ long __RPC_FAR *pnCount);
/* [propget][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Item )(
IDocuments __RPC_FAR * This,
/* [in] */ long n,
/* [retval][out] */ IDocument __RPC_FAR *__RPC_FAR *ppdoc);
/* [propget][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get__NewEnum )(
IDocuments __RPC_FAR * This,
/* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *ppEnum);
END_INTERFACE
} IDocumentsVtbl;
interface IDocuments
{
CONST_VTBL struct IDocumentsVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define IDocuments_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IDocuments_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IDocuments_Release(This) \
(This)->lpVtbl -> Release(This)
#define IDocuments_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define IDocuments_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define IDocuments_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define IDocuments_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define IDocuments_AddDocument(This,ppDocument) \
(This)->lpVtbl -> AddDocument(This,ppDocument)
#define IDocuments_get_Count(This,pnCount) \
(This)->lpVtbl -> get_Count(This,pnCount)
#define IDocuments_get_Item(This,n,ppdoc) \
(This)->lpVtbl -> get_Item(This,n,ppdoc)
#define IDocuments_get__NewEnum(This,ppEnum) \
(This)->lpVtbl -> get__NewEnum(This,ppEnum)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IDocuments_AddDocument_Proxy(
IDocuments __RPC_FAR * This,
/* [retval][out] */ IDocument __RPC_FAR *__RPC_FAR *ppDocument);
void __RPC_STUB IDocuments_AddDocument_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [propget] */ HRESULT STDMETHODCALLTYPE IDocuments_get_Count_Proxy(
IDocuments __RPC_FAR * This,
/* [retval][out] */ long __RPC_FAR *pnCount);
void __RPC_STUB IDocuments_get_Count_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [propget][id] */ HRESULT STDMETHODCALLTYPE IDocuments_get_Item_Proxy(
IDocuments __RPC_FAR * This,
/* [in] */ long n,
/* [retval][out] */ IDocument __RPC_FAR *__RPC_FAR *ppdoc);
void __RPC_STUB IDocuments_get_Item_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [propget][id] */ HRESULT STDMETHODCALLTYPE IDocuments_get__NewEnum_Proxy(
IDocuments __RPC_FAR * This,
/* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *ppEnum);
void __RPC_STUB IDocuments_get__NewEnum_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IDocuments_INTERFACE_DEFINED__ */
#ifndef __IApplication_INTERFACE_DEFINED__
#define __IApplication_INTERFACE_DEFINED__
/* interface IApplication */
/* [unique][helpstring][dual][uuid][object] */
EXTERN_C const IID IID_IApplication;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("CB693B70-80E2-11D2-987D-00600823CFFB")
IApplication : public IDispatch
{
public:
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Documents(
/* [retval][out] */ IDocuments __RPC_FAR *__RPC_FAR *pVal) = 0;
};
#else /* C style interface */
typedef struct IApplicationVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
IApplication __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
IApplication __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
IApplication __RPC_FAR * This);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
IApplication __RPC_FAR * This,
/* [out] */ UINT __RPC_FAR *pctinfo);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
IApplication __RPC_FAR * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
IApplication __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 )(
IApplication __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_Documents )(
IApplication __RPC_FAR * This,
/* [retval][out] */ IDocuments __RPC_FAR *__RPC_FAR *pVal);
END_INTERFACE
} IApplicationVtbl;
interface IApplication
{
CONST_VTBL struct IApplicationVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define IApplication_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IApplication_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IApplication_Release(This) \
(This)->lpVtbl -> Release(This)
#define IApplication_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define IApplication_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define IApplication_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define IApplication_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define IApplication_get_Documents(This,pVal) \
(This)->lpVtbl -> get_Documents(This,pVal)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IApplication_get_Documents_Proxy(
IApplication __RPC_FAR * This,
/* [retval][out] */ IDocuments __RPC_FAR *__RPC_FAR *pVal);
void __RPC_STUB IApplication_get_Documents_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IApplication_INTERFACE_DEFINED__ */
#ifndef __OBJECTMODELLib_LIBRARY_DEFINED__
#define __OBJECTMODELLib_LIBRARY_DEFINED__
/* library OBJECTMODELLib */
/* [helpstring][version][uuid] */
EXTERN_C const IID LIBID_OBJECTMODELLib;
EXTERN_C const CLSID CLSID_Document;
#ifdef __cplusplus
class DECLSPEC_UUID("CB693B6D-80E2-11D2-987D-00600823CFFB")
Document;
#endif
EXTERN_C const CLSID CLSID_Documents;
#ifdef __cplusplus
class DECLSPEC_UUID("CB693B6F-80E2-11D2-987D-00600823CFFB")
Documents;
#endif
EXTERN_C const CLSID CLSID_Application;
#ifdef __cplusplus
class DECLSPEC_UUID("CB693B71-80E2-11D2-987D-00600823CFFB")
Application;
#endif
#endif /* __OBJECTMODELLib_LIBRARY_DEFINED__ */
/* Additional Prototypes for ALL interfaces */
unsigned long __RPC_USER BSTR_UserSize( unsigned long __RPC_FAR *, unsigned long , BSTR __RPC_FAR * );
unsigned char __RPC_FAR * __RPC_USER BSTR_UserMarshal( unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, BSTR __RPC_FAR * );
unsigned char __RPC_FAR * __RPC_USER BSTR_UserUnmarshal(unsigned long __RPC_FAR *, unsigned char __RPC_FAR *, BSTR __RPC_FAR * );
void __RPC_USER BSTR_UserFree( unsigned long __RPC_FAR *, BSTR __RPC_FAR * );
/* end of Additional Prototypes */
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -