问题
源码文件添加#include <windows.h>,提示错误
没有将“_WIN32_WINNT_WIN10_RS1”定义为预处理器宏
解决
#include "Windows/AllowWindowsPlatformTypes.h"
#include <windows.h>
#include "Windows/HideWindowsPlatformTypes.h"
UE5 windows.h编译错误解决
阅读 22
2023-10-09
源码文件添加#include <windows.h>,提示错误
没有将“_WIN32_WINNT_WIN10_RS1”定义为预处理器宏
#include "Windows/AllowWindowsPlatformTypes.h"
#include <windows.h>
#include "Windows/HideWindowsPlatformTypes.h"
相关推荐
精彩评论(0)