From 527cdba06d99c4d5243faf39fc505708b761ec47 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 4 Aug 2006 13:24:49 +0000 Subject: [PATCH] 2006-08-04 15:24 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu) * harbour/include/hbundoc.api + Added _tctemp() undocumented call. * harbour/source/rtl/fserror.c ! Fixed trace message. --- harbour/ChangeLog | 7 +++++++ harbour/include/hbundoc.api | 1 + harbour/source/rtl/fserror.c | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b535e37746..ea34356785 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2006-08-04 15:24 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu) + * harbour/include/hbundoc.api + + Added _tctemp() undocumented call. + + * harbour/source/rtl/fserror.c + ! Fixed trace message. + 2006-07-28 14:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbsetup.h * updated PCODE version number due to recent modifications diff --git a/harbour/include/hbundoc.api b/harbour/include/hbundoc.api index dd6da539af..bd0c268272 100644 --- a/harbour/include/hbundoc.api +++ b/harbour/include/hbundoc.api @@ -93,6 +93,7 @@ #define _tread hb_fsRead #define _trename hb_fsRename #define _trmdir hb_fsRmDir +#define _tctemp(p,a,b) hb_fsCreateTemp( p, "", a, b ) #define _tunlink hb_fsDelete #define _twrite hb_fsWrite diff --git a/harbour/source/rtl/fserror.c b/harbour/source/rtl/fserror.c index 2f3f1dd93d..c1466d19ac 100644 --- a/harbour/source/rtl/fserror.c +++ b/harbour/source/rtl/fserror.c @@ -185,7 +185,7 @@ HB_EXPORT USHORT hb_fsError( void ) /* return real error code of last operation */ HB_EXPORT USHORT hb_fsOsError( void ) { - HB_TRACE(HB_TR_DEBUG, ("hb_fsError()")); + HB_TRACE(HB_TR_DEBUG, ("hb_fsOsError()")); return s_uiOsErrorLast; }