码迷,mamicode.com
首页 > 其他好文 > 详细

使用dll,将image库开放出去

时间:2014-07-16 18:11:18      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   2014   

 这是很经典的想法了,但是如何来做,不经过摸索不知道细节。

 
最简单:
dll处
 
#include "stdafx.h"
 
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#define DllExport _declspec (dllexport)
 
DllExport double aValue =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);
配置bubuko.com,布布扣bubuko.com,布布扣

使用dll,将image库开放出去,布布扣,bubuko.com

使用dll,将image库开放出去

标签:style   blog   http   color   使用   2014   

原文地址:http://www.cnblogs.com/jsxyhelu/p/3847384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!