libwine: Move the wine_fold_string implementation to libwine_port.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
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 = \
digitmap.c \
ffs.c \
fold.c \
fstatvfs.c \
getopt.c \
getopt1.c \

View File

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

View File

@ -25,8 +25,15 @@
#include <string.h>
#include <sys/types.h>
#include "wine/unicode.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 */
struct wine_pthread_functions;
static void *pthread_functions[8];