pluginCmd.inc
资源名称:IE_VB.rar [点击查看]
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:2k
源码类别:
浏览器
开发平台:
Visual Basic
- //---------------------------------------------------------------------------------------
- // Module : ILEpluginCmd
- // DateTime : 2005-5-13 12:22
- // Author : Lingll
- // Purpose : 命令方式的插件
- //---------------------------------------------------------------------------------------
- interface ILEpluginCmd;
- [
- odl,
- uuid(13CC758D-2258-4A80-A6DD-BE9C177B765A),
- helpstring("命令方式的插件")
- ]
- interface ILEpluginCmd : stdole.IDispatch
- {
- //---------------------------------------------------------------------------------------
- // Procedure : RunCommand
- // DateTime : 2005-5-13 12:21
- // Author : Lingll
- // Purpose : 执行命令
- //---------------------------------------------------------------------------------------
- [helpstring("执行命令")]
- HRESULT RunCommand(
- [in , defaultvalue(0)] long lParam,
- [out, retval] boolean *rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : SetSite
- // DateTime : 2005-5-13 12:22
- // Author : Lingll
- // Purpose :
- //---------------------------------------------------------------------------------------
- [helpstring("初始化")]
- HRESULT SetSite(
- [in] stdole.IUnknown *pUnkSite,
- [in] ILEInfo *vOutPort
- );
- //---------------------------------------------------------------------------------------
- // Procedure : ShowOption
- // DateTime : 2005-5-13 16:08
- // Author : Lingll
- // Purpose : 显示设置窗口
- //---------------------------------------------------------------------------------------
- [helpstring("显示设置")]
- HRESULT ShowOption(
- );
- //---------------------------------------------------------------------------------------
- // Procedure : SendMessage
- // DateTime : 2005-8-15 01:27
- // Author : Lingll
- // Purpose : 全能型函数,方便日后扩展
- //---------------------------------------------------------------------------------------
- [helpstring("方便日后扩展")]
- HRESULT SendMessage(
- [in] long uMsg,
- [in] long wParam,
- [in] long lParam,
- [out, retval] long *rtn
- );
- };