"Implement" GetKBCodePage and GetKBCodePage16.

This commit is contained in:
Dmitry Timoshkov 2000-12-29 19:47:53 +00:00 committed by Alexandre Julliard
parent ad72e71fda
commit 97d5abcd04
2 changed files with 2 additions and 3 deletions

View file

@ -735,7 +735,7 @@ UINT WINAPI MapVirtualKeyExW(UINT code, UINT maptype, HKL hkl)
*/
UINT WINAPI GetKBCodePage(void)
{
return GetKBCodePage16();
return GetOEMCP();
}
/****************************************************************************

View file

@ -223,8 +223,7 @@ UINT16 WINAPI MapVirtualKey16(UINT16 wCode, UINT16 wMapType)
*/
INT16 WINAPI GetKBCodePage16(void)
{
TRACE("(void)\n");
return 850;
return GetKBCodePage();
}
/****************************************************************************