20000427-15:34 GMT+1 Victor Szakats <info@szelvesz.hu>
This commit is contained in:
@@ -1,3 +1,21 @@
|
||||
20000427-15:34 GMT+1 Victor Szakats <info@szelvesz.hu>
|
||||
|
||||
* 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 <rglab@imid.med.pl>
|
||||
|
||||
*source/compiler/harbour.c
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -1,8 +0,0 @@
|
||||
@echo off
|
||||
rem
|
||||
rem $Id$
|
||||
rem
|
||||
|
||||
hbdoc -htm categ.lnk hrb.rsp
|
||||
rem cd htm
|
||||
rem start harbour.htm
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user