From 400e03243e2dfd615acc2f5a49729e7360cc6a19 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 22 Sep 2009 07:53:16 +0000 Subject: [PATCH] 2009-09-22 09:52 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * source/vm/dynlibhb.c ! Minor typo. --- harbour/ChangeLog | 4 ++++ harbour/source/vm/dynlibhb.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a7c51d00ba..5b5f71b7f8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-09-22 09:52 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * source/vm/dynlibhb.c + ! Minor typo. + 2009-09-22 09:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/hbwince.h * source/common/hbwince.c diff --git a/harbour/source/vm/dynlibhb.c b/harbour/source/vm/dynlibhb.c index 855d46f7da..4d97675dd0 100644 --- a/harbour/source/vm/dynlibhb.c +++ b/harbour/source/vm/dynlibhb.c @@ -105,7 +105,7 @@ HB_FUNC( HB_LIBLOAD ) { LPTSTR lpFileName = HB_TCHAR_CONVTO( hb_parc( 1 ) ); - hDynLib = ( void * ) LoadLibraryA( lpFileName ); + hDynLib = ( void * ) LoadLibrary( lpFileName ); HB_TCHAR_FREE( lpFileName ); }