winstorecompat: Add GetConsoleOutputCP replacement

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
Hugo Beauzée-Luyssen 2016-12-06 17:16:14 +01:00 committed by Jean-Baptiste Kempf
parent 0f658a7ad8
commit d47421eab0
3 changed files with 43 additions and 0 deletions

View File

@ -375,6 +375,10 @@ WINBASEAPI WINBOOL WINAPI SetCurrentConsoleFontEx(
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && defined(WINSTORECOMPAT)
WINBASEAPI UINT WINAPI GetConsoleOutputCP(VOID);
#endif
#ifdef __cplusplus
}
#endif

View File

@ -37,4 +37,5 @@ libwinstorecompat_a_SOURCES = \
src/QueueTimer.c \
src/Crypto.c \
src/GetStartupInfo.c \
src/GetConsoleOutputCP.c \
$(NULL)

View File

@ -0,0 +1,38 @@
/*
Copyright (c) 2013-2016 mingw-w64 project
Contributing authors: Hugo Beauzée-Luyssen
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
#define GetConsoleOutputCP __GetConsoleOutputCP
#include <windows.h>
#undef GetConsoleOutputCP
UINT GetConsoleOutputCP(void)
{
return CP_UTF8;
}
#ifndef _WIN64
UINT (*__MINGW_IMP_SYMBOL(GetConsoleOutputCP))(void) asm("__imp__GetConsoleOutputCP") = GetConsoleOutputCP;
#else
UINT (*__MINGW_IMP_SYMBOL(GetConsoleOutputCP))(void) asm("__imp_GetConsoleOutputCP") = GetConsoleOutputCP;
#endif