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

(UE4) 动态加载DLL

时间:2015-04-04 18:12:57      阅读:1683      评论:0      收藏:0      [点我收藏+]

标签:

目前还没有实现,实在搞不懂为什么,大概代码如下:

技术分享
//--------------------------------------------------------------------------------------
    FString filePath = FPaths::Combine(*FPaths::GameDir(), TEXT("MFCDLL/"),TEXT("OpenFile.dll"));
    typedef FCString(WINAPI *getPath)(void);
    FCString str;
    if (FPaths::FileExists(filePath))
    {
        void *DLLHandle;
        DLLHandle = FPlatformProcess::GetDllHandle(*filePath); // Retrieve the DLL.
        if (DLLHandle != NULL)
        {
            getPath getFilePath=NULL;
            FString procName = "getFilePath";
            getFilePath=(getPath)FPlatformProcess::GetDllExport(DLLHandle, *procName);
            str=getFilePath();
        }
    }
    //-----------------------------------------------------------------------------
View Code

 

(UE4) 动态加载DLL

标签:

原文地址:http://www.cnblogs.com/tengpan-cn/p/4392436.html

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