VC创建DLL动态链接库 VC创建DLL动态链接库的方法
好人一个 人气:0想了解VC创建DLL动态链接库的方法的相关内容吗,好人一个在本文为您仔细讲解VC创建DLL动态链接库的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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程序设计有所帮助。
加载全部内容