服务器之家

服务器之家 > 正文

VC创建DLL动态链接库的方法

时间:2021-02-26 14:52     来源/作者:好人一个

本文实例讲述了VC创建DLL动态链接库的方法。分享给大家供大家参考。具体实现方法如下:

头文件中声明 t.h

?
1
2
3
4
5
6
#ifdef DLL_API
#else
#define DLL_API extern "C" _declspec(dllimport)
#endif
DLL_API int a(int cnt);
DLL_API int b(int cnt);

.h文件引入

?
1
2
#define DLL_API extern "C" _declspec(dllexport)
#include "t.h"

cpp文件中写函数体

?
1
2
3
4
5
6
7
8
9
10
#define DLL_API extern "C" _declspec(dllexport)
#include "t.h"
int a(int cnt)
{
return cnt+1;
}
int b(int cnt)
{
return cnt+10;
}

希望本文所述对大家的VC程序设计有所帮助。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部