使用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
请按任意键继续. . .

你可能感兴趣的:(c,File,Class,dll,Build,library)