Simplify some preprocessor expressions
Some preprocessor expressions can be simplified. For exemple, when _MSC_VER is defined, _WIN32 is also defined.
So #if defined(_MSC_VER) || defined(_WIN32) can be simplified to #if defined(_WIN32).
Edited by Berdes