diff --git a/sal/inc/osl/module.hxx b/sal/inc/osl/module.hxx
index c8d39a2..a7f9c35 100644
--- a/sal/inc/osl/module.hxx
+++ b/sal/inc/osl/module.hxx
@@ -152,11 +152,28 @@ public:
return ( osl_getFunctionSymbol( m_Module, ustrFunctionSymbolName.pData ) );
}
+ /**
+ * @overload
+ * @since LibreOffice 3.6
+ */
+ oslGenericFunction SAL_CALL getFunctionSymbol( const ::rtl::OUString& ustrFunctionSymbolName )
const
+ {
+ return ( osl_getFunctionSymbol( m_Module, ustrFunctionSymbolName.pData ) );
+ }
+
/// @since LibreOffice 3.5
oslGenericFunction SAL_CALL getFunctionSymbol(char const * name) const {
return osl_getAsciiFunctionSymbol(m_Module, name);
}
+ /**
+ * @overload
+ * @since LibreOffice 3.6
+ */
+ oslGenericFunction SAL_CALL getFunctionSymbol(char const * name) {
+ return osl_getAsciiFunctionSymbol(m_Module, name);
+ }
+
operator oslModule() const
{
return m_Module;
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.