diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-03-12 12:18:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-03-12 12:18:00 +0100 |
commit | 73c9b3c59e0a7807ccd887a09c2e8918f4ddd8ac (patch) | |
tree | 2c38e6bfc73fe7dc80f72d7ebd1a539c8c0669ac /sal | |
parent | 6a94909b44126428133e87033959c94ead3f16b4 (diff) |
osl_loadModuleRelativeAscii was erroneously not exported
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/osl/module.h | 2 | ||||
-rw-r--r-- | sal/util/sal.map | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sal/inc/osl/module.h b/sal/inc/osl/module.h index 36a7bfabf262..a1a4a678b58f 100644 --- a/sal/inc/osl/module.h +++ b/sal/inc/osl/module.h @@ -120,7 +120,7 @@ SAL_DLLPUBLIC oslModule SAL_CALL osl_loadModuleRelative( @since LibreOffice 3.5 */ -oslModule SAL_CALL osl_loadModuleRelativeAscii( +SAL_DLLPUBLIC oslModule SAL_CALL osl_loadModuleRelativeAscii( oslGenericFunction baseModule, char const * relativePath, sal_Int32 mode); /* This function is guaranteed not to call into FullTextEncodingDataSingleton in sal/textenc/textenc.cxx, so can be used diff --git a/sal/util/sal.map b/sal/util/sal.map index 5ee60b9b577d..920bda9413c7 100644 --- a/sal/util/sal.map +++ b/sal/util/sal.map @@ -613,6 +613,7 @@ LIBO_UDK_3.6 { # symbols available in >= LibO 3.6 global: osl_unmapMappedFile; osl_identicalDirectoryItem; + osl_loadModuleRelativeAscii; rtl_string_newReplaceAll; rtl_string_newReplaceFirst; rtl_uString_newReplaceAll; |