Unreal Engine 4.15 Preview

Try adding this to your header:



// Exclude rarely-used stuff from Windows headers
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX

// Windows Header Files:
#include <windows.h>


That should solve your problem, The “NOMINMAX” is to remove the min/macros.

HTH