一、DLL的导出
1、新建一个控制台DLL项目
2、添加.h,.cpp
.h中:
#define DllExport __declspec( dllexport )
class DllExport C
{
public:
int funcAdd(int a,int b);
int funcSub(int a, int b);
};
.cpp中:
#include "stdafx.h"
#include "name.h"
int C::funcAdd(int a, int b)
{
return a+b;
}
int C::funcSub(int a, int b)
{
return a - b;
}
二、DLL测试
建一个控制台项目,提取上面的.h,.cpp,.lib,.dll,修改属性,然后调用即可。