summaryrefslogtreecommitdiff
path: root/android/experimental/LibreOffice4Android/native-code.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'android/experimental/LibreOffice4Android/native-code.cxx')
-rw-r--r--android/experimental/LibreOffice4Android/native-code.cxx16
1 files changed, 15 insertions, 1 deletions
diff --git a/android/experimental/LibreOffice4Android/native-code.cxx b/android/experimental/LibreOffice4Android/native-code.cxx
index af0f5b7c81dd..2ec81496af3d 100644
--- a/android/experimental/LibreOffice4Android/native-code.cxx
+++ b/android/experimental/LibreOffice4Android/native-code.cxx
@@ -12,9 +12,10 @@
extern "C"
__attribute__ ((visibility("default")))
const lib_to_component_mapping *
-lo_get_libmap(void)
+lo_get_library_map(void)
{
static lib_to_component_mapping map[] = {
+ NON_APP_SPECIFIC_COMPONENT_MAP
{ "libanimcorelo.a", animcore_component_getFactory },
{ "libavmedialo.a", avmedia_component_getFactory },
{ "libbasprov.uno.a", basprov_component_getFactory },
@@ -77,4 +78,17 @@ lo_get_libmap(void)
return map;
}
+extern "C"
+__attribute__ ((visibility("default")))
+const lib_to_component_mapping *
+lo_get_implementation_map(void)
+{
+ static lib_to_component_mapping map[] = {
+ NON_APP_SPECIFIC_DIRECT_COMPONENT_MAP
+ { NULL, NULL }
+ };
+
+ return map;
+}
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */