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

2019/7/10 23:09:10

本文主要是介绍VC创建DLL动态链接库的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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



这篇关于VC创建DLL动态链接库的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程