Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0d01da1f
Commit
0d01da1f
authored
Jun 07, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libunicode: Add a code page table for the US-ASCII encoding.
parent
58ec282b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
Makefile.in
libs/unicode/Makefile.in
+1
-0
c_20127.c
libs/unicode/c_20127.c
+0
-0
cpmap.pl
libs/unicode/cpmap.pl
+1
-0
cptable.c
libs/unicode/cptable.c
+3
-1
No files found.
libs/unicode/Makefile.in
View file @
0d01da1f
...
...
@@ -51,6 +51,7 @@ CODEPAGES = \
10029
\
10079
\
10081
\
20127
\
20866
\
20932
\
21866
\
...
...
libs/unicode/c_20127.c
0 → 100644
View file @
0d01da1f
This diff is collapsed.
Click to expand it.
libs/unicode/cpmap.pl
View file @
0d01da1f
...
...
@@ -80,6 +80,7 @@ $DEF_CHAR = ord '?';
[
10029
,
"VENDORS/MICSFT/MAC/LATIN2.TXT"
,
"Mac Latin 2"
],
[
10079
,
"VENDORS/MICSFT/MAC/ICELAND.TXT"
,
"Mac Icelandic"
],
[
10081
,
"VENDORS/MICSFT/MAC/TURKISH.TXT"
,
"Mac Turkish"
],
[
20127
,
"VENDORS/MISC/US-ASCII-QUOTES.TXT"
,
"US-ASCII (7bit)"
],
[
20866
,
"VENDORS/MISC/KOI8-R.TXT"
,
"Russian KOI8"
],
[
20932
,
"OBSOLETE/EASTASIA/JIS/JIS0208.TXT"
,
"EUC-JP"
],
[
21866
,
"VENDORS/MISC/KOI8-U.TXT"
,
"Ukrainian KOI8"
],
...
...
libs/unicode/cptable.c
View file @
0d01da1f
...
...
@@ -67,6 +67,7 @@ extern union cptable cptable_10007;
extern
union
cptable
cptable_10029
;
extern
union
cptable
cptable_10079
;
extern
union
cptable
cptable_10081
;
extern
union
cptable
cptable_20127
;
extern
union
cptable
cptable_20866
;
extern
union
cptable
cptable_20932
;
extern
union
cptable
cptable_21866
;
...
...
@@ -85,7 +86,7 @@ extern union cptable cptable_28604;
extern
union
cptable
cptable_28605
;
extern
union
cptable
cptable_28606
;
static
const
union
cptable
*
const
cptables
[
6
0
]
=
static
const
union
cptable
*
const
cptables
[
6
1
]
=
{
&
cptable_037
,
&
cptable_424
,
...
...
@@ -130,6 +131,7 @@ static const union cptable * const cptables[60] =
&
cptable_10029
,
&
cptable_10079
,
&
cptable_10081
,
&
cptable_20127
,
&
cptable_20866
,
&
cptable_20932
,
&
cptable_21866
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment