2000-06-02 02:54 UTC+0100 Victor Szakats <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
2000-06-02 01:34:35 +00:00
parent 3cdcdb805f
commit d13e8ab76f
4 changed files with 15 additions and 5 deletions

View File

@@ -4,6 +4,15 @@
* doc/whatsnew.doc
* Bumped version to 0.34 and date to 2000-06-02
* source/rtl/filesys.c
! hb_fsEof() fixed for DJGPP.
* include/Makefile
- hbapiext.h removed
* source/compiler/harbour.c
! Fixed GCC -O2 warning.
2000-06-01 22:18 UTC+0100 Victor Szakats <info@szelvesz.hu>
* source/lang/msgcswin.c

View File

@@ -9,7 +9,6 @@ C_HEADERS=\
extend.h \
hbapi.h \
hbapierr.h \
hbapiext.h \
hbapifs.h \
hbapigt.h \
hbapiitm.h \

View File

@@ -272,12 +272,14 @@ int main( int argc, char * argv[] )
{
PCOMSYMBOL pSym = hb_comp_symbols.pFirst;
char * szFirstFunction ;
char * szFirstFunction;
if( hb_comp_bStartProc )
szFirstFunction = hb_comp_functions.pFirst->szName ;
szFirstFunction = hb_comp_functions.pFirst->szName;
else if( hb_comp_functions.pFirst->pNext )
szFirstFunction = hb_comp_functions.pFirst->pNext->szName ;
szFirstFunction = hb_comp_functions.pFirst->pNext->szName;
else
szFirstFunction = NULL;
while( pSym )
{

View File

@@ -1462,7 +1462,7 @@ BOOL hb_fsFile( BYTE * pFilename )
BOOL hb_fsEof( FHANDLE hFileHandle )
{
#if defined(__CYGWIN__) || defined(OS_UNIX_COMPATIBLE)
#if defined(__DJGPP__) || defined(__CYGWIN__) || defined(OS_UNIX_COMPATIBLE)
long curPos = lseek( hFileHandle, 0L, SEEK_CUR );
long endPos = lseek( hFileHandle, 0L, SEEK_END );
long newPos = lseek( hFileHandle, curPos, SEEK_SET );