VC创建DLL动态链接库的方法
VC创建DLL动态链接库的方法
发布时间:2016-12-28 来源:查字典编辑
摘要:本文实例讲述了VC创建DLL动态链接库的方法。分享给大家供大家参考。具体实现方法如下:头文件中声明t.h#ifdefDLL_API#else...

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

头文件中声明 t.h

#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文件引入

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

cpp文件中写函数体

#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程序设计有所帮助。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新C语言学习
热门C语言学习
编程开发子分类