网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VC++ > 正文
剖析插件技术
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式

    很多人对插件技术很感兴趣,这两天我对播放器的插件技术的原理做了些研究,现在就把一些心得写出来。
    插件原理就是通过统一的程序接口来调用不同的模块,以实现不同功能的调用。用来扩充主程序的功能。
    现在我们来谈谈它的实现 。

    插件技术的实现,一般都是先定义好一个接口结构。这个结构包含了主程序要引用的接口函数的指针。当然,这些接口函数的格式必须是事先定义好了的。而在插件Dll中一般只有一个导出函数,利用这个导出函数,我们可以得到接口结构的指针。
    这样主程序就可以通过指针来使用插件模块中的功能了。
    举个例子:
    我们先定义好包含接口函数的结构:

typedef struct PlugInModule{
DWORD Ver ;   file://版/本
char *Author ;   file://作/者说明
char *Description;      file://模/块说明
BYTE *InputPointer;  file://输/入数据 [in/out]
DWORD dwSize ;   file://输/入数据的大小 [in]
HWND hParentWnd ;  file://父/窗口 [in]
HINSTANCE hDllInst ; file://Dll/句柄 [in]
void (*PlugIn_Config)( struct PlugInModule * pModule ) ; file://设/置函数
void (*PlugIn_Init)( struct PlugInModule * pModule ) ;  file://初/始化函数
void (*PlugIn_Quit)( struct PlugInModule * pModule ) ;  file://退/出函数
void (*PlugIn_Run )( struct PlugInModule * pModule ) ;  file://执/行函数
} PlugInModule ;

还有申明Dll的导出函数:

typedef PlugInModule* (*GETPLUGINMODULE)();

这样,我们就定义好了一个插件的接口。


在插件Dll中,可以这样实现。

申明和定义接口函数。
file://函/数定义
void JhmDll_Config( struct PlugInModule * pModule ) ; file://设/置函数
void JhmDll_Init( struct PlugInModule * pModule ) ;  file://初/始化函数
void JhmDll_Quit( struct PlugInModule * pModule ) ;  file://退/出函数
void JhmDll_Run( struct PlugInModule * pModule ) ;  file://执/行函数

file://模/块函数实现
void JhmDll_Config( struct PlugInModule * pModule )
{
char szDisplay[260] ;
sprintf( szDisplay , "%s , config 模块" , pModule->Description ) ;
MessageBox( NULL , "config" , pModule->Author , MB_OK ) ;
}

void JhmDll_Init( struct PlugInModule * pModule )
{
char szDisplay[260] ;
sprintf( szDisplay , "%s , Init 模块" , pModule->Description ) ;
MessageBox( NULL , "Init" , pModule->Author , MB_OK ) ;
}

void JhmDll_Quit( struct PlugInModule * pModule )
{
char szDisplay[260] ;
sprintf( szDisplay , "%s , Quit 模块" , pModule->Description ) ;
MessageBox( NULL , "Quit" , pModule->Author , MB_OK ) ;
}

void JhmDll_Run( struct PlugInModule * pModule )
{
char szDisplay[260] ;
sprintf( szDisplay , "%s , Run 模块" , pModule->Description ) ;
MessageBox( NULL , "Run" , pModule->Author , MB_OK ) ;
}

这样,我们就定义好了接口函数。
当然,我们必须把它们加入到接口结构中去。

这样,再定义一个接口结构,并同时初始化:
file://初/始化接口
PlugInModule module =
{
0x0100 ,
"Tabl
  • 上一篇资讯: 标题栏上添加按钮
  • 下一篇资讯: Visual C++多线程DAO处理
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号