diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-25 17:39:04 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-26 19:01:51 +0200 |
commit | 1b57a3b5238e56abc51ba0f1cb6053b7a2001f7e (patch) | |
tree | 64a395703ea4ed60bac1c19df9d2c52b0c6d545f | |
parent | 753d0de3741ff30036672b6d8f91440582fe0edb (diff) |
Add svt and svx
Change-Id: I3298b985bc7f197e50f7246c8fe828d51804bde3
-rw-r--r-- | ios/experimental/Viewer/Viewer/lo-viewer.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ios/experimental/Viewer/Viewer/lo-viewer.mm b/ios/experimental/Viewer/Viewer/lo-viewer.mm index 97669f14584e..865cb7de6262 100644 --- a/ios/experimental/Viewer/Viewer/lo-viewer.mm +++ b/ios/experimental/Viewer/Viewer/lo-viewer.mm @@ -65,6 +65,8 @@ extern "C" { extern void * smd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * spell_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * svgfilter_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); + extern void * svt_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); + extern void * svx_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * sw_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * swd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * t602filter_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); @@ -110,6 +112,8 @@ lo_get_libmap(void) { "libsmlo.a", sm_component_getFactory }, { "libspelllo.a", spell_component_getFactory }, { "libsvgfilterlo.a", svgfilter_component_getFactory }, + { "libsvtlo.a", svt_component_getFactory }, + { "libsvxlo.a", svx_component_getFactory }, { "libswdlo.a", swd_component_getFactory }, { "libswlo.a", sw_component_getFactory }, { "libt602filterlo.a", t602filter_component_getFactory }, |