summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-10-17 13:52:24 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-10-17 13:52:24 +0000
commitcb453196dde2b1acf2338bacd72586c6e64b2f1e (patch)
tree4e4ad60b0fc8faf5b3e33e3cfaf35cdd82450c9e
parente54f20000dc0ffcabc2d8cb320cacfde84a5a1d1 (diff)
INTEGRATION: CWS perform05 (1.18.88); FILE MERGED
2005/09/30 20:55:33 mt 1.18.88.2: RESYNC: (1.18-1.19); FILE MERGED 2005/07/21 10:53:08 mt 1.18.88.1: RTL_LOG
-rw-r--r--sal/osl/w32/module.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sal/osl/w32/module.c b/sal/osl/w32/module.c
index df5bc0fb6..7bb8d7a9f 100644
--- a/sal/osl/w32/module.c
+++ b/sal/osl/w32/module.c
@@ -4,9 +4,9 @@
*
* $RCSfile: module.c,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 15:07:21 $
+ * last change: $Author: rt $ $Date: 2005-10-17 14:52:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -41,7 +41,7 @@
#include <osl/diagnose.h>
#include <osl/thread.h>
#include <osl/file.h>
-
+#include <rtl/logfile.h>
/*
under WIN32, we use the void* oslModule
as a WIN32 HANDLE (which is also a 32-bit value)
@@ -57,6 +57,8 @@ oslModule SAL_CALL osl_loadModule(rtl_uString *strModuleName, sal_Int32 nRtldMod
rtl_uString* Module = NULL;
oslModule ret = 0;
oslFileError nError;
+
+ RTL_LOGFILE_TRACE1( "{ osl_loadModule start: %S", (LPTSTR)&strModuleName->buffer );
OSL_ASSERT(strModuleName);
@@ -79,6 +81,8 @@ oslModule SAL_CALL osl_loadModule(rtl_uString *strModuleName, sal_Int32 nRtldMod
rtl_uString_release(Module);
SetErrorMode(errorMode);
+ RTL_LOGFILE_TRACE1( "} osl_loadModule end: %S", (LPTSTR)&strModuleName->buffer );
+
return ret;
}