ChangeLogTag:Mon Aug 09 11:53:18 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>

This commit is contained in:
Gonzalo A. Diethelm
1999-08-09 16:09:24 +00:00
parent 45e040020e
commit 3c1d376903
5 changed files with 17 additions and 4 deletions

View File

@@ -1,3 +1,13 @@
Mon Aug 09 11:53:18 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
* source/Makefile:
Moved the debug directory after rdd.
* source/hbpp/hbpp.c:
* source/rtl/filesys.c:
* source/runner/runner.c:
Got rid of several warnings.
199908.09-15:24 GMT+3 Alexander Kresin
* source/hbpp/hbpp.c
* fixed problem with new DATA implementation

View File

@@ -7,10 +7,10 @@ ROOT = ../
DIRS=\
hbpp \
compiler \
debug \
rtl \
vm \
rdd \
debug \
tools \
runner \

View File

@@ -377,7 +377,7 @@ void ParseCommand( char* sLine, int com_or_xcom, int com_or_tra )
char cmdname[MAX_NAME];
COMMANDS *stcmd;
int mlen,rlen;
int ipos, rez;
int ipos;
NextWord( &sLine, cmdname, FALSE );
stroupper( cmdname );
@@ -1854,4 +1854,4 @@ BOOL OpenInclude( char * szFileName, PATHNAMES *pSearch, FILE** fptr, BOOL bStan
}
return ( *fptr ? TRUE : FALSE );
}
}

View File

@@ -412,7 +412,10 @@ BOOL hb_fsLock ( FHANDLE handle, ULONG start,
ULONG length, USHORT mode )
{
int result=0;
#if defined(_MSC_VER)
ULONG position;
#endif
#if defined(HAVE_POSIX_IO) && !defined(__GNUC__) && !defined(__IBMCPP__)
errno = 0;

View File

@@ -142,7 +142,7 @@ HARBOUR HB_MAIN( void )
{
pSymRead[ ul ].szName = ReadId( file );
pSymRead[ ul ].cScope = ReadByte( file );
pSymRead[ ul ].pFunPtr = ( PHB_FUNC ) ReadByte( file );
pSymRead[ ul ].pFunPtr = ( PHB_FUNC ) (ULONG) ReadByte( file );
pSymRead[ ul ].pDynSym = NULL;
}