From ac3b7bc4cc2384567fa3de127f6bffc018aad356 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Sun, 15 Oct 2017 10:16:19 -0400 Subject: [PATCH] windows.h already includes stringapiset for us --- libretro-common/encodings/encoding_utf.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libretro-common/encodings/encoding_utf.c b/libretro-common/encodings/encoding_utf.c index 76fc20a5c4..e2048a57b8 100644 --- a/libretro-common/encodings/encoding_utf.c +++ b/libretro-common/encodings/encoding_utf.c @@ -34,11 +34,6 @@ #if defined(_WIN32) && !defined(_XBOX) #include - -/* Starting with Windows 8: MultiByteToWideChar is declared in stringapiset.h. Before Windows 8, it was declared in winnls.h (which windows.h includes for us). */ -#ifndef MultiByteToWideChar -#include -#endif #endif static INLINE unsigned leading_ones(uint8_t c)