This commit is contained in:
Andi Jahja
2001-11-21 21:41:46 +00:00
parent 833a5b430a
commit 474e573e44
3 changed files with 10 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2001-11-22 04:45 GMT+0700 Andi Jahja <harbour@cbn.net.id>
* contrib/libnf/getvid.c
! HB_FUNC(_V_SETVPG), use int iPage only if HB_OS_DOS is defined
* source/common/hbfsapi.c
! undefine _NFILE_ before redefining (was defined in BCC's _nfile.h)
2001-11-21 16:40 GMT-3 Horacio Roldan <harbour_ar@yahoo.com.ar>
* source/rdd/dbfcdx/dbfcdx1.c
! fixed eof() bug

View File

@@ -76,9 +76,9 @@ HB_FUNC(_FT_GETVPG)
HB_FUNC(_V_SETVPG)
{
int iPage;
#if defined(HB_OS_DOS)
{
int iPage;
union REGS registers;
iPage=hb_parni(1);
regs.h.ah=0x05;

View File

@@ -55,6 +55,9 @@
#if defined(__BORLANDC__)
#define ___NFILE_H
#ifdef _NFILE_
#undef _NFILE_
#endif
#define _NFILE_ 600
#include <fcntl.h>