首页 > 代码库 > 使用dll,将image库开放出去
使用dll,将image库开放出去
这是很经典的想法了,但是如何来做,不经过摸索不知道细节。
最简单:
dll处
#include "stdafx.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#define DllExport _declspec (dllexport)
DllExport double aValue =http://www.mamicode.com/1.5;
DllExport int dlladd()
{
return 5;
}
DllExport int dlladd( int a,int b)
{
return a+b;
}
demo处
#define DllImport _declspec (dllimport)
// 用?于应|用?程序“关?于”菜?单项?的? CAboutDlg 对?话框
DllImport int dlladd( int a,int b);
配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。