C++调用动态链接库

C++调用动态链接库的方法:

	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);
	}


你可能感兴趣的:(C++调用动态链接库)