2001-12-15 11:37 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>

This commit is contained in:
Viktor Szakats
2001-12-15 10:37:24 +00:00
parent 348e2bee16
commit b5dad895c4
3 changed files with 13 additions and 0 deletions

View File

@@ -8,6 +8,14 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2001-12-15 11:37 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
* source/rtl/isprint.c
! Fixed DJGPP warning for DOS branch.
* source/rtl/fstemp.c
! One unused #include added. Well, it was used.
2001-12-15 10:53 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
* source/rtl/tbcolumn.prg

View File

@@ -54,6 +54,8 @@
#include "hbapi.h"
#include "hbapifs.h"
#include <errno.h>
/* NOTE: The buffer must be at least _POSIX_PATH_MAX chars long */
static BOOL hb_fsTempName( BYTE * pszBuffer, const BYTE * pszDir, const BYTE * pszPrefix )

View File

@@ -108,6 +108,9 @@ HB_FUNC( ISPRINTER )
/* TODO: Proper COM port checking */
bIsPrinter = TRUE;
}
else
bIsPrinter = FALSE;
#elif defined(HB_OS_WIN_32) && !defined(__RSXNT__)