diff --git a/DesktopEditor/cximage/CxImage/stdint.h b/DesktopEditor/cximage/CxImage/stdint.h index 3e4bd7481d..e0f804e3b5 100644 --- a/DesktopEditor/cximage/CxImage/stdint.h +++ b/DesktopEditor/cximage/CxImage/stdint.h @@ -117,11 +117,13 @@ typedef uint16_t uint_fast16_t; typedef uint32_t uint_fast32_t; typedef uint64_t uint_fast64_t; #else +#ifndef WIN32 typedef int16_t int_fast16_t; +typedef uint16_t uint_fast16_t; +#endif typedef int32_t int_fast32_t; typedef int64_t int_fast64_t; typedef uint8_t uint_fast8_t; -typedef uint16_t uint_fast16_t; typedef uint32_t uint_fast32_t; typedef uint64_t uint_fast64_t; #endif