Source File ==> Source\Core\PropertyParserAnimation.cpp
enum Type { NONE, TWEEN, ALL, ALTERNATE, INFINITE, PAUSED } type;
ALTERNATE, INFINITE ==> These two values conflict with the windows header
This is my solution:
#ifdef ALTERNATE
#undef ALTERNATE
#endif
#ifdef INFINITE
#undef INFINITE
#endif
If you are sure that this is a problem, you can add it to your source code.
English is not good, from machine translation, I wish you a happy life.