C/C 中动态链接库的创建和调用
2008-02-23 05:33:24来源:互联网 阅读 ()
一、创建Non-MFC DLL动态链接库
1、打开File —>
—>
2、新建一个.h文档DllDemo.h
Word-WRAP: break-Word" bgColor=#f3f3f3>以下是引用片段: #ifdef DllDemo_EXPORTS #define DllAPI __declspec(dllexport) #else #define DllAPI __declspec(dllimport) extern "C" //原样编译 { DllAPI int __stdcall Max(int a,int b); //__stdcall使非C/C } #endif |
3、在DllDemo.cpp文档中导入DllDemo.h文档,并实现Max(int,int)函数
以下是引用片段: #include "DllDemo.h" DllAPI int __stdcall Max(int a,int b) { if(a==b) return NULL; else if(a>b) return a; else return b; } |
4、编译程式生成动态连接库
二、用.def文档创建动态连接库DllDemo.dll。
1、删除DllDemo工程中的DllDemo.h文档。
2、在DllDemo.cpp文档头,删除 #include DllDemo.h语句。
3、向该工程中加入一个文本文档,命名为DllDemo.def并写入如下语句:
LIBRARY MyDll
EXPORTS
Max@1
4、编译程式生成动态连接库。动态链接的调用步骤:
一、隐式调用
1、 建立DllCnslTest
2、 将文档DllDemo.dll、DllDemo.lib拷贝到DllCnslTest工程所在的目录
3、 在DllCnslTest.h中添加如下语句:
Word-WRAP: break-Word" bgColor=#f3f3f3>以下是引用片段: #define DllAPI __declspec(dllimport) #pragma comment(lib,"DllDemo.lib") //在 extern "C" { DllAPI int __stdcall Max(int a,int b); } |
4、在DllCnslTest.cpp文档中添加如下语句:
以下是引用片段: #include "DllCnslTest.h"//或 #include "DllDemo.h" void main() { int value; value = Max(2,9); printf("The Max value is %d\n",value); } |
5、编译并生成
二、显式调用
1、 建立DllWinTest工程
2、 将文档DllDemo.dll拷贝到DllWinTest工程所在的目录或Windows
3、 用VC/bin下的DumPBin.exe的小程式,查看DLL文档(DllDemo.dll)中的函数结构。
4、 使用类型定义关键字typedef,定义指向和DLL中相同的函数原型指针。
例:
以下是引用片段: typedef int(*lpMax)(int a,int b); //此语句能够放在.h文档中 |
5、 通过LoadLibray()将DLL加载到当前的应用程式中并返回当前DLL文档的句柄。
例:
以下是引用片段: HINSTANCE hDll; //声明一个Dll实例文档句柄 hDll = LoadLibrary("DllDemo.dll");//导入DllDemo.dll动态连接库 |