Commit 877a4a73 authored by Alexandre Julliard's avatar Alexandre Julliard

libwine: Don't include backwards compatibility functions on Android.

parent 6fd208b4
...@@ -28,7 +28,9 @@ ...@@ -28,7 +28,9 @@
#include "wine/unicode.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 */ /* functions from libwine_port that are also exported from libwine for backwards compatibility,
* on platforms that require it */
#ifndef __ANDROID__
const void *libwine_port_functions[] = const void *libwine_port_functions[] =
{ {
wine_cp_enum_table, wine_cp_enum_table,
...@@ -41,6 +43,7 @@ const void *libwine_port_functions[] = ...@@ -41,6 +43,7 @@ const void *libwine_port_functions[] =
wine_utf8_mbstowcs, wine_utf8_mbstowcs,
wine_utf8_wcstombs wine_utf8_wcstombs
}; };
#endif
/* no longer used, for backwards compatibility only */ /* no longer used, for backwards compatibility only */
struct wine_pthread_functions; struct wine_pthread_functions;
......
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