diff options
author | Jaromir Wysoglad | 2019-07-27 01:06:35 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | e965df1e8830c994da959ceaeb153d85fae7b859 (patch) | |
tree | 59c09649feb3594e4bae6a3ed9289d3cbd09529a /backends/platform/sdl/win32/win32_wrapper.h | |
parent | 990ab617939c301b49fa6399180d4370deeb0461 (diff) | |
download | scummvm-rg350-e965df1e8830c994da959ceaeb153d85fae7b859.tar.gz scummvm-rg350-e965df1e8830c994da959ceaeb153d85fae7b859.tar.bz2 scummvm-rg350-e965df1e8830c994da959ceaeb153d85fae7b859.zip |
TTS: Add TTS support when compiling with msvc.
Diffstat (limited to 'backends/platform/sdl/win32/win32_wrapper.h')
-rw-r--r-- | backends/platform/sdl/win32/win32_wrapper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/sdl/win32/win32_wrapper.h b/backends/platform/sdl/win32/win32_wrapper.h index 8bd60239df..f2e16faeb2 100644 --- a/backends/platform/sdl/win32/win32_wrapper.h +++ b/backends/platform/sdl/win32/win32_wrapper.h @@ -45,7 +45,7 @@ bool confirmWindowsVersion(int majorVersion, int minorVersion); * * @note Return value must be freed by the caller. */ -wchar_t *ansiToUnicode(const char *s, uint codePage = CP_ACP); +wchar_t *ansiToUnicode(const char *s, unsigned int codePage = CP_ACP); /** * Converts a Windows wide-character string into a C string. * Used to interact with Win32 Unicode APIs with no ANSI fallback. @@ -55,9 +55,9 @@ wchar_t *ansiToUnicode(const char *s, uint codePage = CP_ACP); * * @note Return value must be freed by the caller. */ -char *unicodeToAnsi(const wchar_t *s, uint codePage = CP_ACP); +char *unicodeToAnsi(const wchar_t *s, unsigned int codePage = CP_ACP); -uint getCurrentCharset(); +unsigned int getCurrentCharset(); } |