静态,动态链接库的生成与应用
推荐:Windows核心编程---动态链接库(XX.dll)与静态库(XX.lib)
最近细读了Windows核心编程的内存管理与动态链接库部分,虽然有些人对Windows未来说三道四,但不得不承认微软windows系统的强大功能,以及其深邃的架构设计思想
一 静态链接库的生成与应用
在VC++6.0中new一个名称为libTest的staticlibrary工程,并新建lib.h和lib.cpp两个文件,lib.h和lib.cpp的源代码如下:
//文件:lib.h
#ifndef LIB_H
#define LIB_H
extern "C" int add(int x,int y); //声明为C编译、连接方式的外部函数
#endif
//文件:lib.cpp
#include "lib.h"
int add(int x,int y)
{
return x + y;
}
编译这个工程就得到了一个.lib文件,这个文件就是一个函数库,它提供了add的功能。将头文件和.lib文件提交给用户后,用户就可以直接使用其中的add函数了。
应用举例:
//新建一个libCall的win32工程,把生成的静态链接库放入该目录下面
//按平时一样编写代码
#include <stdio.h>
#include"..libCalllib.h"
#pragma comment( lib,"..\libCall\libTest.lib" )
//指定与静态库一起连接
int main(int argc, char* argv[])
{
printf("2 + 3 = %d
", add( 2, 3 ) );
}
二 动态链接库的生成与应用
// dllTest.cpp : Defines the entry pointfor the DLL application.
//建立生成动态链接库的工程dllTest
//编译生成动态链接库dllTest.dll,dllTest.lib
#include <stdio.h>
#pragma hdrstop
extern "C"_declspec(dllexport) int add(int x,int y);
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
return TRUE;
}
int add(int x,int y)
{
returnx + y;
}
//动态链接库的静态调用
//建立dllLibCall工程,把上面生成的dllTest.dll,dllTest.lib拷贝到该工程目录下
#include <stdio.h>
#pragma comment(lib,"..\dllLibCall\dllTest.lib")
extern "C" __declspec(dllimport)int __cdecl add(int x,int y);
int main()
{
printf("dllLibCall:2+ 3 = %d
",add(2,3));
return0;
}
运行结果:dllLibCall:2 + 3 = 5
//动态链接库的动态调用
//建立dllCall工程,把上面生成的dllTest.dll拷贝到该工程目录下
#include <stdio.h>
#include <windows.h>
int main()
{
HINSTANCE hModule;
hModule = LoadLibrary("..\dllCall\dllTest.dll");
if(hModule)
{
typedef int (*LPFNREGISTER)(int x, int y);
LPFNREGISTER lpfnRegister;
lpfnRegister= (LPFNREGISTER)GetProcAddress(hModule,"add");
if(lpfnRegister)
{
printf("dllCall:2+ 3 = %d
",lpfnRegister(2, 3));
}
}
FreeLibrary(hModule);
return0;
}
运行结果:dllCall:2 + 3 = 5 -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 补充的相关知识点: 动态链接库(DLL)是Windows编程常遇到的编程方法,下面我就介绍一下在BCB (C++Builder下简称BCB) 中如何创建使用DLL和一些技巧。
一、创建:
使用BCB File|NEW建立一个新的DLL工程,并保存好文件BCB,生成一个DLL的程序框架。
1.DllEntryPoint函数为一个入口方法,如果使用者在DLL被系统初始化或者注销时被调用,用来写入对DLL的初始化程序和卸载程序;参数:hinst用来指示DLL的基地址;reason用来指示DLL的调用方式,用于区别多线程单线程对DLL的调用、创建、卸载DLL;
2.在程序中加入自己所要创建的DLL过程、函数;
3.用dllimport描述出口;
例程序如下:
#include
#pragma hdrstop
extern “C” __declspec(dllexport) int test();
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
{
return 1;
}
int test()
{
return 3;
}
注意:动态链接库中调用过程、函数时有不同的CALL方式 __cdecl、 __pascal, __fastcall、__stdcall,BCB中默认的方式为__cdecl(可不写),如果考虑兼容性可用时__stdcall声明方法为:
extern “C” __declspec(dllexport) int __stdcall test();
对于其中过程、函数也改为:
int __stdcall test()
二、使用DLL
在BCB中使用DLL有两种方法:
1.用静态调用法
首先需要在BCB的项目中加入输入接口库(import library),打开工程项目,使用BCB View|Project Manager打开项目列表,向项目中加入接口库(*.lib)。
其次在头文件中加入接口声明。
例程序如下:
//define in include file
extern “C” __declspec(dllimport) int __cdecl test();
//use function in main program
int I;
I=test();
注意:
(1)动态链接库调用过程、函数时CALL方式 与创建时方式一样不写为__cdecl,其它需要声明。
(2)BCB创建的DLL有对应的输入接口库(import library),如只有DLL而无库时,可用BCB的implib工具产生:implib xxx.lib xxx.dll;另外可用:tlib xxx.lib,xxx.lst 产生DLL的内部函数列表,许多Windows的未公开技术就是用这种方法发现的。
2.动态调用法
动态调用法要用Windows API 中的LoadLibrary()和GetProcAddress()来调入DLL库,指出库中函数位置,这种方法较常见。
例程序如下:
HINSTANCE dd;
int _stdcall (*ddd)(void);
dd=LoadLibrary(“xxx.dll”);
ddd=GetProcAddress(dd,“test”);
Caption=IntToStr(ddd());
FreeLibrary(dd);
三、注意:
创建DLL时编译链接时注意设置Project Options。
Packages标签:去除Builder with runtime packages检查框。
Linker标签:去除Use dynamic RTL检查框。
否则创建的DLL需要Runtime packages or Runtime library。
一 静态链接库的生成与应用 在VC++6.0中new一个名称为libTest的staticlibrary工程,并新建lib.h和lib.cpp两个文件,lib.h和lib.cpp的源代码如下: //文件:lib.h#ifndef LIB_H#define LIB_H