diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-19 11:51:49 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-19 12:07:19 +0300 |
commit | 7825929a903bac4452fca383c12f6a2db0db0cfe (patch) | |
tree | 21baee9e5e9f833761044c5e62eef3676f2b62f1 /package | |
parent | 8d3f539724a9302ce0fd7b8c00642840f1422b3b (diff) |
Export the two UNO component functions
Fixes zip archive handling which was spectacularly broken in 3.4 beta1
on Windows.
Diffstat (limited to 'package')
-rw-r--r-- | package/source/manifest/UnoRegister.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/source/manifest/UnoRegister.cxx b/package/source/manifest/UnoRegister.cxx index e8bf0e9604d3..e71f6fe99d6b 100644 --- a/package/source/manifest/UnoRegister.cxx +++ b/package/source/manifest/UnoRegister.cxx @@ -48,7 +48,7 @@ using rtl::OUString; // C functions to implement this as a component -extern "C" void SAL_CALL component_getImplementationEnvironment( +extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; @@ -61,7 +61,7 @@ extern "C" void SAL_CALL component_getImplementationEnvironment( * @param pRegistryKey registry data key to read and write component persistent data * @return a component factory (generic uno interface) */ -extern "C" void * SAL_CALL component_getFactory( +extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void * pRet = 0; |