Help to make a project build for Windows 7. I work in Unreal Engine 5.3 on the Windows 10 platform. I downloaded and installed Windows SDK 7.1, but after building the project and when I run it on Windows 7, the CreateFile2 error pops up.
“The entry point to the procedure CreateFile2 is not found in the library DLL KERNEL32.dll”
Hmm the file “CreateFile2” doesnt exist because in ue4 on win7 they were using “CreateFileW” so CreateFile2 do not exist yet, that why the missing file.
You could try to compare both version in their cpp files like replacing the CreateFile2 with CreateFileW dll and chging hex value but you might spend weeks figuring this out, i havent find anything online as well.
Or just make another ver of your game project on ue4.