visual studio 创建 dll 文件

有两种 dll 函数导出方式。

Create a module definition (.def) file and use the .def file when building the DLL. Use this approach if you want to export functions from your DLL by ordinal rather than by name.
1.定义 .def 文件统一导出

Use the keyword __declspec(dllexport) in the function’s definition.
2.在导出的函数前面加上 __declspec(dllexport)


演示工程:
https://github.com/dss875914213/dll_demo


定义 .def 文件

至少需要编写两部分

  1. 定义名称
  2. 导出函数名称
LIBRARY   BTREE
EXPORTS
   Insert   @1
   Delete   @2
   Member   @3
   Min   @4

在这里插入图片描述

dll 和调用dll工程的调用约定需要一样,不然会报错,不识别导出的函数。
在这里插入图片描述


__declspec(dllexport)导出

__declspec(dllexport) int Add(int a, int b);
__declspec(dllexport)  int Add(int a, int b)
{
	return a + b;
}

使用 DUMPBIN 工具查看 dll 中导出的函数

The exports table of a DLL can be viewed by using the DUMPBIN tool with the /EXPORTS option.

1.打开下面的工具
在这里插入图片描述
2.运行下面的命令
DUMPBIN /EXPORTS xxx.dll
在这里插入图片描述

参考文献:

https://docs.microsoft.com/en-us/cpp/build/exporting-from-a-dll?view=msvc-160
https://blog.csdn.net/qq_21033779/article/details/79046826

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值