diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-04-16 01:40:02 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-04-16 01:46:39 +0200 |
commit | 2aadb6f9f4197f247373e4b54cab1461bc673981 (patch) | |
tree | fdb5fdf171ddf966640c4a6590f0068482c1e52e /cppuhelper | |
parent | b20a10d5f845d0e4a4f21f360afd126c2cdacc4c (diff) |
Add the package2 component
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/shlib.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index b3361007749c..ba8ea8da176a 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -468,6 +468,7 @@ extern "C" extern void * comphelp_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * filterconfig1_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * fwk_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); + extern void * package2_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * sfx_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * stocservices_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * i18npool_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ); @@ -540,6 +541,7 @@ Reference< XInterface > SAL_CALL loadSharedLibComponentFactory( { "libcomphelp" CPPU_STRINGIFY(CPPU_ENV) ".a", comphelp_component_getFactory }, { "libfilterconfiglo.a", filterconfig1_component_getFactory }, { "libfwklo.a", fwk_component_getFactory }, + { "libpackage2.a", package2_component_getFactory }, { "libsfxlo.a", sfx_component_getFactory }, { "libucb1.a", ucb_component_getFactory }, { "libucpfile1.a", ucpfile_component_getFactory }, |