summaryrefslogtreecommitdiff
path: root/sal/osl
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2001-09-04 10:17:45 +0000
committerRüdiger Timm <rt@openoffice.org>2001-09-04 10:17:45 +0000
commit25ecd31d0d512190752ff7eb718ad878b35e35ea (patch)
tree1f6b6c8d9afc02f39236e94c9b1005f46937d92b /sal/osl
parent3df7043f46189c155f11c8c45cc0ba8f43cd0e06 (diff)
#65293# Fix for NT
Diffstat (limited to 'sal/osl')
-rw-r--r--sal/osl/w32/module.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/w32/module.c b/sal/osl/w32/module.c
index 7736cc070b46..10ec9e3235a7 100644
--- a/sal/osl/w32/module.c
+++ b/sal/osl/w32/module.c
@@ -2,9 +2,9 @@
*
* $RCSfile: module.c,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: hro $ $Date: 2001-09-03 10:48:13 $
+ * last change: $Author: rt $ $Date: 2001-09-04 11:17:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -194,7 +194,7 @@ static sal_Bool SAL_CALL _osl_addressGetModuleURL_Windows( void *pv, rtl_uString
// interest. Then copy the information to the buffer pointed
// to by lpMe32 so that it can be returned to the caller.
- if ( Module32First(hModuleSnap, &me32) )
+ if ( lpfnModule32First(hModuleSnap, &me32) )
{
do
{
@@ -209,7 +209,7 @@ static sal_Bool SAL_CALL _osl_addressGetModuleURL_Windows( void *pv, rtl_uString
bSuccess = sal_True;
}
- } while ( !bSuccess && Module32Next( hModuleSnap, &me32 ) );
+ } while ( !bSuccess && lpfnModule32Next( hModuleSnap, &me32 ) );
}