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.
This commit is contained in:
Viktor Szakats
2006-08-04 13:24:49 +00:00
parent 52fb87bdd5
commit 527cdba06d
3 changed files with 9 additions and 1 deletions

View File

@@ -8,6 +8,13 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
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

View File

@@ -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

View File

@@ -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;
}