📄 mmc.h
字号:
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
IComponent __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
IComponent __RPC_FAR * This);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Initialize )(
IComponent __RPC_FAR * This,
/* [in] */ LPCONSOLE lpConsole);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Notify )(
IComponent __RPC_FAR * This,
/* [in] */ LPDATAOBJECT lpDataObject,
/* [in] */ MMC_NOTIFY_TYPE event,
/* [in] */ long arg,
/* [in] */ long param);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Destroy )(
IComponent __RPC_FAR * This,
/* [in] */ long cookie);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryDataObject )(
IComponent __RPC_FAR * This,
/* [in] */ long cookie,
/* [in] */ DATA_OBJECT_TYPES type,
/* [out] */ LPDATAOBJECT __RPC_FAR *ppDataObject);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetResultViewType )(
IComponent __RPC_FAR * This,
/* [in] */ long cookie,
/* [out] */ LPOLESTR __RPC_FAR *ppViewType,
/* [out] */ long __RPC_FAR *pViewOptions);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetDisplayInfo )(
IComponent __RPC_FAR * This,
/* [out][in] */ RESULTDATAITEM __RPC_FAR *pResultDataItem);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *CompareObjects )(
IComponent __RPC_FAR * This,
/* [in] */ LPDATAOBJECT lpDataObjectA,
/* [in] */ LPDATAOBJECT lpDataObjectB);
END_INTERFACE
} IComponentVtbl;
interface IComponent
{
CONST_VTBL struct IComponentVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define IComponent_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IComponent_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IComponent_Release(This) \
(This)->lpVtbl -> Release(This)
#define IComponent_Initialize(This,lpConsole) \
(This)->lpVtbl -> Initialize(This,lpConsole)
#define IComponent_Notify(This,lpDataObject,event,arg,param) \
(This)->lpVtbl -> Notify(This,lpDataObject,event,arg,param)
#define IComponent_Destroy(This,cookie) \
(This)->lpVtbl -> Destroy(This,cookie)
#define IComponent_QueryDataObject(This,cookie,type,ppDataObject) \
(This)->lpVtbl -> QueryDataObject(This,cookie,type,ppDataObject)
#define IComponent_GetResultViewType(This,cookie,ppViewType,pViewOptions) \
(This)->lpVtbl -> GetResultViewType(This,cookie,ppViewType,pViewOptions)
#define IComponent_GetDisplayInfo(This,pResultDataItem) \
(This)->lpVtbl -> GetDisplayInfo(This,pResultDataItem)
#define IComponent_CompareObjects(This,lpDataObjectA,lpDataObjectB) \
(This)->lpVtbl -> CompareObjects(This,lpDataObjectA,lpDataObjectB)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_Initialize_Proxy(
IComponent __RPC_FAR * This,
/* [in] */ LPCONSOLE lpConsole);
void __RPC_STUB IComponent_Initialize_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_Notify_Proxy(
IComponent __RPC_FAR * This,
/* [in] */ LPDATAOBJECT lpDataObject,
/* [in] */ MMC_NOTIFY_TYPE event,
/* [in] */ long arg,
/* [in] */ long param);
void __RPC_STUB IComponent_Notify_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_Destroy_Proxy(
IComponent __RPC_FAR * This,
/* [in] */ long cookie);
void __RPC_STUB IComponent_Destroy_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_QueryDataObject_Proxy(
IComponent __RPC_FAR * This,
/* [in] */ long cookie,
/* [in] */ DATA_OBJECT_TYPES type,
/* [out] */ LPDATAOBJECT __RPC_FAR *ppDataObject);
void __RPC_STUB IComponent_QueryDataObject_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_GetResultViewType_Proxy(
IComponent __RPC_FAR * This,
/* [in] */ long cookie,
/* [out] */ LPOLESTR __RPC_FAR *ppViewType,
/* [out] */ long __RPC_FAR *pViewOptions);
void __RPC_STUB IComponent_GetResultViewType_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_GetDisplayInfo_Proxy(
IComponent __RPC_FAR * This,
/* [out][in] */ RESULTDATAITEM __RPC_FAR *pResultDataItem);
void __RPC_STUB IComponent_GetDisplayInfo_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IComponent_CompareObjects_Proxy(
IComponent __RPC_FAR * This,
/* [in] */ LPDATAOBJECT lpDataObjectA,
/* [in] */ LPDATAOBJECT lpDataObjectB);
void __RPC_STUB IComponent_CompareObjects_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IComponent_INTERFACE_DEFINED__ */
#ifndef __IResultDataCompare_INTERFACE_DEFINED__
#define __IResultDataCompare_INTERFACE_DEFINED__
/* interface IResultDataCompare */
/* [unique][helpstring][uuid][object] */
EXTERN_C const IID IID_IResultDataCompare;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("E8315A52-7A1A-11D0-A2D2-00C04FD909DD")
IResultDataCompare : public IUnknown
{
public:
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Compare(
/* [in] */ long lUserParam,
/* [in] */ long cookieA,
/* [in] */ long cookieB,
/* [out][in] */ int __RPC_FAR *pnResult) = 0;
};
#else /* C style interface */
typedef struct IResultDataCompareVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
IResultDataCompare __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
IResultDataCompare __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
IResultDataCompare __RPC_FAR * This);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Compare )(
IResultDataCompare __RPC_FAR * This,
/* [in] */ long lUserParam,
/* [in] */ long cookieA,
/* [in] */ long cookieB,
/* [out][in] */ int __RPC_FAR *pnResult);
END_INTERFACE
} IResultDataCompareVtbl;
interface IResultDataCompare
{
CONST_VTBL struct IResultDataCompareVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define IResultDataCompare_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IResultDataCompare_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IResultDataCompare_Release(This) \
(This)->lpVtbl -> Release(This)
#define IResultDataCompare_Compare(This,lUserParam,cookieA,cookieB,pnResult) \
(This)->lpVtbl -> Compare(This,lUserParam,cookieA,cookieB,pnResult)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IResultDataCompare_Compare_Proxy(
IResultDataCompare __RPC_FAR * This,
/* [in] */ long lUserParam,
/* [in] */ long cookieA,
/* [in] */ long cookieB,
/* [out][in] */ int __RPC_FAR *pnResult);
void __RPC_STUB IResultDataCompare_Compare_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IResultDataCompare_INTERFACE_DEFINED__ */
#ifndef __IResultOwnerData_INTERFACE_DEFINED__
#define __IResultOwnerData_INTERFACE_DEFINED__
/* interface IResultOwnerData */
/* [unique][helpstring][uuid][object] */
EXTERN_C const IID IID_IResultOwnerData;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("9CB396D8-EA83-11d0-AEF1-00C04FB6DD2C")
IResultOwnerData : public IUnknown
{
public:
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE FindItem(
/* [in] */ LPRESULTFINDINFO pFindInfo,
/* [out] */ int __RPC_FAR *pnFoundIndex) = 0;
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE CacheHint(
/* [in] */ int nStartIndex,
/* [in] */ int nEndIndex) = 0;
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SortItems(
/* [in] */ int nColumn,
/* [in] */ DWORD dwSortOptions,
/* [in] */ long lUserParam) = 0;
};
#else /* C style interface */
typedef struct IResultOwnerDataVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
IResultOwnerData __RPC_FAR * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
IResultOwnerData __RPC_FAR * This);
ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
IResultOwnerData __RPC_FAR * This);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *FindItem )(
IResultOwnerData __RPC_FAR * This,
/* [in] */ LPRESULTFINDINFO pFindInfo,
/* [out] */ int __RPC_FAR *pnFoundIndex);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *CacheHint )(
IResultOwnerData __RPC_FAR * This,
/* [in] */ int nStartIndex,
/* [in] */ int nEndIndex);
/* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *SortItems )(
IResultOwnerData __RPC_FAR * This,
/* [in] */ int nColumn,
/* [in] */ DWORD dwSortOptions,
/* [in] */ long lUserParam);
END_INTERFACE
} IResultOwnerDataVtbl;
interface IResultOwnerData
{
CONST_VTBL struct IResultOwnerDataVtbl __RPC_FAR *lpVtbl;
};
#ifdef COBJMACROS
#define IResultOwnerData_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IResultOwnerData_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IResultOwnerData_Release(This) \
(This)->lpVtbl -> Release(This)
#define IResultOwnerData_FindItem(This,pFindInfo,pnFoundIndex) \
(This)->lpVtbl -> FindItem(This,pFindInfo,pnFoundIndex)
#define IResultOwnerData_CacheHint(This,nStartIndex,nEndIndex) \
(This)->lpVtbl -> CacheHint(This,nStartIndex,nEndIndex)
#define IResultOwnerData_SortItems(This,nColumn,dwSortOptions,lUserParam) \
(This)->lpVtbl -> SortItems(This,nColumn,dwSortOptions,lUserParam)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IResultOwnerData_FindItem_Proxy(
IResultOwnerData __RPC_FAR * This,
/* [in] */ LPRESULTFINDINFO pFindInfo,
/* [out] */ int __RPC_FAR *pnFoundIndex);
void __RPC_STUB IResultOwnerData_FindItem_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IResultOwnerData_CacheHint_Proxy(
IResultOwnerData __RPC_FAR * This,
/* [in] */ int nStartIndex,
/* [in] */ int nEndIndex);
void __RPC_STUB IResultOwnerData_CacheHint_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring] */ HRESULT STDMETHODCALLTYPE IResultOwnerData_SortItems_Proxy(
IResultOwnerData __RPC_FAR * This,
/* [in] */ int nColumn,
/* [in] */ DWORD dwSortOptions,
/* [in] */ long lUserParam);
void __RPC_STUB IResultOwnerData_SortItems_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IResultOwnerData_INTERFACE_DEFINED__ */
#ifndef __IConsole_INTERFACE_DEFINED__
#define __IConsole_INTERFACE_DEFINED__
/* interface IConsole */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -