dll创建和调用

创建:工作需要,创建了个非MFC的

注意的地方有:

1

class CMyCalc 
{
public:
 CMyCalc();
 virtual ~CMyCalc();

//__declspec(dllexport) int MyAdd(int x, int y);//不能写在这儿!

};
// extern "C"
  __declspec(dllexport) int MyAdd(int x, int y);//不能写到上面的类中

#endif

2 //// 在.cpp中

int __declspec(dllexport) MyAdd(int x, int y)
{
 x += y;
 return x;
}

------------------------ 调用 ---------------------

调用DLL有两种方法:静态调用和动态调用.(我只用了静态调用)

(一).静态调用其步骤如下:

1.把你的youApp.DLL拷到你目标工程(需调用youApp.DLL的工程)的Debug目录下;

2.把你的youApp.lib拷到你目标工程(需调用youApp.DLL的工程)目录下;

3.把你的youApp.h(包含输出函数的定义)拷到你目标工程(需调用youApp.DLL的工程)目

录下;

4.打开你的目标工程选中工程,选择Visual C++的Project主菜单的Settings菜单;

5.执行第4步后,VC将会弹出一个对话框,在对话框的多页显示控件中选择Link页。然

后在Object/library modules输入框中输入:youApp.lib

6.选择你的目标工程Head Files加入:youApp.h文件;

7.最后在你目标工程(*.cpp,需要调用DLL中的函数)中包含你的:#include "youApp.h"

注:youApp是你DLL的工程名。

2.动态调用其程序如下:

动态调用时只需做静态调用步骤1.

{

HINSTANCE hDllInst = LoadLibrary("youApp.DLL");

if(hDllInst)

{

typedef DWORD (WINAPI *MYFUNC)(DWORD,DWORD);

MYFUNC youFuntionNameAlias = NULL; // youFuntionNameAlias 函数别名

youFuntionNameAlias = (MYFUNC)GetProcAddress

(hDllInst,"youFuntionName");

// youFuntionName 在DLL中声明的函数名

if(youFuntionNameAlias)

{

youFuntionNameAlias(param1,param2);

}

FreeLibrary(hDllInst);

}

}

显式(静态)调用:

LIB + DLL + .H,注意.H中dllexport改为dllimport// __declspec(dllimport) int MyAdd(int x, int y);

隐式(动态)调用:

DLL + 函数原型声明,先LoadLibrary,再GetProcAddress(即找到DLL中函数的地址),不用后FreeLibrary

你可能感兴趣的:(工作,null,Class,dll,mfc,winapi)