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
52333e9c
Commit
52333e9c
authored
Feb 19, 2016
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: Move the wide char to multi-byte conversion functions to libwine_port.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f7368aaa
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
6 deletions
+9
-6
Makefile.in
libs/port/Makefile.in
+4
-1
compose.c
libs/port/compose.c
+0
-0
utf8.c
libs/port/utf8.c
+0
-0
wctomb.c
libs/port/wctomb.c
+0
-0
Makefile.in
libs/wine/Makefile.in
+0
-3
port.c
libs/wine/port.c
+4
-1
make_unicode
tools/make_unicode
+1
-1
No files found.
libs/port/Makefile.in
View file @
52333e9c
...
...
@@ -73,6 +73,7 @@ C_SRCS = \
c_936.c
\
c_949.c
\
c_950.c
\
compose.c
\
cpsymbol.c
\
cptable.c
\
decompose.c
\
...
...
@@ -101,4 +102,6 @@ C_SRCS = \
strerror.c
\
strncasecmp.c
\
symlink.c
\
usleep.c
usleep.c
\
utf8.c
\
wctomb.c
libs/
wine
/compose.c
→
libs/
port
/compose.c
View file @
52333e9c
File moved
libs/
wine
/utf8.c
→
libs/
port
/utf8.c
View file @
52333e9c
File moved
libs/
wine
/wctomb.c
→
libs/
port
/wctomb.c
View file @
52333e9c
File moved
libs/wine/Makefile.in
View file @
52333e9c
...
...
@@ -5,7 +5,6 @@ STATICLIB = libwine_static.a
C_SRCS
=
\
casemap.c
\
collation.c
\
compose.c
\
config.c
\
debug.c
\
ldt.c
\
...
...
@@ -14,8 +13,6 @@ C_SRCS = \
port.c
\
sortkey.c
\
string.c
\
utf8.c
\
wctomb.c
\
wctype.c
EXTRA_OBJS
=
version.o
...
...
libs/wine/port.c
View file @
52333e9c
...
...
@@ -34,9 +34,12 @@ const void *libwine_port_functions[] =
wine_cp_enum_table
,
wine_cp_get_table
,
wine_cp_mbstowcs
,
wine_cp_wcstombs
,
wine_cpsymbol_mbstowcs
,
wine_cpsymbol_wcstombs
,
wine_fold_string
wine_fold_string
,
wine_utf8_mbstowcs
,
wine_utf8_wcstombs
};
/* no longer used, for backwards compatibility only */
...
...
tools/make_unicode
View file @
52333e9c
...
...
@@ -2465,7 +2465,7 @@ chdir ".." if -f "./make_unicode";
READ_DEFAULTS
(
$DEFAULTS
);
DUMP_CASE_MAPPINGS
(
"libs/wine/casemap.c"
);
DUMP_SORTKEYS
(
"libs/wine/collation.c"
,
READ_SORTKEYS_FILE
()
);
dump_compose_table
(
"libs/
wine
/compose.c"
);
dump_compose_table
(
"libs/
port
/compose.c"
);
dump_decompose_table
(
"libs/port/decompose.c"
);
DUMP_CTYPE_TABLES
(
"libs/wine/wctype.c"
);
dump_digit_folding
(
"libs/port/digitmap.c"
);
...
...
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