ChangeLogTag:Mon Aug 09 11:53:18 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -7,10 +7,10 @@ ROOT = ../
|
||||
DIRS=\
|
||||
hbpp \
|
||||
compiler \
|
||||
debug \
|
||||
rtl \
|
||||
vm \
|
||||
rdd \
|
||||
debug \
|
||||
tools \
|
||||
runner \
|
||||
|
||||
|
||||
@@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user