From cb0587d149ceffafb276f5a694104cce5744a2a8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 28 Apr 2000 13:42:52 +0000 Subject: [PATCH] 20000427-15:34 GMT+1 Victor Szakats --- harbour/ChangeLog | 18 +++++++++++++ harbour/doc/genhtm.lnk | 6 ++--- harbour/doc/howtocvs.txt | 2 +- harbour/source/compiler/harbour.c | 8 +++--- harbour/utils/hbdoc/alpha.lnk | 19 -------------- harbour/utils/hbdoc/categ.lnk | 42 ------------------------------- harbour/utils/hbdoc/genhtm.bat | 8 ------ harbour/utils/hbdoc/hrb.rsp | 29 --------------------- harbour/utils/hbdoc/hrbtools.rsp | 36 -------------------------- 9 files changed, 26 insertions(+), 142 deletions(-) delete mode 100644 harbour/utils/hbdoc/alpha.lnk delete mode 100644 harbour/utils/hbdoc/categ.lnk delete mode 100644 harbour/utils/hbdoc/genhtm.bat delete mode 100644 harbour/utils/hbdoc/hrb.rsp delete mode 100644 harbour/utils/hbdoc/hrbtools.rsp diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 849b188a68..2b4aefd5dd 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,21 @@ +20000427-15:34 GMT+1 Victor Szakats + + * source/compiler/harbour.c + ! hb_xgrab() casts added for ICC/OS2. + + * doc/howtocws.txt + ! onelist -> egroups + + * doc/genhtm.lnk + - Removed build number. + + - utils/hbdoc/genhtm.bat + - utils/hbdoc/alpha.lnk + - utils/hbdoc/categ.lnk + - utils/hbdoc/hrb.rsp + - utils/hbdoc/hrbtools.rsp + - Removed files no more needed. + 20000427-20:40 GMT+1 Ryszard Glab *source/compiler/harbour.c diff --git a/harbour/doc/genhtm.lnk b/harbour/doc/genhtm.lnk index 343e5acccc..718670f0a2 100644 --- a/harbour/doc/genhtm.lnk +++ b/harbour/doc/genhtm.lnk @@ -1,8 +1,8 @@ -!name: Harbour build 33 reference Guide +!name: Harbour Reference Guide !credits: Harbour (c) http://www.harbour-project.org - 2000/04/09 build By Luiz Rafael Culik + 2000/04/09 build by Luiz Rafael Culik Functions Documented by: - Chen Kedem, Luiz Rafael Culik,Brian Hays + Chen Kedem, Luiz Rafael Culik, Brian Hays !menu: Reference Functions A-M funcam.ngo Functions N-_ funcn_.ngo diff --git a/harbour/doc/howtocvs.txt b/harbour/doc/howtocvs.txt index dd5ab34d12..d649ca824d 100644 --- a/harbour/doc/howtocvs.txt +++ b/harbour/doc/howtocvs.txt @@ -9,7 +9,7 @@ Here's how to prepare for uploading to the CVS server ===================================================== 1) Read the Harbour FAQ (www.harbour-project.org), monitor the - mailing-list (Harbour at www.onelist.com), consult with the + mailing-list (Harbour at www.egroups.com), consult with the developers, make contributions. This way your chances are high to get a RW access to the CVS. 2) Before uploading anything you'll need Developer (RW) status for the diff --git a/harbour/source/compiler/harbour.c b/harbour/source/compiler/harbour.c index 749167577d..4bf3327720 100644 --- a/harbour/source/compiler/harbour.c +++ b/harbour/source/compiler/harbour.c @@ -560,7 +560,7 @@ void hb_compVariableAdd( char * szVarName, char cValueType ) { BYTE * pBuffer; - pBuffer = hb_xgrab( strlen( szVarName ) + 4 ); + pBuffer = ( BYTE * ) hb_xgrab( strlen( szVarName ) + 4 ); pBuffer[0] = HB_P_LOCALNAME; pBuffer[1] = HB_LOBYTE( wLocal ); @@ -776,7 +776,7 @@ void hb_compFunctionAdd( char * szFunName, HB_SYMBOLSCOPE cScope, int iType ) { BYTE * pBuffer; - pBuffer = hb_xgrab( 3 + strlen( hb_comp_files.pLast->szFileName ) + strlen( szFunName ) ); + pBuffer = ( BYTE * ) hb_xgrab( 3 + strlen( hb_comp_files.pLast->szFileName ) + strlen( szFunName ) ); pBuffer[0] = HB_P_MODULENAME; @@ -2273,7 +2273,7 @@ void hb_compGenPushString( char * szText, ULONG ulStrLen ) if( ulStrLen > 255 ) { - pBuffer = hb_xgrab( ulStrLen + 3 ); + pBuffer = ( BYTE * ) hb_xgrab( ulStrLen + 3 ); pBuffer[0] = HB_P_PUSHSTR; pBuffer[1] = HB_LOBYTE( ulStrLen ); @@ -2285,7 +2285,7 @@ void hb_compGenPushString( char * szText, ULONG ulStrLen ) } else { - pBuffer = hb_xgrab( ulStrLen + 3 ); + pBuffer = ( BYTE * ) hb_xgrab( ulStrLen + 3 ); pBuffer[0] = HB_P_PUSHSTRSHORT; pBuffer[1] = ( BYTE ) ulStrLen; diff --git a/harbour/utils/hbdoc/alpha.lnk b/harbour/utils/hbdoc/alpha.lnk deleted file mode 100644 index 343e5acccc..0000000000 --- a/harbour/utils/hbdoc/alpha.lnk +++ /dev/null @@ -1,19 +0,0 @@ -!name: Harbour build 33 reference Guide -!credits: Harbour (c) http://www.harbour-project.org - 2000/04/09 build By Luiz Rafael Culik - Functions Documented by: - Chen Kedem, Luiz Rafael Culik,Brian Hays -!menu: Reference -Functions A-M funcam.ngo -Functions N-_ funcn_.ngo -Command comm.ngo -Tools Tools.ngo -OOP Commands oopcom.ngo -!menu: Harbour -Compiler Options Compil~1.ngo -GNU License gnulic~1.ngo -GNU License P2 gnulic~2.ngo -License license.ngo -Readme overview.ngo -Harbour Extension harbou~1.ngo - diff --git a/harbour/utils/hbdoc/categ.lnk b/harbour/utils/hbdoc/categ.lnk deleted file mode 100644 index 471e969ae2..0000000000 --- a/harbour/utils/hbdoc/categ.lnk +++ /dev/null @@ -1,42 +0,0 @@ -!name: Harbour Build 31 Reference Guide -!credits: Harbour (c) http://www.harbour-project.org - 2000/01/18 build By Luiz Rafael Culik - Functions Documented by: - Chen Kedem, Luiz Rafael Culik -!Menu: Commands -Command comm.ngo -!menu: A-E -Array array.ngo -Code Block codeblo.ngo -Console Input consimpu.ngo -Conversion conv.ngo -Database database.ngo -Data Input and Output datai.ngo -Dos dos.ngo -!menu:F-N -Error Recovery error.ngo -Enviroment envirom.ngo -Events event.ngo -File Management filemana.ngo -Internal internal.ngo -Gt gt.ngo -Misc misc.ngo -Nation nation.ngo -!menu: O-T -Object Manipulation obj.ngo -Operating System Specific opersyst.ngo -Parameter Checks parame.ngo -Run-Time Library, Strings runtime.ngo -String string.ngo -Strings strings.ngo -Tbrowse Class tbrow.ngo -Terminal terminal.ngo -!menu: U-Z -Unknown unknown.ngo -Utility utility.ngo -Variable management mv.ngo -document doc.ngo -!Menu: Harbour -License license.ngo -Readme readme.ngo -Tools tools.ngo diff --git a/harbour/utils/hbdoc/genhtm.bat b/harbour/utils/hbdoc/genhtm.bat deleted file mode 100644 index 05f8d9d7c1..0000000000 --- a/harbour/utils/hbdoc/genhtm.bat +++ /dev/null @@ -1,8 +0,0 @@ -@echo off -rem -rem $Id$ -rem - -hbdoc -htm categ.lnk hrb.rsp -rem cd htm -rem start harbour.htm diff --git a/harbour/utils/hbdoc/hrb.rsp b/harbour/utils/hbdoc/hrb.rsp deleted file mode 100644 index 2a70b72090..0000000000 --- a/harbour/utils/hbdoc/hrb.rsp +++ /dev/null @@ -1,29 +0,0 @@ -..\..\doc\en\array.txt -..\..\doc\en\binnum.txt -..\..\doc\en\browse.txt -..\..\doc\en\datetime.txt -..\..\doc\en\dbstrux.txt -..\..\doc\en\diskspac.txt -..\..\doc\en\dir.txt -..\..\doc\en\error.txt -..\..\doc\en\file.txt -..\..\doc\en\hvm.txt -..\..\doc\en\input.txt -..\..\doc\en\math.txt -..\..\doc\en\memo.txt -..\..\doc\en\menu.txt -..\..\doc\en\misc.txt -..\..\doc\en\nation.txt -..\..\doc\en\objfunc.txt -..\..\doc\en\rdd.txt -..\..\doc\en\rdddb.txt -..\..\doc\en\rddord.txt -..\..\doc\en\rddmisc.txt -..\..\doc\en\set.txt -..\..\doc\en\string.txt -..\..\doc\en\tclass.txt -..\..\doc\en\terminal.txt -..\..\doc\en\tgetlist.txt -..\..\doc\en\tlabel.txt -..\..\doc\en\treport.txt -..\..\doc\en\var.txt diff --git a/harbour/utils/hbdoc/hrbtools.rsp b/harbour/utils/hbdoc/hrbtools.rsp deleted file mode 100644 index 6cb57a61ac..0000000000 --- a/harbour/utils/hbdoc/hrbtools.rsp +++ /dev/null @@ -1,36 +0,0 @@ -..\..\doc\en\array.txt -..\..\doc\en\binnum.txt -..\..\doc\en\browse.txt -..\..\doc\en\command.txt -..\..\doc\en\datetime.txt -..\..\doc\en\dbstrux.txt -..\..\doc\en\diskspac.txt -..\..\doc\en\dir.txt -..\..\doc\en\error.txt -..\..\doc\en\file.txt -..\..\doc\en\hvm.txt -..\..\doc\en\input.txt -..\..\doc\en\license.txt -..\..\doc\en\math.txt -..\..\doc\en\memo.txt -..\..\doc\en\menu.txt -..\..\doc\en\misc.txt -..\..\doc\en\nation.txt -..\..\doc\en\objfunc.txt -..\..\doc\en\rdd.txt -..\..\doc\en\rdddb.txt -..\..\doc\en\rddord.txt -..\..\doc\en\rddmisc.txt -..\..\doc\en\readme.txt -..\..\doc\en\set.txt -..\..\doc\en\string.txt -..\..\doc\en\tclass.txt -..\..\doc\en\terminal.txt -..\..\doc\en\tgetlist.txt -..\..\doc\en\tlabel.txt -..\..\doc\en\treport.txt -..\..\doc\en\var.txt -..\..\doc\en\subcodes.txt -..\..\doc\en\harbext.txt -..\..\doc\en\gnulice.txt -..\..\doc\en\compiler.txt