From 1a2576cd7ea8051ab5da17bc192924fe5ba871c3 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Wed, 7 Mar 2007 18:58:28 +0000 Subject: (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system. --- src/win32.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/win32.h') diff --git a/src/win32.h b/src/win32.h index 4938c3a2a..f91eaf3c5 100644 --- a/src/win32.h +++ b/src/win32.h @@ -26,6 +26,7 @@ wchar_t *convert_to_fs(const char *name, wchar_t *utf16_buf, size_t buflen); # define WIDE_TO_MB(str) FS2OTTD(str) # define WIDE_TO_MB_BUFFER(str, buffer, buflen) convert_from_fs(str, buffer, buflen) #else +extern uint _codepage; // local code-page in the system @see win32_v.cpp:WM_INPUTLANGCHANGE # define MB_TO_WIDE(str) (str) # define MB_TO_WIDE_BUFFER(str, buffer, buflen) (str) # define WIDE_TO_MB(str) (str) -- cgit v1.2.3-54-g00ecf