gpt4 book ai didi

c++ - Atlbase 不会正确包含在虚幻引擎 4 中

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:44:02 30 4
gpt4 key购买 nike

我正在使用 VS2013 的完整版本,并试图将 atlbase 与 sshelper 一起包含到一个类中,但我遇到了各种类型的错误。

我正在使用一个新生成的类,它会在没有这些包含的情况下干净地编译,并且里面几乎没有其他东西。

编译器正在查找库并似乎加载了它们,但随后我收到大约 20 个错误,这些错误几乎都是这样(我省略了其余部分,但它们都像这些错误)

1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atlcore.h(630): warning C4191: 'reinterpret_cast' : unsafe conversion from 'FARPROC' to 'BOOL (__cdecl *)(DWORD)'
1> Calling this function through the result pointer may cause your program to fail
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atltransactionmanager.h(271): warning C4191: 'type cast' : unsafe conversion from 'FARPROC' to 'PFNCREATETRANSACTION'
1> Calling this function through the result pointer may cause your program to fail
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atltransactionmanager.h(321): warning C4191: 'type cast' : unsafe conversion from 'FARPROC' to 'PFNCOMMITTRANSACTION'
1> Calling this function through the result pointer may cause your program to fail
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atltransactionmanager.h(427): error C2039: 'DeleteFile' : is not a member of '`global namespace''
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atltransactionmanager.h(448): warning C4191: 'type cast' : unsafe conversion from 'FARPROC' to 'PFNMOVEFILETRANSACTED'
1> Calling this function through the result pointer may cause your program to fail
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atltransactionmanager.h(460): error C2039: 'MoveFile' : is not a member of '`global namespace''
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atltransactionmanager.h(487): warning C4191: 'type cast' : unsafe conversion from 'FARPROC' to 'PFNGETFILEATTRIBUTESTRANSACTED'
1>E:\Programs\Microsoft Visual Studio 12.0\VC\ATLMFC\INCLUDE\atlbase.h(5766): warning C4191: 'type cast' : unsafe conversion from 'FARPROC' to 'LSTATUS (__cdecl *)(HKEY,LPCWSTR,REGSAM,DWORD)'
1> Calling this function through the result pointer may cause your program to fail
1>C:\Program Files (x86)\Windows Kits\8.1\include\um\sphelper.h(1333): warning C4191: 'type cast' : unsafe conversion from 'FARPROC' to 'LPFN_RegLoadMUIStringW'
1> Calling this function through the result pointer may cause your program to fail

这些错误仅在包含 atlbase.h 和/或 sphelper.h 后出现。其中一半来自第一个,另一半来自第二个。

它们包含如下(在我的项目和类标题包含下):

#include <stdio.h>
#include <Windows.h>

#include "AllowWindowsPlatformTypes.h"
#include <atlbase.h>
#include "sphelper.h"
#include "HideWindowsPlatformTypes.h"

我将它们放在这个“平台类型” block 中,因为 atlbase 和 sshelper 库会抛出大量与任意声明或其他内容有关的错误。

我没有以任何方式编辑库文件,并且完全删除了所有库并从头开始重新安装它们。

这可能是由于我的疏忽或其他原因造成的,但任何人都可以解释为什么 atl 和 sphelper 库不能正确包含吗?

编辑:

澄清一下,我在“https://answers.unrealengine.com/questions/27560/trouble-using-windows-includes-with-dword-int.html”上找到了我“解决”导致这个问题的问题的解决方案

最佳答案

我在一个更具体的网站上发布了我的问题,并在那里得到了答案。

用户 Jamie Dale 在 UE4 AnswerHub 上发布了以下内容

#include "AllowWindowsPlatformTypes.h"


#pragma warning(push)
#pragma warning(disable: 4191) // warning C4191: 'type cast' : unsafe conversion
#pragma warning(disable: 4996) // error C4996: 'GetVersionEx': was declared deprecated

#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

// atltransactionmanager.h doesn't use the W equivalent functions, use this workaround
#ifndef DeleteFile
#define DeleteFile DeleteFileW
#endif
#ifndef MoveFile
#define MoveFile MoveFileW
#endif

#include <atlbase.h>

#undef DeleteFile
#undef MoveFile

#include <sphelper.h>

#pragma warning(pop)

#include "HideWindowsPlatformTypes.h"

这个解决方案取代了我使用的内含物,完全解决了我遇到的所有问题。完全归功于 Jamie Dale。

关于c++ - Atlbase 不会正确包含在虚幻引擎 4 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24197098/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com