0
点赞
收藏
分享

微信扫一扫

UE5 windows.h编译错误解决

问题

源码文件添加#include <windows.h>,提示错误

没有将“_WIN32_WINNT_WIN10_RS1”定义为预处理器宏


解决

#include "Windows/AllowWindowsPlatformTypes.h"
#include <windows.h>
#include "Windows/HideWindowsPlatformTypes.h"


举报

相关推荐

0 条评论