summaryrefslogtreecommitdiff
path: root/cppu/source/uno/loadmodule.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/source/uno/loadmodule.hxx')
-rw-r--r--cppu/source/uno/loadmodule.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/cppu/source/uno/loadmodule.hxx b/cppu/source/uno/loadmodule.hxx
index 1062799f00c9..a87c7b1ac3a1 100644
--- a/cppu/source/uno/loadmodule.hxx
+++ b/cppu/source/uno/loadmodule.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_CPPU_SOURCE_UNO_LOADMODULE_HXX
#include "sal/config.h"
-#include "osl/module.h"
+#include <osl/module.hxx>
namespace rtl { class OUString; }
@@ -35,10 +35,9 @@ namespace cppu { namespace detail {
the nucleus of a module name (without any "lib...so", ".dll", etc.
decoration, and without a path).
- @return
- the handle returned by osl_loadModule.
+ @return false if the module could not be loaded, otherwise true
*/
-::oslModule loadModule(::rtl::OUString const & name);
+bool loadModule(osl::Module & rModule, ::rtl::OUString const & name);
#endif