当前位置:首页 > 通信资讯 > 正文

vc添加动态链接库(dll动态链接库文件编写)

本文实例讲述了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程序设计有所帮助。

如果您对该产品感兴趣,请填写办理(客服微信:xiaoxiongyidong)

为您推荐:

发表评论

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。