libwine: Move the wine_fold_string implementation to libwine_port.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2016-02-18 14:10:26 +09:00
parent d59d45e457
commit fa84ea2555
4 changed files with 8 additions and 1 deletions

View File

@ -3,6 +3,7 @@ STATICLIB = libwine_port.a
C_SRCS = \ C_SRCS = \
digitmap.c \ digitmap.c \
ffs.c \ ffs.c \
fold.c \
fstatvfs.c \ fstatvfs.c \
getopt.c \ getopt.c \
getopt1.c \ getopt1.c \

View File

@ -81,7 +81,6 @@ C_SRCS = \
config.c \ config.c \
cptable.c \ cptable.c \
debug.c \ debug.c \
fold.c \
ldt.c \ ldt.c \
loader.c \ loader.c \
mbtowc.c \ mbtowc.c \

View File

@ -25,8 +25,15 @@
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include "wine/unicode.h"
#include "wine/library.h" #include "wine/library.h"
/* functions from libwine_port that are also exported from libwine for backwards compatibility */
const void *libwine_port_functions[] =
{
wine_fold_string
};
/* no longer used, for backwards compatibility only */ /* no longer used, for backwards compatibility only */
struct wine_pthread_functions; struct wine_pthread_functions;
static void *pthread_functions[8]; static void *pthread_functions[8];