diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2013-12-13 17:40:06 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2013-12-18 07:15:46 +0100 |
commit | b6cebf4a3e2997e6489bba77b358b306f8f435ce (patch) | |
tree | 1f8f2a63ce9f71c7002269fb7b879e1f3662d6ed /android | |
parent | 4c539fac018dfd44cd8db52161a8cb930c627da7 (diff) |
Allow UNO component libraries to have each implementation in its own function.
Demonstrating on expwrap library.
There is hope, this will bring code size savings for mobile
platforms, where we don't need every implementation.
Change-Id: I3519fb6148fd7a47ed9df092c73779ea6add552f
Diffstat (limited to 'android')
-rw-r--r-- | android/experimental/LibreOffice4Android/native-code.cxx | 2 | ||||
-rw-r--r-- | android/experimental/desktop/native-code.cxx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/android/experimental/LibreOffice4Android/native-code.cxx b/android/experimental/LibreOffice4Android/native-code.cxx index 9e65d8d9bd2a..1c3b5c3112a5 100644 --- a/android/experimental/LibreOffice4Android/native-code.cxx +++ b/android/experimental/LibreOffice4Android/native-code.cxx @@ -21,7 +21,6 @@ extern "C" extern void * embobj_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * emboleobj_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * evtatt_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); - extern void * expwrap_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * filterconfig1_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * frm_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * fsstorage_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); @@ -85,7 +84,6 @@ lo_get_libmap(void) { "libembobj.a", embobj_component_getFactory }, { "libemboleobj.a", emboleobj_component_getFactory }, { "libevtattlo.a", evtatt_component_getFactory }, - { "libexpwrap.uno.a", expwrap_component_getFactory }, { "libfilterconfiglo.a", filterconfig1_component_getFactory }, { "libfrmlo.a", frm_component_getFactory }, { "libfsstoragelo.a", fsstorage_component_getFactory }, diff --git a/android/experimental/desktop/native-code.cxx b/android/experimental/desktop/native-code.cxx index f16eab38637d..15b82f97e149 100644 --- a/android/experimental/desktop/native-code.cxx +++ b/android/experimental/desktop/native-code.cxx @@ -22,7 +22,6 @@ extern "C" extern void * embobj_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * emboleobj_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * evtatt_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); - extern void * expwrap_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * filterconfig1_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * frm_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * fsstorage_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); @@ -90,7 +89,6 @@ lo_get_libmap(void) { "libembobj.a", embobj_component_getFactory }, { "libemboleobj.a", emboleobj_component_getFactory }, { "libevtattlo.a", evtatt_component_getFactory }, - { "libexpwraplo.a", expwrap_component_getFactory }, { "libfilterconfiglo.a", filterconfig1_component_getFactory }, { "libfrmlo.a", frm_component_getFactory }, { "libfsstoragelo.a", fsstorage_component_getFactory }, |