📄 exdisp.h
字号:
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_Type(
/* [retval][out] */ BSTR *Type) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_Left(
/* [retval][out] */ long *pl) = 0;
virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Left(
/* [in] */ long Left) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_Top(
/* [retval][out] */ long *pl) = 0;
virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Top(
/* [in] */ long Top) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_Width(
/* [retval][out] */ long *pl) = 0;
virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Width(
/* [in] */ long Width) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_Height(
/* [retval][out] */ long *pl) = 0;
virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Height(
/* [in] */ long Height) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_LocationName(
/* [retval][out] */ BSTR *LocationName) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_LocationURL(
/* [retval][out] */ BSTR *LocationURL) = 0;
virtual /* [helpcontext][helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_Busy(
/* [retval][out] */ VARIANT_BOOL *pBool) = 0;
};
#else /* C style interface */
typedef struct IWebBrowserVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IWebBrowser * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IWebBrowser * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IWebBrowser * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IWebBrowser * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IWebBrowser * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IWebBrowser * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
IWebBrowser * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *GoBack )(
IWebBrowser * This);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *GoForward )(
IWebBrowser * This);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *GoHome )(
IWebBrowser * This);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *GoSearch )(
IWebBrowser * This);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Navigate )(
IWebBrowser * This,
/* [in] */ BSTR URL,
/* [optional][in] */ VARIANT *Flags,
/* [optional][in] */ VARIANT *TargetFrameName,
/* [optional][in] */ VARIANT *PostData,
/* [optional][in] */ VARIANT *Headers);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Refresh )(
IWebBrowser * This);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Refresh2 )(
IWebBrowser * This,
/* [optional][in] */ VARIANT *Level);
/* [helpcontext][helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Stop )(
IWebBrowser * This);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Application )(
IWebBrowser * This,
/* [retval][out] */ IDispatch **ppDisp);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Parent )(
IWebBrowser * This,
/* [retval][out] */ IDispatch **ppDisp);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Container )(
IWebBrowser * This,
/* [retval][out] */ IDispatch **ppDisp);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Document )(
IWebBrowser * This,
/* [retval][out] */ IDispatch **ppDisp);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_TopLevelContainer )(
IWebBrowser * This,
/* [retval][out] */ VARIANT_BOOL *pBool);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Type )(
IWebBrowser * This,
/* [retval][out] */ BSTR *Type);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Left )(
IWebBrowser * This,
/* [retval][out] */ long *pl);
/* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_Left )(
IWebBrowser * This,
/* [in] */ long Left);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Top )(
IWebBrowser * This,
/* [retval][out] */ long *pl);
/* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_Top )(
IWebBrowser * This,
/* [in] */ long Top);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Width )(
IWebBrowser * This,
/* [retval][out] */ long *pl);
/* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_Width )(
IWebBrowser * This,
/* [in] */ long Width);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Height )(
IWebBrowser * This,
/* [retval][out] */ long *pl);
/* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_Height )(
IWebBrowser * This,
/* [in] */ long Height);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_LocationName )(
IWebBrowser * This,
/* [retval][out] */ BSTR *LocationName);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_LocationURL )(
IWebBrowser * This,
/* [retval][out] */ BSTR *LocationURL);
/* [helpcontext][helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Busy )(
IWebBrowser * This,
/* [retval][out] */ VARIANT_BOOL *pBool);
END_INTERFACE
} IWebBrowserVtbl;
interface IWebBrowser
{
CONST_VTBL struct IWebBrowserVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IWebBrowser_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IWebBrowser_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IWebBrowser_Release(This) \
(This)->lpVtbl -> Release(This)
#define IWebBrowser_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define IWebBrowser_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define IWebBrowser_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define IWebBrowser_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define IWebBrowser_GoBack(This) \
(This)->lpVtbl -> GoBack(This)
#define IWebBrowser_GoForward(This) \
(This)->lpVtbl -> GoForward(This)
#define IWebBrowser_GoHome(This) \
(This)->lpVtbl -> GoHome(This)
#define IWebBrowser_GoSearch(This) \
(This)->lpVtbl -> GoSearch(This)
#define IWebBrowser_Navigate(This,URL,Flags,TargetFrameName,PostData,Headers) \
(This)->lpVtbl -> Navigate(This,URL,Flags,TargetFrameName,PostData,Headers)
#define IWebBrowser_Refresh(This) \
(This)->lpVtbl -> Refresh(This)
#define IWebBrowser_Refresh2(This,Level) \
(This)->lpVtbl -> Refresh2(This,Level)
#define IWebBrowser_Stop(This) \
(This)->lpVtbl -> Stop(This)
#define IWebBrowser_get_Application(This,ppDisp) \
(This)->lpVtbl -> get_Application(This,ppDisp)
#define IWebBrowser_get_Parent(This,ppDisp) \
(This)->lpVtbl -> get_Parent(This,ppDisp)
#define IWebBrowser_get_Container(This,ppDisp) \
(This)->lpVtbl -> get_Container(This,ppDisp)
#define IWebBrowser_get_Document(This,ppDisp) \
(This)->lpVtbl -> get_Document(This,ppDisp)
#define IWebBrowser_get_TopLevelContainer(This,pBool) \
(This)->lpVtbl -> get_TopLevelContainer(This,pBool)
#define IWebBrowser_get_Type(This,Type) \
(This)->lpVtbl -> get_Type(This,Type)
#define IWebBrowser_get_Left(This,pl) \
(This)->lpVtbl -> get_Left(This,pl)
#define IWebBrowser_put_Left(This,Left) \
(This)->lpVtbl -> put_Left(This,Left)
#define IWebBrowser_get_Top(This,pl) \
(This)->lpVtbl -> get_Top(This,pl)
#define IWebBrowser_put_Top(This,Top) \
(This)->lpVtbl -> put_Top(This,Top)
#define IWebBrowser_get_Width(This,pl) \
(This)->lpVtbl -> get_Width(This,pl)
#define IWebBrowser_put_Width(This,Width) \
(This)->lpVtbl -> put_Width(This,Width)
#define IWebBrowser_get_Height(This,pl) \
(This)->lpVtbl -> get_Height(This,pl)
#define IWebBrowser_put_Height(This,Height) \
(This)->lpVtbl -> put_Height(This,Height)
#define IWebBrowser_get_LocationName(This,LocationName) \
(This)->lpVtbl -> get_LocationName(This,LocationName)
#define IWebBrowser_get_LocationURL(This,LocationURL) \
(This)->lpVtbl -> get_LocationURL(This,LocationURL)
#define IWebBrowser_get_Busy(This,pBool) \
(This)->lpVtbl -> get_Busy(This,pBool)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_GoBack_Proxy(
IWebBrowser * This);
void __RPC_STUB IWebBrowser_GoBack_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_GoForward_Proxy(
IWebBrowser * This);
void __RPC_STUB IWebBrowser_GoForward_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_GoHome_Proxy(
IWebBrowser * This);
void __RPC_STUB IWebBrowser_GoHome_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_GoSearch_Proxy(
IWebBrowser * This);
void __RPC_STUB IWebBrowser_GoSearch_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_Navigate_Proxy(
IWebBrowser * This,
/* [in] */ BSTR URL,
/* [optional][in] */ VARIANT *Flags,
/* [optional][in] */ VARIANT *TargetFrameName,
/* [optional][in] */ VARIANT *PostData,
/* [optional][in] */ VARIANT *Headers);
void __RPC_STUB IWebBrowser_Navigate_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_Refresh_Proxy(
IWebBrowser * This);
void __RPC_STUB IWebBrowser_Refresh_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpcontext][helpstring][id] */ HRESULT STDMETHODCALLTYPE IWebBrowser_Refresh2_Proxy(
IWebBrowser * This,
/* [optional][in] */ VARIANT *Level);
void __RPC_STUB IWebBrowser_Refresh2_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -