栏目分类:
子分类:
返回
终身学习网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
终身学习网 > IT > 软件开发 > 后端开发 > .Net

UE4 调用dll

.Net 更新时间:发布时间: 百科书网 趣学号

[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.
			}
		}
	}

 

转载请注明:文章转载自 www.051e.com
本文地址:http://www.051e.com/it/955507.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 ©2023-2025 051e.com

ICP备案号:京ICP备12030808号