From 97d5abcd040274e3b8912e34e158e602c4998426 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Fri, 29 Dec 2000 19:47:53 +0000 Subject: [PATCH] "Implement" GetKBCodePage and GetKBCodePage16. --- windows/input.c | 2 +- windows/keyboard.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/windows/input.c b/windows/input.c index 56c61f04b2..a5c88c31b6 100644 --- a/windows/input.c +++ b/windows/input.c @@ -735,7 +735,7 @@ UINT WINAPI MapVirtualKeyExW(UINT code, UINT maptype, HKL hkl) */ UINT WINAPI GetKBCodePage(void) { - return GetKBCodePage16(); + return GetOEMCP(); } /**************************************************************************** diff --git a/windows/keyboard.c b/windows/keyboard.c index e8194fbb35..e90ff1b629 100644 --- a/windows/keyboard.c +++ b/windows/keyboard.c @@ -223,8 +223,7 @@ UINT16 WINAPI MapVirtualKey16(UINT16 wCode, UINT16 wMapType) */ INT16 WINAPI GetKBCodePage16(void) { - TRACE("(void)\n"); - return 850; + return GetKBCodePage(); } /****************************************************************************