mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2024-11-30 13:26:10 +08:00
winstorecompat: Add GetConsoleOutputCP replacement
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
parent
0f658a7ad8
commit
d47421eab0
@ -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
|
||||
|
@ -37,4 +37,5 @@ libwinstorecompat_a_SOURCES = \
|
||||
src/QueueTimer.c \
|
||||
src/Crypto.c \
|
||||
src/GetStartupInfo.c \
|
||||
src/GetConsoleOutputCP.c \
|
||||
$(NULL)
|
||||
|
38
mingw-w64-libraries/winstorecompat/src/GetConsoleOutputCP.c
Normal file
38
mingw-w64-libraries/winstorecompat/src/GetConsoleOutputCP.c
Normal 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
|
Loading…
Reference in New Issue
Block a user