mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 19:11:51 +00:00
[SETUPLIB][USETUP] Convert internal MUI_LAYOUTS data to numbers.
LangID is a LANGID and LayoutID is a KLID: keyboard layout ID. See terminology at http://archives.miloush.net/michkap/archive/2004/11/27/270931.html These tables of MUI_LAYOUTS for each language, correspond to the intl.inf LCID map: ``` ; List of locales. ; <LCID> = <Description>,<OEMCP>,<Language Group>,<langID:HKL pair>,<langID:HKL pair>,... ``` where: - each MUI_LANGUAGE entry corresponds to one such locale description; - each MUI_LAYOUTS entry corresponds to a <langID:HKL pair>. See http://archives.miloush.net/michkap/archive/2006/10/14/825404.html for some details.
This commit is contained in:
parent
51a446f966
commit
f0a1d766f1
140 changed files with 508 additions and 497 deletions
|
@ -2,6 +2,6 @@
|
|||
|
||||
MUI_LAYOUTS enJMLayouts[] =
|
||||
{
|
||||
{ L"2009", L"00000409" },
|
||||
{ NULL, NULL }
|
||||
{ 0x2009, 0x00000409 },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue