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

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2016-02-19 11:41:44 +09:00
parent faf3871e77
commit f7368aaa97
6 changed files with 4 additions and 3 deletions

View file

@ -75,6 +75,7 @@ C_SRCS = \
c_950.c \
cpsymbol.c \
cptable.c \
decompose.c \
digitmap.c \
ffs.c \
fold.c \
@ -86,6 +87,7 @@ C_SRCS = \
isinf.c \
isnan.c \
lstat.c \
mbtowc.c \
memcpy_unaligned.c \
memmove.c \
mkstemps.c \

View file

@ -8,10 +8,8 @@ C_SRCS = \
compose.c \
config.c \
debug.c \
decompose.c \
ldt.c \
loader.c \
mbtowc.c \
mmap.c \
port.c \
sortkey.c \

View file

@ -33,6 +33,7 @@ const void *libwine_port_functions[] =
{
wine_cp_enum_table,
wine_cp_get_table,
wine_cp_mbstowcs,
wine_cpsymbol_mbstowcs,
wine_cpsymbol_wcstombs,
wine_fold_string

View file

@ -2466,7 +2466,7 @@ 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_decompose_table( "libs/wine/decompose.c" );
dump_decompose_table( "libs/port/decompose.c" );
DUMP_CTYPE_TABLES( "libs/wine/wctype.c" );
dump_digit_folding( "libs/port/digitmap.c" );
dump_mirroring( "dlls/usp10/mirror.c" );