make_unicode: Add support for the 720 codepage (Arabic, Farsi and Urdu).
Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit a1bae9f288
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
40b962f9ef
commit
cd5311958c
|
@ -57,6 +57,7 @@ HKLM
|
|||
val '437' = s 'c_437.nls'
|
||||
val '500' = s 'c_500.nls'
|
||||
val '708' = s 'c_708.nls'
|
||||
val '720' = s 'c_720.nls'
|
||||
val '737' = s 'c_737.nls'
|
||||
val '775' = s 'c_775.nls'
|
||||
val '850' = s 'c_850.nls'
|
||||
|
|
|
@ -108,6 +108,7 @@ static const struct { UINT cp; const WCHAR *name; } codepage_names[] =
|
|||
{ 437, L"OEM United States" },
|
||||
{ 500, L"IBM EBCDIC International" },
|
||||
{ 708, L"Arabic ASMO" },
|
||||
{ 720, L"Arabic (Transparent ASMO)" },
|
||||
{ 737, L"OEM Greek 437G" },
|
||||
{ 775, L"OEM Baltic" },
|
||||
{ 850, L"OEM Multilingual Latin 1" },
|
||||
|
|
|
@ -4125,6 +4125,7 @@ c_28605.nls
|
|||
c_437.nls
|
||||
c_500.nls
|
||||
c_708.nls
|
||||
c_720.nls
|
||||
c_737.nls
|
||||
c_775.nls
|
||||
c_850.nls
|
||||
|
|
|
@ -46,6 +46,7 @@ SOURCES = \
|
|||
c_437.nls \
|
||||
c_500.nls \
|
||||
c_708.nls \
|
||||
c_720.nls \
|
||||
c_737.nls \
|
||||
c_775.nls \
|
||||
c_850.nls \
|
||||
|
|
Binary file not shown.
|
@ -46,6 +46,7 @@ my @allfiles =
|
|||
"CodpageFiles/437.txt",
|
||||
"CodpageFiles/500.txt",
|
||||
"CodpageFiles/708.txt",
|
||||
"CodpageFiles/720.txt",
|
||||
"CodpageFiles/737.txt",
|
||||
"CodpageFiles/775.txt",
|
||||
"CodpageFiles/850.txt",
|
||||
|
|
Loading…
Reference in New Issue