DLL开发

一DLL生成及设置
1.新建一个MFC extension dll工程
2.在工程下新建两个文件myfun.h,mufun.cpp
3.在.h文件中添加如下定义
#pragma once
int AFX_EXT_API MyFun1(int a);
int AFX_EXT_API MyFun2(int a,float b);
4.在.cpp文件中添加代码如下
#include "stdafx.h"
#include "myfun.h"
int MyFun1(int a)
{
CString sText;
sText.Format(L"%d",a);
AfxMessageBox(sText);
return a;
}
int MyFun2(int a,float b)
{
CString sText;
sText.Format(L"%d",a+b);
AfxMessageBox(sText);
return a;
}
5.在def文件中添加如下代码
; DynLoadDll.def : Declares the module parameters for the DLL.

LIBRARY      "DynLoadDll"
EXPORTS
    ; Explicit exports can go here
    MyFun1
MyFun2
编译
二.显示加载该dll
//程序如下,注意dll的路径问题,可以是绝对路径也可以是相对路径
typedef int ( myfun1)(int);
typedef int ( myfun2)(int,float);
myfun1* fun1;
myfun2* fun2;
HINSTANCE hMyDll = ::LoadLibrary(L"DynLoadDll.dll");
int nErr = 0;
if (hMyDll==NULL)
{
nErr = GetLastError();
}
else
{
fun1 = (myfun1*)::GetProcAddress(hMyDll,"MyFun1");
fun2 = (myfun2*)::GetProcAddress(hMyDll,"MyFun2");
if (fun1!=NULL&&fun2!=NULL)
{
fun1(10);
fun2(10,0.5);
}
}
FreeLibrary(hMyDll);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值