欢迎来到天天文库
浏览记录
ID:42562688
大小:134.48 KB
页数:17页
时间:2019-09-17
《VS2005创建自己的DLL库》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、1VS2005创建DLL使用VS2005创建自己的动态链接库,这样就不用看到DLL文件有抵触情感了。一、打开VS2005软件,创建DLL工程。起名ceshi1.1)1)点击下一步,应用程序类型为DLL,空工程。2)完成,一个新的DLL工程设置完毕,接下来编辑源码添加头文件,命名为ceshi1.h,编辑内容:#ifndefCESHI1_H#defineCESHI1_H//防止重复定义#include//头文件引用#ifdefinedDLL_EXPORT//源文件需引用下一函数#defineDECLDIR__declspec(d
2、llexport)//就是这个#else#defineDECLDIR__declspec(dllimport)#endifextern"C"{DECLDIRintadd(inta,intb);//函数声明DECLDIRvoidfunction(void);}#endif解释:VC中有两种方式导出DLL文件中的函数1)使用__declspec关键字。2)创建模板定义文件(Module_DefinithionFile)即.def文件。在此使用第一种方法:__declspec(dllexport)作用是导出函数符号到DLL的一个存储类中。在头文件中定
3、义#defineDECLDIR__declspec(dllexport)宏来运行这个函数。使用条件编译,在源文件中宏定义#defineDLL_EXPORT来运行这个函数。//******************************************************************************创建源文件ceshi1.cpp#include#defineDLL_EXPORT#include"ceshi1.h"extern"C"{//定义Dll中的所有函数DECLDIRintadd(inta,
4、intb){returna+b;}DECLDIRvoidfunction(void){std::cout<<"DLLcalled"<5、:#pragmacomment(lib,"ceshi1.lib")//链接.lib文件#include"ceshi1.h"//包含dll的头文件#includeintmain(){function();std::cout<6、函数,不需要.lib文件和.h头文件。#include#includetypedefint(*AddFunc)(int,int);typedefvoid(*FunctionFunc)(void);//函数指针intmain(){AddFunc_AddFunc;FunctionFunc_FunctionFunc;//HINSTANCE实例句柄(即一个历程的入口地址)HINSTANCEhInstLibrary=LoadLibraryA("ceshi1.dll");//注意,此时的LoadLibraryA()7、窄字符集和LoadLibraryW()宽字符集的区别,后有介绍。if(hInstLibrary==NULL){FreeLibrary(hInstLibrary);//释放DLL获得的内存,若句柄无效}//获得函数的入口地址,还需类型转换_AddFunc=(AddFunc)GetProcAddress(hInstLibrary,"add");_FunctionFunc=(FunctionFunc)GetProcAddress(hInstLibrary,"function");if(_AddFunc==NULL8、9、_FunctionFunc==NU10、LL)//确定是否成功。{FreeLibrary(hInstLibrary);}std::cout<<_AddFunc(25,25)<
5、:#pragmacomment(lib,"ceshi1.lib")//链接.lib文件#include"ceshi1.h"//包含dll的头文件#includeintmain(){function();std::cout<6、函数,不需要.lib文件和.h头文件。#include#includetypedefint(*AddFunc)(int,int);typedefvoid(*FunctionFunc)(void);//函数指针intmain(){AddFunc_AddFunc;FunctionFunc_FunctionFunc;//HINSTANCE实例句柄(即一个历程的入口地址)HINSTANCEhInstLibrary=LoadLibraryA("ceshi1.dll");//注意,此时的LoadLibraryA()7、窄字符集和LoadLibraryW()宽字符集的区别,后有介绍。if(hInstLibrary==NULL){FreeLibrary(hInstLibrary);//释放DLL获得的内存,若句柄无效}//获得函数的入口地址,还需类型转换_AddFunc=(AddFunc)GetProcAddress(hInstLibrary,"add");_FunctionFunc=(FunctionFunc)GetProcAddress(hInstLibrary,"function");if(_AddFunc==NULL8、9、_FunctionFunc==NU10、LL)//确定是否成功。{FreeLibrary(hInstLibrary);}std::cout<<_AddFunc(25,25)<
6、函数,不需要.lib文件和.h头文件。#include#includetypedefint(*AddFunc)(int,int);typedefvoid(*FunctionFunc)(void);//函数指针intmain(){AddFunc_AddFunc;FunctionFunc_FunctionFunc;//HINSTANCE实例句柄(即一个历程的入口地址)HINSTANCEhInstLibrary=LoadLibraryA("ceshi1.dll");//注意,此时的LoadLibraryA()
7、窄字符集和LoadLibraryW()宽字符集的区别,后有介绍。if(hInstLibrary==NULL){FreeLibrary(hInstLibrary);//释放DLL获得的内存,若句柄无效}//获得函数的入口地址,还需类型转换_AddFunc=(AddFunc)GetProcAddress(hInstLibrary,"add");_FunctionFunc=(FunctionFunc)GetProcAddress(hInstLibrary,"function");if(_AddFunc==NULL
8、
9、_FunctionFunc==NU
10、LL)//确定是否成功。{FreeLibrary(hInstLibrary);}std::cout<<_AddFunc(25,25)<
此文档下载收益归作者所有