本文介绍了在VC中针对无LIB时的DLL隐式链接,制作可供VC++使用的LIB引入库。
具体步骤如下:
一、使用VC++的工具DUMPBIN将DLL中的导出函数表导出到一定义(.DEF)文件
DUMPBIN VideoDeCoder.dll /EXPROTS /OUT:VideoDeCoder.def
二、将导出的.DEF文件整理为一符合.DEF个数的函数导出文件
Dump of file VideoDeCoder.dll
File Type: DLL
Section contains the following exports for VideoDeCoder.dll
0 characteristics
3D49E48F time date stamp Fri Aug 02 09:46:55 2002
0.00 version
1 ordinal base
11 number of functions
11 number of names
ordinal hint RVA name
1 0 00010F60 _TM_ClearDecoderBuff@4
2 1 00010E80 _TM_CloseDecoder@4
3 2 00010F00 _TM_DecodePicture@4
4 3 00010ED0 _TM_DecodePictureHeader@4
5 4 00010FD0 _TM_GetFileEnd@4
6 5 00011030 _TM_GetUValue@4
Summary
2000 .data
1000 .rdata
1000 .reloc
15000 .text
按照以下方法整理:
1)添加LIB说明
LIBRARY "VideoDeCoder " ; "xx "为DLL名称
DESCRIPTION "VideoDeCoder library "
2)去掉导出函数说明端以外的内容,在LIB说明下添加 "EXPROTS " 说明导出函数
LIBRARY "VideoDeCoder "
DESCRIPTION "VideoDeCoder library "
EXPORTS
ordinal hint RVA name
1 0 00010F60 _TM_ClearDecoderBuff@4
2 1 00010E80 _TM_CloseDecoder@4
3 2 00010F00 _TM_DecodePicture@
4 3 00010ED0 _TM_DecodePictureH
5 4 00010FD0 _TM_GetFileEnd@4
6 5 00011030 _TM_GetUValue@4
3)将所有的函数放至第一列,去掉“hint”和“RVA”列数据,留下函数的序号"ordinal",在序号前加上"@ "符号形成“_导出函数名@参数字节和 @序号”此种格式(__stdcall 方式调用导出的函数符号是 "函数名称@参数字节和 ").
最后形成.DEF文件如下(其余部分全部删除,推荐用UltraEdit列模式进行编辑):
LIBRARY "VideoDeCoder "DESCRIPTION "VideoDeCoder library "
EXPORTS
TM_ClearDecoderBuff@4 @1
TM_CloseDecoder@4 @2
TM_DecodePicture@4 @3
TM_DecodePictureHeader@4 @4
TM_GetFileEnd@4 @5
TM_GetUValue@4 @6
TM_GetVValue@4 @7
TM_GetYValue@4 @8
TM_OpenDecoder@8 @9
TM_ReturnType@4 @10
TM_SetFileEnd@8 @11
EXAMPLE:
LIB /DEF:VideoDeCoder.def /MACHINE:IX86