UE4 调用dll

本文介绍了如何在UE4中通过C++调用外部DLL文件的具体步骤与代码实现。包括了DLL头文件的引入、函数指针的定义、DLL文件路径的组合与获取等关键环节。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

[for UE 4.25.3]

UE4调用dll的方法和标准的c及c++相同,核心代码如下:

//包含dll的头文件
#include "C:/Users/Documents/Unreal Projects/MyProject01/MyPlugins/IGaussDiffusion.h"
#include "C:/Users/Documents/Unreal Projects/MyProject01/MyPlugins/IFactor.h"

//定义dll里的函数指针
typedef void (* destroyGaussDiffusion)(IGaussDiffusion* );
typedef void (*destroyFactors)(IFactor*);


//调用dll的代码段
FString filePath = FPaths::Combine(*FPaths::EnginePluginsDir(), TEXT("FangHua/"), 
		TEXT("GaussDiffusionDLL.dll")); // Concatenate the plugins folder and the DLL file.
	if (FPaths::FileExists(filePath)) {
		void* DLLHandle;
		DLLHandle = FPlatformProcess::GetDllHandle(*filePath); // Retrieve the DLL.
		if (DLLHandle != NULL) {
			//释放高斯
			destroyGaussDiffusion DLLdestroyGaussDiffusion = NULL; // Local DLL function pointer.
			FString procName = "freeGaussDiffusion"; // The exact name of the DLL function.
			DLLdestroyGaussDiffusion = (destroyGaussDiffusion)FPlatformProcess::GetDllExport(DLLHandle, *procName); // Export the DLL function.
			if (DLLdestroyGaussDiffusion != NULL) {
				DLLdestroyGaussDiffusion(gaussDiffusion);// Call the DLL function, with arguments corresponding to the signature and return type of the function.
			}
			//释放米氏理论
			destroyFactors DLLdestroyFactors = NULL; // Local DLL function pointer.
			FString procName1 = "freeFactors"; // The exact name of the DLL function.
			DLLdestroyFactors = (destroyFactors)FPlatformProcess::GetDllExport(DLLHandle, *procName1); // Export the DLL function.
			if (DLLdestroyFactors != NULL) {
				DLLdestroyFactors(factor);// Call the DLL function, with arguments corresponding to the signature and return type of the function.
			}
		}
	}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

东风吹柳

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值