ntdll: Default to 7-bit ASCII before codepages are initialized.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7fc9e45dd8
commit
25ff59d7a9
|
@ -44,8 +44,10 @@ UINT NlsAnsiCodePage = 0;
|
|||
BYTE NlsMbCodePageTag = 0;
|
||||
BYTE NlsMbOemCodePageTag = 0;
|
||||
|
||||
static const union cptable *ansi_table;
|
||||
static const union cptable *oem_table;
|
||||
extern const union cptable cptable_20127; /* 7-bit ASCII */
|
||||
|
||||
static const union cptable *ansi_table = &cptable_20127;
|
||||
static const union cptable *oem_table = &cptable_20127;
|
||||
static const union cptable* unix_table; /* NULL if UTF8 */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue