From f75fcef5190f307458aea11feaa87ca24d3135d1 Mon Sep 17 00:00:00 2001 From: Syping Date: Fri, 12 Nov 2021 07:10:36 +0100 Subject: [PATCH] WinCvt: fixing MSVC build with including windows.h --- src/RagePhoto.cpp | 1 + tests/WincvtTest.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/RagePhoto.cpp b/src/RagePhoto.cpp index eae1b08..dfb91ef 100644 --- a/src/RagePhoto.cpp +++ b/src/RagePhoto.cpp @@ -33,6 +33,7 @@ #elif defined UNICODE_ICONV #include #elif defined UNICODE_WINCVT +#include #include #endif diff --git a/tests/WincvtTest.cpp b/tests/WincvtTest.cpp index e3763f9..cd816ce 100644 --- a/tests/WincvtTest.cpp +++ b/tests/WincvtTest.cpp @@ -17,6 +17,7 @@ *****************************************************************************/ #include +#include #include int main(int argc, char *argv[])