libwine: Move string functions to libwine_port.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b278caf152
commit
c3398b7eab
|
@ -101,6 +101,7 @@ C_SRCS = \
|
||||||
sortkey.c \
|
sortkey.c \
|
||||||
spawn.c \
|
spawn.c \
|
||||||
statvfs.c \
|
statvfs.c \
|
||||||
|
string.c \
|
||||||
strnlen.c \
|
strnlen.c \
|
||||||
symlink.c \
|
symlink.c \
|
||||||
usleep.c \
|
usleep.c \
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define WINE_UNICODE_INLINE /* nothing */
|
|
||||||
#include "wine/unicode.h"
|
#include "wine/unicode.h"
|
||||||
|
|
||||||
int strcmpiW( const WCHAR *str1, const WCHAR *str2 )
|
int strcmpiW( const WCHAR *str1, const WCHAR *str2 )
|
|
@ -6,8 +6,7 @@ C_SRCS = \
|
||||||
ldt.c \
|
ldt.c \
|
||||||
loader.c \
|
loader.c \
|
||||||
mmap.c \
|
mmap.c \
|
||||||
port.c \
|
port.c
|
||||||
string.c
|
|
||||||
|
|
||||||
EXTRA_OBJS = version.o
|
EXTRA_OBJS = version.o
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#define WINE_UNICODE_INLINE /* nothing */
|
||||||
#include "wine/unicode.h"
|
#include "wine/unicode.h"
|
||||||
#include "wine/library.h"
|
#include "wine/library.h"
|
||||||
|
|
||||||
|
@ -33,6 +34,8 @@
|
||||||
#ifndef __ANDROID__
|
#ifndef __ANDROID__
|
||||||
const void *libwine_port_functions[] =
|
const void *libwine_port_functions[] =
|
||||||
{
|
{
|
||||||
|
strtolW,
|
||||||
|
vsnprintfW,
|
||||||
wine_compare_string,
|
wine_compare_string,
|
||||||
wine_cp_enum_table,
|
wine_cp_enum_table,
|
||||||
wine_cp_get_table,
|
wine_cp_get_table,
|
||||||
|
|
Loading…
Reference in New Issue