"Implement" GetKBCodePage and GetKBCodePage16.
This commit is contained in:
parent
ad72e71fda
commit
97d5abcd04
|
@ -735,7 +735,7 @@ UINT WINAPI MapVirtualKeyExW(UINT code, UINT maptype, HKL hkl)
|
|||
*/
|
||||
UINT WINAPI GetKBCodePage(void)
|
||||
{
|
||||
return GetKBCodePage16();
|
||||
return GetOEMCP();
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -223,8 +223,7 @@ UINT16 WINAPI MapVirtualKey16(UINT16 wCode, UINT16 wMapType)
|
|||
*/
|
||||
INT16 WINAPI GetKBCodePage16(void)
|
||||
{
|
||||
TRACE("(void)\n");
|
||||
return 850;
|
||||
return GetKBCodePage();
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
Loading…
Reference in New Issue