动态调用dll库,不必使用头文件

之前一直使用的是静态调用库,并包含头文件。

因工作需要,在不包含头文件的前提下,重新换种方法调用。

使用Windows库中的LoadLibrary函数动态调用dll库。

具体代码如下:

假设库的功能是求1~n的和

在库的对外接口MyDll.h中

extern "C" _declspec (dllexport) long doSum(int n);

对应的实现在MyDll.cpp中

#include "MyDll.h"

extern "C" _declspec (dllexport) int doSum(int n)

{ return (1+n)*n/2;}

在引用动态库 MyDll.dll的项目

在使用的地方中

#include

#include

typedef int (*DoSumFun) (int n);

HINSTANCE hdll;

hdll = LoadLibrary(_T("MyDll.h"));//后续使用之前需判空,这里简写 加载动态库

DoSumFun doSumFun = (DoSumFun) GetProcAddress(hdll,"doSum"); 

int num = doSumFun(5); //调用库函数

 

 

 

你可能感兴趣的:(学习记录)