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

动态链接库DLL

时间:2015-01-02 23:38:18      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

静态链接库的使用方法:

示例代码:http://pan.baidu.com/s/1i303qZV

1.创建工程

技术分享

2.向工程中添加.cpp 和.h

3.头文件代码

#ifdef  MyDLL_API 

#else
#define  MyDLL_API _declspec(dllexport)

#endif
MyDLL_API int Add(int a,int b);
MyDLL_API int Sub(int a,int b);
4.CPP中的代码
#define  MyDLL_API _declspec(dllexport)
#include "DLL.h"
int Add(int a,int b)
{
	return a+b;
}	

int Sub(int a,int b)
{
	return a-b;
} 
静态链接库的调用:
1.讲.DLL .LIB  .H 复制到工程目录下
2.工程--设置--链接  将.lib文件添加到链接中 多个用空格隔开
3.添加头文件
4.直接使用方法

动态链接库DLL

标签:

原文地址:http://www.cnblogs.com/yuqilihualuo/p/4198977.html

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