使用VS2008创建一个DLL文件的方法

转自:http://wreck2005.spaces.live.com/Blog/cns!B02D9769BBDFE0F5!280.entry

1.新建一个C++工程(testDLL)
File -> New -> Project
-> Visual C++ -> Class Library

Name里面填testDLL

2.修改相关文件
将testDLL.h文件修改为
// testDLL.h
extern "C" int MyAdd(int a,int b);

将testDLL.cpp文件修改为
// This is the main DLL file.

#include "stdafx.h"

#include "testDLL.h"

int MyAdd(int a,int b)
{
return (a+b);
}

向工程里面添加testDLL.def文件,内容为
LIBRARY"testDLL"
EXPORTS
MyAdd @1

3.编译
选择 Build -> Build testDLL
此时在Debug目录下会出现testDLL.dll文件和testDLL.lib文件.

4.引用dll文件
新建一个test3工程,里面包含test3.cpp和testDLL.h文件,
testDLL.h的文件内容为:
// testDLL.h

#pragma comment(lib,"testDLL.lib")
extern "C" _declspec(dllimport) int MyAdd(int a,int b);


test3.cpp文件的内容如下:
#include <iostream>
using namespace std;

#include "testDLL.h"

void main()
{
int c = MyAdd(1,2);
cout<<"hello.1+2="<<c<<endl;
}

运行结果为:
hello.1+2=3
请按任意键继续. . .

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值