欢迎来到天天文库
浏览记录
ID:14235210
大小:19.98 KB
页数:8页
时间:2018-07-27
《(转)bcb如何编写,调用动态链接库dll》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、(转)BCB如何编写,调用动态链接库DLL一编写动态链接库DLLDLL简称动态链接库,是Windows中程序的重要组成部分。想象一下,一个程序需要多人共同完成开发,怎么个共同法?这时我们就要考虑把程序分为好几个模块,团队每一个成员开发一个模块。问题来了:如何将模块组合并成一个完整系统?还有,我们开发的软件需要不断升级,如何升级?难道每次非得把整个工程重新编译一次再发布给用户吗?解决这些问题的科学办法,就是开发动态链接库DLL。现在以开发myDLL.dll动态链接库为例,讲讲BCB中开发动态链接库的方法。1、新建立一个工程:File-Ne
2、w-Other...在New卡中选择DLLWizard2、将工程存为myDLL.bpr3、在myDLL.cpp中写接口代码://-----------------------------------------------------------------#include#include#pragmahdrstop//-----------------------------------------------------------------// ImportantnoteaboutDLLme
3、morymanagementwhenyourDLLusesthe// staticversionoftheRunTimeLibrary:// IfyourDLLexportsanyfunctionsthatpassStringobjects(or//structs/classescontainingnestedStrings)asparameteror//functionresults,youwillneedtoaddthelibraryMEMMGR.LIBto//boththeDLLprojectandanyotherprojec
4、tsthatusetheDLL. You//willalsoneedtouseMEMMGR.LIB.ifanyotherprojectswhichuse//theDLLwillbeperformingnewordeleteoperationsonany//non-TObject-derivedclasseswhichareexportedfromthe// DLL.AddingMEMMGR.LIBtoyourprojectwillchangetheDLLandits//callingEXE'stousetheBORLNDMM.DLLa
5、stheirmemorymanager. In//thesecases,thefileBORLNDMM.DLLshouldbedeployedalongwith//yourDLL.// ToavoidusingBORLNDMM.DLL,passstringinformationusing"char//*"orShortStringparameters.// IfyourDLLusesthedynamicversionoftheRTL,youdonotneed//toexplicitlyaddMEMMGR.LIBasthiswillb
6、edoneimplicitlyfor//you//-------------------------------------------------------------------extern"C"__declspec(dllexport)__stdcallintmyAdd(int,int);extern"C"__declspec(dllexport)__stdcallAnsiStringaboutMe(void);intadd(intn1,intn2);#pragmaargsusedintWINAPIDllEntryPoint(H
7、INSTANCEhinst,unsignedlongreason,void*lpReserved){ return1;}////-----------------------------------------------------------------__declspec(dllexport)__stdcallintmyAdd(intn1,intn2){ intT; T=add(n1,n2); returnT;}intadd(intn1,intn2){ returnn1+n2;}__declspec(dllexport)__s
8、tdcallAnsiStringaboutMe(void){ return"你已经成功调用DLL!";}4、需要注意的是,在编写DLL这样的程序时,要力求简单,少用大量内存分配,尽量按照标准C的程序设计方法
此文档下载收益归作者所有