创建动态库的基本方法之一:
如创建动态库 “d.dll”
再.app 中: #define DLL_API _declspec(dllexport) //声明宏 表示是倒岀的函数
#include "d.h"
DLL_API int Add(int x,int y) //this is a example funtion
{
return x+y;
}
才.h中: #ifdef DLL_API
#else
#define DLL_API _declspec(dllimport)
#endif
DLL_API int Add(int x,int y);// 声明为导出函数已在客户端程序中应用
在客户端程序中的预编译头文件中stdafx.h 中加上:
#pragma comment(lib,"d.lib")
#include "d.h"
MFC 基本动态库的创建
最新推荐文章于 2023-06-14 14:49:58 发布