Commit fa84ea25 authored by Alexandre Julliard's avatar Alexandre Julliard

libwine: Move the wine_fold_string implementation to libwine_port.

parent d59d45e4
...@@ -3,6 +3,7 @@ STATICLIB = libwine_port.a ...@@ -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 \
......
...@@ -81,7 +81,6 @@ C_SRCS = \ ...@@ -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 \
......
...@@ -25,8 +25,15 @@ ...@@ -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];
......
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