From fcd0c90f758ec71f89fda08e55ed325d7d861b12 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Thu, 10 Jul 2003 19:29:55 +0000 Subject: [PATCH] Missing CHARSET_HANGUL fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21874 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/missing.h | 4 ++++ src/msw/utils.cpp | 1 + 2 files changed, 5 insertions(+) diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index e630907950..83129ec448 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -381,5 +381,9 @@ typedef struct _paraformat2 { #define ENDSESSION_LOGOFF 0x80000000 #endif +#ifndef HANGUL_CHARSET + #define HANGUL_CHARSET 129 +#endif + #endif // _WX_MISSING_H_ diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index a036e1a10f..3850a53d10 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -34,6 +34,7 @@ #include "wx/apptrait.h" #include "wx/msw/private.h" // includes +#include "wx/msw/missing.h" // CHARSET_HANGUL #ifdef __GNUWIN32_OLD__ // apparently we need to include winsock.h to get WSADATA and other stuff -- 2.45.2