转自: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++DLL创建与使用
本文详细介绍如何使用Visual C++创建并使用DLL文件。通过具体步骤演示了从创建DLL工程到实现函数导出及导入的过程,并展示了如何在一个独立的应用程序中调用DLL中的函数。
2万+

被折叠的 条评论
为什么被折叠?



