Commit f7368aaa authored by Alexandre Julliard's avatar Alexandre Julliard

libwine: Move the multi-byte to wide char conversion functions to libwine_port.

parent faf3871e
...@@ -75,6 +75,7 @@ C_SRCS = \ ...@@ -75,6 +75,7 @@ C_SRCS = \
c_950.c \ c_950.c \
cpsymbol.c \ cpsymbol.c \
cptable.c \ cptable.c \
decompose.c \
digitmap.c \ digitmap.c \
ffs.c \ ffs.c \
fold.c \ fold.c \
...@@ -86,6 +87,7 @@ C_SRCS = \ ...@@ -86,6 +87,7 @@ C_SRCS = \
isinf.c \ isinf.c \
isnan.c \ isnan.c \
lstat.c \ lstat.c \
mbtowc.c \
memcpy_unaligned.c \ memcpy_unaligned.c \
memmove.c \ memmove.c \
mkstemps.c \ mkstemps.c \
......
...@@ -8,10 +8,8 @@ C_SRCS = \ ...@@ -8,10 +8,8 @@ C_SRCS = \
compose.c \ compose.c \
config.c \ config.c \
debug.c \ debug.c \
decompose.c \
ldt.c \ ldt.c \
loader.c \ loader.c \
mbtowc.c \
mmap.c \ mmap.c \
port.c \ port.c \
sortkey.c \ sortkey.c \
......
...@@ -33,6 +33,7 @@ const void *libwine_port_functions[] = ...@@ -33,6 +33,7 @@ const void *libwine_port_functions[] =
{ {
wine_cp_enum_table, wine_cp_enum_table,
wine_cp_get_table, wine_cp_get_table,
wine_cp_mbstowcs,
wine_cpsymbol_mbstowcs, wine_cpsymbol_mbstowcs,
wine_cpsymbol_wcstombs, wine_cpsymbol_wcstombs,
wine_fold_string wine_fold_string
......
...@@ -2466,7 +2466,7 @@ READ_DEFAULTS( $DEFAULTS ); ...@@ -2466,7 +2466,7 @@ READ_DEFAULTS( $DEFAULTS );
DUMP_CASE_MAPPINGS( "libs/wine/casemap.c" ); DUMP_CASE_MAPPINGS( "libs/wine/casemap.c" );
DUMP_SORTKEYS( "libs/wine/collation.c", READ_SORTKEYS_FILE() ); DUMP_SORTKEYS( "libs/wine/collation.c", READ_SORTKEYS_FILE() );
dump_compose_table( "libs/wine/compose.c" ); dump_compose_table( "libs/wine/compose.c" );
dump_decompose_table( "libs/wine/decompose.c" ); dump_decompose_table( "libs/port/decompose.c" );
DUMP_CTYPE_TABLES( "libs/wine/wctype.c" ); DUMP_CTYPE_TABLES( "libs/wine/wctype.c" );
dump_digit_folding( "libs/port/digitmap.c" ); dump_digit_folding( "libs/port/digitmap.c" );
dump_mirroring( "dlls/usp10/mirror.c" ); dump_mirroring( "dlls/usp10/mirror.c" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment