See ChangeLog entry 19990903-19:35 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-09-03 23:48:42 +00:00
parent d2c28aaf4d
commit f7b9fc4ae6
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
19990903-19:35 EDT David G. Holm <dholm@jsd-llc.com>
* source/rtl/console.c
! Added #ifdef HARBOUR_USE_GTAPI/#endif around use of GT API
functions in the new HB_SETPOSBS() function.
* source/rtl/filesys.c
! Added #defines for _getdisk and _chdisk for DJGPP.
19990903-19:00 GMT+1 Victor Szel <info@szelvesz.hu>
* source/itemapi.c
include/itemapi.h

View File

@@ -583,9 +583,10 @@ HARBOUR HB_SETPOSBS( void )
USHORT uiCol;
/* NOTE: Clipper does no checks about reaching the border or anything */
#ifdef HARBOUR_USE_GTAPI
hb_gtGetPos( &uiRow, &uiCol );
hb_gtSetPos( uiRow, uiCol + 1 );
#endif
}
else
hb_errRT_BASE( EG_ARGCOUNT, 3000, NULL, "SETPOSBS" ); /* NOTE: Clipper catches this at compile time! */

View File

@@ -60,6 +60,8 @@
#endif
#if defined(__DJGPP__)
#include <dir.h>
#define _getdrive getdisk
#define _chdrive setdisk
#endif
#if !defined(HAVE_POSIX_IO)