码迷,mamicode.com
首页 > 其他好文 > 详细

Dll显式运行时链接

时间:2016-05-10 09:47:54      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

选自《程序员的自我修养》

技术分享

#include<windows.h>
#include<stdio.h>

typedef double(*Func)(double, double);

int main(int argc, char** argv)
{
	Func func;
	double result;
	//Load dll
	HINSTANCE hinstlib = LoadLibrary("Math.dll");

	if (hinstlib == NULL)
	{
		printf("Error: unable to load dll\n");
		return 1;
	}

	//Get function address
	func = (Func)GetProcAddress(hinstlib, "Add");

	if (func == NULL)
	{
		printf("Error: unable to find dll function\n");
		FreeLibrary(hinstlib);
		return 1;
	}
	//Invoke function
	result = func(1.0, 2.0);

	//Unload dll file
	FreeLibrary(hinstlib);

	//Display result
	printf("Result = %f\n", result);

	return 0;

}

  

Dll显式运行时链接

标签:

原文地址:http://www.cnblogs.com/leejxyz/p/5476580.html

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