码迷,mamicode.com
首页 > Windows程序 > 详细

windows编程,加载dll库示例

时间:2015-01-25 18:19:37      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

生成dll库

#include<Windows.h>



//导出函数,可以加载的时候调用
_declspec(dllexport) void msg()
{

	MessageBoxA(0, "1", "2", 0);
}
//导出函数,可以加载的时候调用
_declspec(dllexport) int  add(int a, int b)
{
	return a + b;
}


调用dll库

#include<Windows.h>
#include<stdlib.h>
#include<stdio.h>


typedef void(*procA)();
typedef int (*procB)(int a,int b);
void main()
{

	HMODULE hdll = LoadLibrary("DLL.dll");  //加载dll
	if (hdll != NULL)
	{
		
		procB proc1 = (procB*)GetProcAddress(hdll, "add");
		if (proc1 != NULL)
		{
			printf("%d", proc1(4, 8));

		}
		FARPROC proc = GetProcAddress(hdll, "msg");
		if (proc != NULL)
		{
			proc();

		}
	}
	return 0;


}



windows编程,加载dll库示例

标签:

原文地址:http://blog.csdn.net/waldmer/article/details/41800579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!