20000302-11:21 GMT+1 Victor Szakats <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
2000-03-02 11:58:22 +00:00
parent 3aa7c99ce6
commit 3e3819e705
169 changed files with 954 additions and 467 deletions

View File

@@ -6,3 +6,6 @@ os2
os2/*
w32
w32/*
b16/*
b32/*
vc/*

View File

@@ -1,3 +1,40 @@
20000302-11:21 GMT+1 Victor Szakats <info@szelvesz.hu>
* config/rules.cf
makefile.bc
makefile.vc
+ -es2 added as a default Harbour switch.
WARNING! HBDOC will not compile, since it has warnings.
* contrib/*
include/*
doc/*
source/*
* Changed the name of all header files, which didn't have a "hb" prefix.
WARNING! All .PRG files must be recompiled. Note that from now on the
most common header file EXTEND.H is only a CA-Cl*pper compatibility
file, in for new Harbour code you should use HBAPI.H instead.
errorapi.h -> hbapierr.h
filesys.h -> hbapifs.h
gtapi.h -> hbapigt.h
itemapi.h -> hbapiitm.h
langapi.h -> hbapilng.h
mouseapi.h -> hbapimou.h
rddapi.h -> hbapirdd.h
box.h -> hbbox.h
compiler.h -> hbcomp.h
setcurs.h -> hbcursor.h
dates.h -> hbdate.h
expropt.h -> hbexprop.h
init.h -> hbinit.h
inkey.h -> hbinkey.h
macro.h -> hbmacro.h
pcode.h -> hbpcode.h
set.h -> hbset.h
ctoharb.h -> hbvm.h
hb_vmpub.h -> hbvmpub.h
extend.h -> hbapi.h
hbfsapi.h -> hbapifs.h (merged into)
20000302-12:35 GMT+1 Ryszard Glab <rglab@imid.med.pl>
*source/pp/hbpp.c
@@ -31,6 +68,7 @@
*utils/hbdoc/hrb.rsp
*utils/hbdoc/hrbtools.rsp
*Change to use the new docs dir
20000301-14:34 GMT+1 Victor Szakats <info@szelvesz.hu>
* source/rtl/console.c
source/rtl/oldclear.c

View File

@@ -20,7 +20,7 @@ HB := $(HB_BIN_COMPILE)/
endif
HB := $(HB)harbour$(EXE_EXT)
HB_FLAGS = -n -q0 -w -I$(TOP) -I$(HB_INC_COMPILE)
HB_FLAGS = -n -q0 -w -es2 -I$(TOP) -I$(HB_INC_COMPILE)
# The rule to link an executable.
ifeq ($(LD_RULE),)

View File

@@ -24,8 +24,8 @@
#define INITGUID
#include "windows.h"
#include "winuser.h"
#include "extend.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbvm.h"
#include "errno.h"
#include "objbase.h"
#include "tchar.h"

View File

@@ -54,8 +54,8 @@
#include <math.h>
#include <stdlib.h>
#include <ctype.h>
#include "extend.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbdefs.h"
#include <sql.h>
#include <sqlext.h>

View File

@@ -38,13 +38,13 @@
#define MAX_STR_LEN 255
#include "windows.h"
#include "extend.h"
#include "init.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbinit.h"
#include "hbapiitm.h"
#include "rddsys.ch"
#include "langapi.h"
#include "dates.h"
#include "errorapi.h"
#include "hbapilng.h"
#include "hbdate.h"
#include "hbapierr.h"
#include "rddads.h"
ERRCODE adsRecCount( ADSAREAP pArea, ULONG * pRecCount );

View File

@@ -34,13 +34,13 @@
*/
#include "windows.h"
#include "extend.h"
#include "init.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbinit.h"
#include "hbapiitm.h"
#include "rddsys.ch"
#include "langapi.h"
#include "dates.h"
#include "errorapi.h"
#include "hbapilng.h"
#include "hbdate.h"
#include "hbapierr.h"
#include "rddads.h"
int adsFileType = ADS_CDX;

View File

@@ -33,7 +33,7 @@
*
*/
#include "rddapi.h"
#include "hbapirdd.h"
#include "ace.h"
/*

View File

@@ -49,9 +49,9 @@ Let's review the Test.prg pcode structure in more detail:
0023 (60) ENDPROC 60
We could define a pcode.h file to better read that pcode:
We could define a hbpcode.h file to better read that pcode:
pcode.h
hbpcode.h
#define LINE 0x2A
#define SYMF 0x13

View File

@@ -20,7 +20,7 @@ interface of each subsystem.
The main execution loop is defined in the C function named VirtualMachine(),
which receives two parameters: the pcode instructions to execute and the
local symbol table (a portion of the OBJs (static) symbol table) used by
that pcode: (please review pcode.h for the currently implemented pcode
that pcode: (please review hbpcode.h for the currently implemented pcode
opcodes)
VM( pcode, local symbols )
@@ -299,7 +299,7 @@ vice-versa.
Answer :
Harbour opcodes are defined in pcode.h. We are trying to use very easy to
Harbour opcodes are defined in hbpcode.h. We are trying to use very easy to
remember mnemonics, so PUSHWORD seems easier than PUSHW. The opcodes values
are meaningless as they are just used by a C language switch sentence (in
fact there is a powerful optimization which is to use the pcode opcodes

View File

@@ -5,33 +5,35 @@
ROOT = ../
C_HEADERS=\
box.h \
clipdefs.h \
compiler.h \
ctoharb.h \
dates.h \
errorapi.h \
extend.h \
filesys.h \
gtapi.h \
hbapierr.h \
hbapiext.h \
hbapifs.h \
hbapigt.h \
hbapiitm.h \
hbapilng.h \
hbapimou.h \
hbapirdd.h \
hbbox.h \
hbcomp.h \
hbcursor.h \
hbdate.h \
hbdefs.h \
hberrors.h \
hbfsapi.h \
hbexprop.h \
hbinit.h \
hbinkey.h \
hbmacro.h \
hbpcode.h \
hbpp.h \
hbset.h \
hbsetup.h \
hbtrace.h \
hbver.h \
hbvm.h \
hbvmpub.h \
hbwinapi.h \
hb_vmpub.h \
init.h \
inkey.h \
itemapi.h \
langapi.h \
mouseapi.h \
pcode.h \
rddapi.h \
set.h \
setcurs.h \
PRG_HEADERS=\
achoice.ch \
@@ -74,3 +76,4 @@ API_HEADERS=\
vm.api \
include $(TOP)$(ROOT)config/header.cf

479
harbour/include/hbapi.h Normal file
View File

@@ -0,0 +1,479 @@
/*
* $Id$
*/
/*
* Harbour Project source code:
* Header file for the Extend API, Array API, misc API and base declarations
*
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
* www - http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version, with one exception:
*
* The exception is that if you link the Harbour Runtime Library (HRL)
* and/or the Harbour Virtual Machine (HVM) with other files to produce
* an executable, this does not by itself cause the resulting executable
* to be covered by the GNU General Public License. Your use of that
* executable is in no way restricted on account of linking the HRL
* and/or HVM code into it.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
*
*/
/* TOFIX: There are several things in this file which are not part of the
standard Harbour API, in other words these things are not
guaranteed to remain unchanged. To avoid confusion these should be
moved to somewhere else (like HBRTL.H). [vszakats] */
#ifndef HB_APIEXT_H_
#define HB_APIEXT_H_
#include "hbdefs.h"
#include "hbvmpub.h"
/* items types and type checking macros */
#define IT_NIL ( ( USHORT ) 0x0000 )
#define IT_POINTER ( ( USHORT ) 0x0001 )
#define IT_INTEGER ( ( USHORT ) 0x0002 )
#define IT_LONG ( ( USHORT ) 0x0008 )
#define IT_DOUBLE ( ( USHORT ) 0x0010 )
#define IT_DATE ( ( USHORT ) 0x0020 )
#define IT_LOGICAL ( ( USHORT ) 0x0080 )
#define IT_SYMBOL ( ( USHORT ) 0x0100 )
#define IT_ALIAS ( ( USHORT ) 0x0200 )
#define IT_STRING ( ( USHORT ) 0x0400 )
#define IT_MEMOFLAG ( ( USHORT ) 0x0800 )
#define IT_MEMO ( IT_MEMOFLAG | IT_STRING )
#define IT_BLOCK ( ( USHORT ) 0x1000 )
#define IT_BYREF ( ( USHORT ) 0x2000 )
#define IT_MEMVAR ( ( USHORT ) 0x4000 )
#define IT_ARRAY ( ( USHORT ) 0x8000 )
#define IT_OBJECT IT_ARRAY
#define IT_NUMERIC ( ( USHORT ) ( IT_INTEGER | IT_LONG | IT_DOUBLE ) )
#define IT_ANY ( ( USHORT ) 0xFFFF )
#define IS_BYREF( p ) ( ( p )->type & IT_BYREF )
#define IS_OF_TYPE( p, t ) ( ( ( p )->type & ~IT_BYREF ) == t )
#define IS_ARRAY( p ) IS_OF_TYPE( p, IT_ARRAY )
#define IS_NIL( p ) IS_OF_TYPE( p, IT_NIL )
#define IS_BLOCK( p ) IS_OF_TYPE( p, IT_BLOCK )
#define IS_DATE( p ) IS_OF_TYPE( p, IT_DATE )
#define IS_DOUBLE( p ) IS_OF_TYPE( p, IT_DOUBLE )
#define IS_INTEGER( p ) IS_OF_TYPE( p, IT_INTEGER )
#define IS_LOGICAL( p ) IS_OF_TYPE( p, IT_LOGICAL )
#define IS_LONG( p ) IS_OF_TYPE( p, IT_LONG )
#define IS_NUMERIC( p ) ( ( p )->type & IT_NUMERIC )
#define IS_OBJECT( p ) IS_OF_TYPE( p, IT_OBJECT )
#define IS_STRING( p ) IS_OF_TYPE( p, IT_STRING )
#define IS_MEMO( p ) IS_OF_TYPE( p, IT_MEMO )
#define IS_SYMBOL( p ) IS_OF_TYPE( p, IT_SYMBOL )
#define IS_MEMVAR( p ) IS_OF_TYPE( p, IT_MEMVAR )
#define IS_POINTER( p ) IS_OF_TYPE( p, IT_POINTER )
#define ISNIL( n ) ( hb_param( n, IT_ANY ) == NULL || IS_NIL( hb_param( n, IT_ANY ) ) ) /* NOTE: Intentionally using a different method */
#define ISCHAR( n ) ( hb_param( n, IT_STRING ) != NULL )
#define ISNUM( n ) ( hb_param( n, IT_NUMERIC ) != NULL )
#define ISLOG( n ) ( hb_param( n, IT_LOGICAL ) != NULL )
#define ISDATE( n ) ( hb_param( n, IT_DATE ) != NULL )
#define ISMEMO( n ) ( hb_param( n, IT_MEMO ) != NULL )
#define ISBYREF( n ) ( hb_parinfo( n ) & IT_BYREF ) /* NOTE: Intentionally using a different method */
#define ISARRAY( n ) ( hb_param( n, IT_ARRAY ) != NULL )
#define ISBLOCK( n ) ( hb_param( n, IT_BLOCK ) != NULL ) /* Not available in CA-Cl*pper. */
#define ISPOINTER( n ) ( hb_param( n, IT_POINTER ) != NULL ) /* Not available in CA-Cl*pper. */
#define PCOUNT hb_pcount()
#define ALENGTH( n ) hb_parinfa( n, 0 )
/* forward declarations */
struct _HB_CODEBLOCK;
struct _HB_BASEARRAY;
struct _HB_ITEM;
struct _HB_VALUE;
/* Internal structures that holds data */
struct hb_struArray
{
struct _HB_BASEARRAY * value;
};
struct hb_struBlock
{
LONG statics;
USHORT lineno;
USHORT paramcnt;
struct _HB_CODEBLOCK * value;
};
struct hb_struDate
{
LONG value;
};
/* this definition signals that number of decimal places for double value
* was not specified at compile time (the value is a result of optimization
* performed by the compiler)
*/
#define HB_DEFAULT_DECIMALS 255
struct hb_struDouble
{
USHORT length;
USHORT decimal;
double value;
};
struct hb_struInteger
{
USHORT length;
int value;
};
struct hb_struLogical
{
BOOL value;
};
struct hb_struLong
{
USHORT length;
long value;
};
struct hb_struMemvar
{
struct _HB_VALUE ** itemsbase;
LONG offset;
LONG value;
};
struct hb_struPointer
{
void * value;
};
struct hb_struRefer
{
struct _HB_ITEM ** itemsbase;
LONG offset;
LONG value;
};
struct hb_struString
{
ULONG length;
char * value;
};
struct hb_struSymbol
{
LONG stackbase;
USHORT lineno;
USHORT paramcnt;
PHB_SYMB value;
};
/* items hold at the virtual machine stack */
typedef struct _HB_ITEM
{
USHORT type;
union
{
struct hb_struArray asArray;
struct hb_struBlock asBlock;
struct hb_struDate asDate;
struct hb_struDouble asDouble;
struct hb_struInteger asInteger;
struct hb_struLogical asLogical;
struct hb_struLong asLong;
struct hb_struMemvar asMemvar;
struct hb_struPointer asPointer;
struct hb_struRefer asRefer;
struct hb_struString asString;
struct hb_struSymbol asSymbol;
} item;
} HB_ITEM, * PHB_ITEM, * HB_ITEM_PTR;
typedef struct _HB_BASEARRAY
{
PHB_ITEM pItems; /* pointer to the array items */
ULONG ulLen; /* number of items in the array */
USHORT uiHolders; /* number of holders of this array */
USHORT uiClass; /* offset to the classes base if it is an object */
USHORT uiPrevCls; /* for fixing after access super */
} HB_BASEARRAY, * PHB_BASEARRAY, * HB_BASEARRAY_PTR;
/* stack managed by the virtual machine */
typedef struct
{
PHB_ITEM pItems; /* pointer to the stack items */
PHB_ITEM pPos; /* pointer to the latest used item */
LONG wItems; /* total items that may be holded on the stack */
HB_ITEM Return; /* latest returned value */
PHB_ITEM pBase; /* stack frame position for the current function call */
PHB_ITEM pEvalBase; /* stack frame position for the evaluated codeblock */
int iStatics; /* statics base for the current function call */
char szDate[ 9 ]; /* last returned date from _pards() yyyymmdd format */
} HB_STACK;
/* internal structure for codeblocks */
typedef struct _HB_CODEBLOCK
{
BYTE * pCode; /* codeblock pcode */
PHB_ITEM pLocals; /* table with referenced local variables */
USHORT uiLocals; /* number of referenced local variables */
PHB_SYMB pSymbols; /* codeblocks symbols */
ULONG ulCounter; /* numer of references to this codeblock */
BOOL dynBuffer; /* is pcode buffer allocated dynamically */
} HB_CODEBLOCK, * PHB_CODEBLOCK, * HB_CODEBLOCK_PTR;
typedef struct _HB_VALUE
{
HB_ITEM item;
ULONG counter;
HB_HANDLE hPrevMemvar;
} HB_VALUE, * PHB_VALUE, * HB_VALUE_PTR;
/* RDD method return codes */
typedef USHORT ERRCODE;
#define SUCCESS 0
#define FAILURE 1
extern HB_STACK hb_stack;
extern HB_SYMB hb_symEval;
/* Extend API */
extern char * hb_parc( int iParam, ... ); /* retrieve a string parameter */
extern ULONG hb_parclen( int iParam, ... ); /* retrieve a string parameter length */
extern ULONG hb_parcsiz( int iParam, ... );
extern char * hb_pards( int iParam, ... ); /* retrieve a date as a string yyyymmdd */
extern char * hb_pardsbuff( char * szDate, int iParam, ... ); /* retrieve a date as a string yyyymmdd */
extern ULONG hb_parinfa( int iParamNum, ULONG uiArrayIndex );
extern int hb_parinfo( int iParam ); /* Determine the param count or data type */
extern int hb_parl( int iParam, ... ); /* retrieve a logical parameter as an int */
extern double hb_parnd( int iParam, ... ); /* retrieve a numeric parameter as a double */
extern int hb_parni( int iParam, ... ); /* retrieve a numeric parameter as a integer */
extern long hb_parnl( int iParam, ... ); /* retrieve a numeric parameter as a long */
extern PHB_ITEM hb_param( int iParam, int iMask ); /* retrieve a generic parameter */
extern int hb_pcount( void ); /* returns the number of suplied parameters */
extern void hb_ret( void ); /* post a NIL return value */
extern void hb_retc( char * szText ); /* returns a string */
extern void hb_retclen( char * szText, ULONG ulLen ); /* returns a string with a specific length */
extern void hb_retds( char * szDate ); /* returns a date, must use yyyymmdd format */
extern void hb_retl( int iTrueFalse ); /* returns a logical integer */
extern void hb_retnd( double dNumber ); /* returns a double */
extern void hb_retni( int iNumber ); /* returns a integer number */
extern void hb_retnl( long lNumber ); /* returns a long number */
extern void hb_retnlen( double dNumber, int iWidth, int iDec ); /* returns a double, with specific width and decimals */
extern void hb_retndlen( double dNumber, int iWidth, int iDec ); /* returns a double, with specific width and decimals */
extern void hb_retnilen( int iNumber, int iWidth ); /* returns a integer number, with specific width */
extern void hb_retnllen( long lNumber, int iWidth ); /* returns a long number, with specific width */
extern void hb_reta( ULONG ulLen ); /* returns an array with a specific length */
extern void hb_storc( char * szText, int iParam, ... ); /* stores a szString on a variable by reference */
extern void hb_storclen( char * szText, ULONG ulLength, int iParam, ... ); /* stores a fixed length string on a variable by reference */
extern void hb_stords( char * szDate, int iParam, ... ); /* szDate must have yyyymmdd format */
extern void hb_storl( int iLogical, int iParam, ... ); /* stores a logical integer on a variable by reference */
extern void hb_storni( int iValue, int iParam, ... ); /* stores an integer on a variable by reference */
extern void hb_stornl( long lValue, int iParam, ... ); /* stores a long on a variable by reference */
extern void hb_stornd( double dValue, int iParam, ... ); /* stores a double on a variable by reference */
extern void hb_xinit( void ); /* Initialize fixed memory subsystem */
extern void hb_xexit( void ); /* Deinitialize fixed memory subsystem */
extern void * hb_xalloc( ULONG ulSize ); /* allocates memory, returns NULL on failure */
extern void * hb_xgrab( ULONG ulSize ); /* allocates memory, exists on failure */
extern void hb_xfree( void * pMem ); /* frees memory */
extern void * hb_xrealloc( void * pMem, ULONG ulSize ); /* reallocates memory */
extern ULONG hb_xsize( void * pMem ); /* returns the size of an allocated memory block */
extern ULONG hb_xquery( USHORT uiMode ); /* Query different types of memory information */
#if UINT_MAX == ULONG_MAX
/* NOTE: memcpy/memset can work with ULONG data blocks */
#define hb_xmemcpy memcpy
#define hb_xmemset memset
#else
/* NOTE: otherwise, the hb_xmemcpy and hb_xmemset functions
will be used to copy and/or set ULONG data blocks */
extern void * hb_xmemcpy( void * pDestArg, void * pSourceArg, ULONG ulLen ); /* copy more than memcpy() can */
extern void * hb_xmemset( void * pDestArg, int iFill, ULONG ulLen ); /* set more than memset() can */
#endif
/* array management */
extern BOOL hb_arrayError( PHB_ITEM pArray, ULONG ulIndex, BOOL bAssign ); /* Checks if the passed parameters are valid, launches runtim error if needed */
extern BOOL hb_arrayNew( PHB_ITEM pItem, ULONG ulLen ); /* creates a new array */
extern ULONG hb_arrayLen( PHB_ITEM pArray ); /* retrives the array len */
extern BOOL hb_arrayIsObject( PHB_ITEM pArray ); /* retrives if the array is an object */
extern BOOL hb_arrayAdd( PHB_ITEM pArray, PHB_ITEM pItemValue );
extern BOOL hb_arrayIns( PHB_ITEM pArray, ULONG ulIndex );
extern BOOL hb_arrayDel( PHB_ITEM pArray, ULONG ulIndex );
extern BOOL hb_arraySize( PHB_ITEM pArray, ULONG ulLen ); /* sets the array total length */
extern BOOL hb_arrayLast( PHB_ITEM pArray, PHB_ITEM pResult );
extern BOOL hb_arrayRelease( PHB_ITEM pArray ); /* releases an array - don't call it - use ItemRelease() !!! */
extern BOOL hb_arraySet( PHB_ITEM pArray, ULONG ulIndex, PHB_ITEM pItem ); /* sets an array element */
extern BOOL hb_arrayGet( PHB_ITEM pArray, ULONG ulIndex, PHB_ITEM pItem ); /* retrieves an item */
extern PHB_ITEM hb_arrayGetItemPtr( PHB_ITEM pArray, ULONG ulIndex ); /* returns pointer to specified element of the array */
extern ULONG hb_arrayCopyC( PHB_ITEM pArray, ULONG ulIndex, char * szBuffer, ULONG ulLen );
extern char * hb_arrayGetC( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the string contained on an array element */
extern char * hb_arrayGetCPtr( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the string pointer on an array element */
extern ULONG hb_arrayGetCLen( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the string length contained on an array element */
extern BOOL hb_arrayGetL( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the logical value contained on an array element */
extern int hb_arrayGetNI( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the int value contained on an array element */
extern long hb_arrayGetNL( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the long numeric value contained on an array element */
extern double hb_arrayGetND( PHB_ITEM pArray, ULONG ulIndex ); /* retrieves the double value contained on an array element */
extern char * hb_arrayGetDS( PHB_ITEM pArray, ULONG ulIndex, char * szDate ); /* retrieves the date value contained on an array element */
extern USHORT hb_arrayGetType( PHB_ITEM pArray, ULONG ulIndex );
extern BOOL hb_arrayFill( PHB_ITEM pArray, PHB_ITEM pValue, ULONG * pulStart, ULONG * pulCount );
extern ULONG hb_arrayScan( PHB_ITEM pArray, PHB_ITEM pValue, ULONG * pulStart, ULONG * pulCount );
extern BOOL hb_arrayEval( PHB_ITEM pArray, PHB_ITEM bBlock, ULONG * pulStart, ULONG * pulCount );
extern BOOL hb_arrayCopy( PHB_ITEM pSrcArray, PHB_ITEM pDstArray, ULONG * pulStart, ULONG * pulCount, ULONG * pulTarget );
extern PHB_ITEM hb_arrayClone( PHB_ITEM pArray );
/* string management */
extern int hb_stricmp( const char * s1, const char * s2 );
extern int hb_strnicmp( const char * s1, const char * s2, ULONG ulLen );
extern char * hb_strupr( char * pszText );
extern char * hb_strdup( const char * pszText );
extern BOOL hb_strMatchRegExp( const char * szString, const char * szMask );
extern BOOL hb_strEmpty( const char * szText, ULONG ulLen );
extern void hb_strDescend( char * szStringTo, const char * szStringFrom, ULONG ulLen );
extern ULONG hb_strAt( const char * szSub, ULONG ulSubLen, const char * szText, ULONG ulLen );
extern char * hb_strUpper( char * szText, ULONG ulLen );
extern char * hb_strLower( char * szText, ULONG ulLen );
extern char * hb_strncpyUpper( char * pDest, const char * pSource, ULONG ulLen );
extern double hb_strVal( const char * szText );
extern char * hb_strLTrim( const char * szText, ULONG * ulLen );
extern ULONG hb_strRTrimLen( const char * szText, ULONG ulLen, BOOL bAnySpace );
extern double hb_numRound( double dResult, int iDec );
/* class management */
extern void hb_clsReleaseAll( void ); /* releases all defined classes */
/* object management */
extern char * hb_objGetClsName( PHB_ITEM pObject ); /* retrieves an object class name */
extern PHB_FUNC hb_objGetMethod( PHB_ITEM pObject, PHB_SYMB pSymMsg ); /* returns the method pointer of a object class */
extern ULONG hb_objHasMsg( PHB_ITEM pObject, char * szString );
/* dynamic symbol table management */
extern PHB_DYNS hb_dynsymGet( char * szName ); /* finds and creates a dynamic symbol if not found */
extern PHB_DYNS hb_dynsymNew( PHB_SYMB pSymbol ); /* creates a new dynamic symbol based on a local one */
extern PHB_DYNS hb_dynsymFind( char * szName ); /* finds a dynamic symbol */
extern PHB_DYNS hb_dynsymFindName( char * szName ); /* converts to uppercase and finds a dynamic symbol */
extern void hb_dynsymLog( void ); /* displays all dynamic symbols */
extern void hb_dynsymRelease( void ); /* releases the memory of the dynamic symbol table */
extern void hb_dynsymEval( PHB_DYNS_FUNC, void * ); /* enumerates all dynamic symbols */
/* Command line and environment argument management */
extern void hb_cmdargInit( int argc, char * argv[] );
extern int hb_cmdargARGC( void );
extern char ** hb_cmdargARGV( void );
extern BOOL hb_cmdargIsInternal( const char * szArg );
extern BOOL hb_cmdargCheck( const char * pszName ); /* Check if a given internal switch (like //INFO) was set */
extern char * hb_cmdargString( const char * pszName ); /* Returns the string value of an internal switch (like //TEMPPATH:"C:\") */
extern int hb_cmdargNum( const char * pszName ); /* Returns the numeric value of an internal switch (like //F:90) */
extern void hb_cmdargProcessVM( void );
/* Symbol management */
extern PHB_SYMB hb_symbolNew( char * szName );
/* Codeblock management */
extern HB_CODEBLOCK_PTR hb_codeblockNew( BYTE *, USHORT, USHORT *, PHB_SYMB );
extern HB_CODEBLOCK_PTR hb_codeblockMacroNew( BYTE *, USHORT );
extern void hb_codeblockDelete( PHB_ITEM );
extern PHB_ITEM hb_codeblockGetVar( PHB_ITEM, LONG );
extern PHB_ITEM hb_codeblockGetRef( PHB_ITEM, PHB_ITEM );
extern void hb_codeblockEvaluate( PHB_ITEM );
extern void hb_codeblockCopy( PHB_ITEM, PHB_ITEM );
/* memvars subsystem */
extern HB_HANDLE hb_memvarValueNew( PHB_ITEM, BOOL );
extern HB_VALUE_PTR * hb_memvarValueBaseAddress( void );
extern void hb_memvarsInit( void );
extern void hb_memvarsRelease( void );
extern void hb_memvarValueIncRef( HB_HANDLE );
extern void hb_memvarValueDecRef( HB_HANDLE );
extern void hb_memvarSetValue( PHB_SYMB, HB_ITEM_PTR );
extern ERRCODE hb_memvarGet( HB_ITEM_PTR, PHB_SYMB );
extern void hb_memvarGetValue( HB_ITEM_PTR, PHB_SYMB );
extern void hb_memvarGetRefer( HB_ITEM_PTR, PHB_SYMB );
extern ULONG hb_memvarGetPrivatesBase( void );
extern void hb_memvarSetPrivatesBase( ULONG );
extern void hb_memvarNewParameter( PHB_SYMB, HB_ITEM_PTR );
extern char * hb_memvarGetStrValuePtr( char *, ULONG * );
/* console I/O subsystem */
extern void hb_consoleInitialize( void );
extern void hb_consoleRelease( void );
extern char * hb_consoleGetNewLine( void );
extern void hb_outstd( char * pStr, ULONG ulLen );
extern void hb_outerr( char * pStr, ULONG ulLen );
extern USHORT hb_setCursor( BOOL bSetCursor, USHORT usNewCursor );
extern void hb_tone( double dFrequency, double dDuration );
extern char * hb_setColor( char * );
/* compiler and macro compiler */
extern char * hb_compReservedName( char * );
/* macro compiler */
typedef struct HB_CBVAR_ /* This structure holds local variables declared in a codeblock */
{
char * szName;
BYTE bType;
struct HB_CBVAR_ * pNext;
} HB_CBVAR, *HB_CBVAR_PTR;
typedef struct HB_PCODE_INFO_ /* compiled pcode container */
{
BYTE * pCode; /* pointer to a memory block where pcode is stored */
ULONG lPCodeSize; /* total memory size for pcode */
ULONG lPCodePos; /* actual pcode offset */
struct HB_PCODE_INFO_ *pPrev;
HB_CBVAR_PTR pLocals;
} HB_PCODE_INFO, * HB_PCODE_INFO_PTR;
typedef struct HB_MACRO_ /* a macro compiled pcode container */
{
char * string; /* compiled string */
ULONG length; /* length of the string */
ULONG pos; /* current position inside of compiled string */
int Flags; /* some flags we may need */
int status; /* status of compilation */
HB_PCODE_INFO_PTR pCodeInfo; /* pointer to pcode buffer and info */
void * pParseInfo; /* data needed by the parser - it should be 'void *' to allow different implementation of macr compiler */
BOOL bName10; /* are we limiting identifier names to 10 chars ? */
BOOL bShortCuts; /* are we using logical shorcuts (in OR/AND) */
} HB_MACRO, * HB_MACRO_PTR;
extern void hb_macroGetValue( HB_ITEM_PTR );
extern void hb_macroSetValue( HB_ITEM_PTR );
extern void hb_macroTextValue( HB_ITEM_PTR );
extern void hb_macroPushSymbol( HB_ITEM_PTR );
extern void hb_macroRun( HB_MACRO_PTR );
extern HB_MACRO_PTR hb_macroCompile( char * );
extern void hb_macroDelete( HB_MACRO_PTR );
extern char * hb_macroTextSubst( char *, ULONG * );
extern BOOL hb_macroIsIdent( char * );
extern void hb_macroPopAliasedValue( HB_ITEM_PTR, HB_ITEM_PTR );
extern void hb_macroPushAliasedValue( HB_ITEM_PTR, HB_ITEM_PTR );
extern char * hb_macroGetType( HB_ITEM_PTR );
/* misc */
extern char * hb_version( USHORT uiMode );
extern char * hb_valtypeGet( HB_ITEM_PTR );
#endif /* HB_APIEXT_H_ */

View File

@@ -33,10 +33,10 @@
*
*/
#ifndef HB_ERRORAPI_H_
#define HB_ERRORAPI_H_
#ifndef HB_APIERR_H_
#define HB_APIERR_H_
#include "extend.h"
#include "hbapi.h"
#include "error.ch"
/* Error codes (returned from hb_errLaunch()) */
@@ -151,4 +151,4 @@ typedef struct HB_ERROR_INFO_
/* set/get current error handler */
extern HB_ERROR_INFO_PTR hb_errorHandler( HB_ERROR_INFO_PTR );
#endif /* HB_ERRORAPI_H_ */
#endif /* HB_APIERR_H_ */

View File

@@ -51,11 +51,11 @@
*
*/
#ifndef HB_FILESYS_H_
#define HB_FILESYS_H_
#ifndef HB_APIFS_H_
#define HB_APIFS_H_
#include "extend.h"
#include "hbfsapi.h"
#include "hbapi.h"
#include "hbapifs.h"
#include "fileio.ch"
#define FS_ERROR F_ERROR
@@ -109,4 +109,17 @@ extern void hb_fsSetError ( USHORT uiError );
extern USHORT hb_fsWrite ( FHANDLE hFileHandle, BYTE * pBuff, USHORT ulCount );
extern ULONG hb_fsWriteLarge ( FHANDLE hFileHandle, BYTE * pBuff, ULONG ulCount );
#endif /* HB_FILESYS_H_ */
/* Filename support */
typedef struct
{
char szBuffer[ _POSIX_PATH_MAX + 3 + 10 ]; /* TOFIX: +10 is for the drive letter support, and should be changed to some manifest constant */
char * szPath;
char * szName;
char * szExtension;
char * szDrive;
} HB_FNAME, * PHB_FNAME, * HB_FNAME_PTR;
extern PHB_FNAME hb_fsFNameSplit( char * pszFileName ); /* Split given filename into path, name and extension */
extern char * hb_fsFNameMerge( char * pszFileName, PHB_FNAME pFileName ); /* This function joins path, name and extension into a string with a filename */
#endif /* HB_APIFS_H_ */

View File

@@ -33,13 +33,13 @@
*
*/
#ifndef HB_GTAPI_H_
#define HB_GTAPI_H_
#ifndef HB_APIGT_H_
#define HB_APIGT_H_
#include "extend.h"
#include "hbapi.h"
#include "color.ch"
#include "setcurs.h"
#include "box.h"
#include "hbcursor.h"
#include "hbbox.h"
/* NOTE: The declaration of hb_gtSetPos(), hb_gtGetPos(), hb_gtWrite(),
hb_gtWriteAt(), hb_gtRepChar() differs in parameter types from the
@@ -111,4 +111,4 @@ extern BOOL hb_gt_GetBlink( void );
extern void hb_gt_SetBlink( BOOL bBlink );
extern void hb_gt_Replicate( BYTE byChar, ULONG ulLen );
#endif /* HB_GTAPI_H_ */
#endif /* HB_APIGT_H_ */

View File

@@ -33,10 +33,10 @@
*
*/
#ifndef HB_ITEMAPI_H_
#define HB_ITEMAPI_H_
#ifndef HB_APIITM_H_
#define HB_APIITM_H_
#include "extend.h"
#include "hbapi.h"
#define HB_EVAL_PARAM_MAX_ 9
@@ -103,4 +103,4 @@ extern char * hb_itemStr ( PHB_ITEM pNumber, PHB_ITEM pWidth, PHB_ITEM pD
extern char * hb_itemString ( PHB_ITEM pItem, ULONG * ulLen, BOOL * bFreeReq ); /* Convert any scalar to a string */
extern PHB_ITEM hb_itemValToStr ( PHB_ITEM pItem ); /* Convert any scalar to a string */
#endif /* HB_ITEMAPI_H_ */
#endif /* HB_APIITM_H_ */

View File

@@ -33,8 +33,8 @@
*
*/
#ifndef HB_LANGAPI_H_
#define HB_LANGAPI_H_
#ifndef HB_APILNG_H_
#define HB_APILNG_H_
#define HB_LANG_TEXT_DATEFMT 0
#define HB_LANG_TEXT_YESCHAR 1
@@ -103,4 +103,4 @@ extern char * hb_langDGetErrorIntr ( ULONG ulIndex );
extern PHB_LANG hb_langNew ( void );
extern void hb_langDelete ( PHB_LANG lang );
#endif /* HB_LANGAPI_H_ */
#endif /* HB_APILNG_H_ */

View File

@@ -33,10 +33,10 @@
*
*/
#ifndef HB_MOUSEAPI_H_
#define HB_MOUSEAPI_H_
#ifndef HB_APIMOU_H_
#define HB_APIMOU_H_
#include "extend.h"
#include "hbapi.h"
/* Public interface. These should never change, only be added to. */
@@ -68,4 +68,4 @@ extern int hb_mouse_CountButton( void );
extern void hb_mouse_SetBounds( int iTop, int iLeft, int iBottom, int iRight );
extern void hb_mouse_GetBounds( int * piTop, int * piLeft, int * piBottom, int * piRight );
#endif /* HB_MOUSEAPI_H_ */
#endif /* HB_APIMOU_H_ */

View File

@@ -33,10 +33,10 @@
*
*/
#ifndef HB_RDDAPI_H_
#define HB_RDDAPI_H_
#ifndef HB_APIRDD_H_
#define HB_APIRDD_H_
#include "filesys.h"
#include "hbapifs.h"
/* RDD virtual machine integration functions */
@@ -1094,4 +1094,4 @@ extern ERRCODE hb_rddDisinherit( BYTE * drvName );
extern USHORT hb_rddExtendType( USHORT fieldType );
extern USHORT hb_rddFieldType( USHORT extendType );
#endif /* HB_RDDAPI_H_ */
#endif /* HB_APIRDD_H_ */

View File

@@ -33,8 +33,8 @@
*
*/
#ifndef HB_COMPILER_H_
#define HB_COMPILER_H_
#ifndef HB_COMP_H_
#define HB_COMP_H_
#include <stdio.h>
#include <stdlib.h>
@@ -43,12 +43,12 @@
#include <ctype.h>
#include "hbsetup.h"
#include "extend.h"
#include "pcode.h" /* pcode values */
#include "hbapi.h"
#include "hbpcode.h" /* pcode values */
#include "hberrors.h"
#include "hbpp.h"
#include "hbver.h"
#include "expropt.h"
#include "hbexprop.h"
/* compiler related declarations */
@@ -352,5 +352,5 @@ extern char * hb_comp_szWarnings[];
#define HB_EXITLEVEL_SETEXIT 1
#define HB_EXITLEVEL_DELTARGET 2
#endif /* HB_COMPILER_H_ */
#endif /* HB_COMP_H_ */

View File

@@ -33,8 +33,8 @@
*
*/
#ifndef HB_SETCURS_H_
#define HB_SETCURS_H_
#ifndef HB_CURSOR_H_
#define HB_CURSOR_H_
typedef enum
{
@@ -45,4 +45,4 @@ typedef enum
SC_SPECIAL2 = 4 /* Upper half block */
} HB_cursor_enum;
#endif /* HB_SETCURS_H_ */
#endif /* HB_CURSOR_H_ */

View File

@@ -33,8 +33,8 @@
*
*/
#ifndef HB_DATES_H_
#define HB_DATES_H_
#ifndef HB_DATE_H_
#define HB_DATE_H_
/* In msgxxx.c modules */
extern char * hb_monthsname [];
@@ -52,4 +52,4 @@ extern void hb_dateStrGet( const char * szDate, long * plDay, long * plMonth
extern char * hb_dateDecStr( char * szDate, long lJulian );
extern long hb_dateEncStr( char * szDate );
#endif /* HB_DATES_H_ */
#endif /* HB_DATE_H_ */

View File

@@ -33,8 +33,10 @@
*
*/
/* TOFIX: Split the code, since MSC8 can't compile it, even in Huge model. */
/* TODO:
* Correct post- and pre- operations to correctly handle the following code
* - Correct post- and pre- operations to correctly handle the following code
* a[ i++ ]++
* Notice: in current implementation (an in Clipper too) 'i++' is evaluated
* two times! This causes that the new value (after incrementation) is
@@ -42,7 +44,7 @@
*/
#include <math.h>
#include "compiler.h"
#include "hbcomp.h"
/* memory allocation
*/

View File

@@ -33,10 +33,10 @@
*
*/
#ifndef HB_EXPROPT_H_
#define HB_EXPROPT_H_
#ifndef HB_EXPROP_H_
#define HB_EXPROP_H_
#include "extend.h"
#include "hbapi.h"
typedef struct HB_EXPR_
{
@@ -213,4 +213,4 @@ HB_EXPR_PTR hb_compExprCBVarAdd( HB_EXPR_PTR, char *, BYTE );
#endif
#endif /* HB_EXPROPT_H_ */
#endif /* HB_EXPROP_H_ */

View File

@@ -1,55 +0,0 @@
/*
* $Id$
*/
/*
* Harbour Project source code:
* Header file for the common Filesys API
*
* Copyright 1999 Victor Szakats <info@szelvesz.hu>
* www - http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version, with one exception:
*
* The exception is that if you link the Harbour Runtime Library (HRL)
* and/or the Harbour Virtual Machine (HVM) with other files to produce
* an executable, this does not by itself cause the resulting executable
* to be covered by the GNU General Public License. Your use of that
* executable is in no way restricted on account of linking the HRL
* and/or HVM code into it.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
*
*/
#ifndef HB_FSAPI_H_
#define HB_FSAPI_H_
#include "extend.h"
/* Filename support */
typedef struct
{
char szBuffer[ _POSIX_PATH_MAX + 3 + 10 ]; /* TOFIX: +10 is for the drive letter support, and should be changed to some manifest constant */
char * szPath;
char * szName;
char * szExtension;
char * szDrive;
} HB_FNAME, * PHB_FNAME, * HB_FNAME_PTR;
extern PHB_FNAME hb_fsFNameSplit( char * pszFileName ); /* Split given filename into path, name and extension */
extern char * hb_fsFNameMerge( char * pszFileName, PHB_FNAME pFileName ); /* This function joins path, name and extension into a string with a filename */
#endif /* HB_FSAPI_H_ */

View File

@@ -49,12 +49,12 @@
#define HB_MACRO_PARAM pMacro
#include "hbsetup.h"
#include "extend.h"
#include "ctoharb.h"
#include "pcode.h" /* pcode values */
#include "itemapi.h"
#include "errorapi.h"
#include "expropt.h"
#include "hbapi.h"
#include "hbvm.h"
#include "hbpcode.h" /* pcode values */
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbexprop.h"
/* flags for compilation process
*/
@@ -98,4 +98,4 @@ void hb_compGenJumpHere( ULONG, HB_MACRO_DECL );
#define HB_MACRO_DATA ( (HB_MACRO_PTR) HB_MACRO_PARAM )
#define HB_PCODE_DATA ( HB_MACRO_DATA->pCodeInfo )
#endif
#endif /* HB_MACRO_H_ */

View File

@@ -37,8 +37,8 @@
#define HB_PP_H_
#include "hbdefs.h"
#include "hbfsapi.h"
#include "extend.h"
#include "hbapifs.h"
#include "hbapi.h"
#include "hberrors.h"
#include "hbver.h"

View File

@@ -83,9 +83,9 @@
#define HB_SET_H_
#include "hbdefs.h"
#include "filesys.h"
#include "gtapi.h"
#include "inkey.h"
#include "hbapifs.h"
#include "hbapigt.h"
#include "hbinkey.h"
typedef enum
{

View File

@@ -54,7 +54,7 @@
* hb_vm_SymbolInit_<module_name>
* (for example for myfirst.prg it will be: 'hb_vm_SymbolInit_MYFIRST'
* The generation of this function is performed by the macro called
* HB_CALL_ON_STARTUP that is defined in 'init.h'
* HB_CALL_ON_STARTUP that is defined in 'hbinit.h'
*
* By default we are using extensions to ANSI C (symbol is not defined)
*/

View File

@@ -87,10 +87,10 @@ extern int hb_day;
#define hb_major 0 /* Major version number */
#define hb_minor 0 /* Minor version number */
#define hb_revision "a" /* Revision letter */
#define hb_revision "b" /* Revision letter */
#define hb_build 31 /* Build number */
#define hb_year 2000 /* Build year */
#define hb_month 02 /* Build month */
#define hb_month 03 /* Build month */
#define hb_day 02 /* Build day */
#endif /* HB_VER_H_ */

View File

@@ -33,10 +33,10 @@
*
*/
#ifndef HB_CTOHARB_H_
#define HB_CTOHARB_H_
#ifndef HB_VM_H_
#define HB_VM_H_
#include "extend.h"
#include "hbapi.h"
/* Harbour virtual machine init/exit functions */
extern void hb_vmInit( BOOL bStartMainProc );
@@ -85,4 +85,5 @@ extern void hb_vmPushSymbol( PHB_SYMB pSym ); /* pushes a function pointer on
extern void hb_stackDispCall( void );
extern void hb_stackPop( void ); /* pops an item from the stack */
#endif /* HB_CTOHARB_H_ */
#endif /* HB_VM_H_ */

View File

@@ -37,7 +37,7 @@
#define HB_VMPUB_H_
#include "hbdefs.h"
#include "pcode.h"
#include "hbpcode.h"
struct _HB_DYNS;

View File

@@ -7,7 +7,7 @@
# Merge duplicate strings
BCC_OPT = $(BCC_OPT) -d
HARBOUR_OPT = $(HARBOUR_OPT) -q0 -w
HARBOUR_OPT = $(HARBOUR_OPT) -q0 -w -es2
!if $d(B16)

View File

@@ -69,7 +69,7 @@ RUNNER_DLL=$(BIN_DIR)\runjava.dll
MACRO_LIB=$(LIB_DIR)\macro.lib
REGRESS_EXE=$(BIN_DIR)\rt_main.exe
HBDOC_EXE=$(BIN_DIR)\hbdoc.exe
HARBOURFLAGS=-iinclude -n -q0 -w
HARBOURFLAGS=-iinclude -n -q0 -w -es2
LIBS=$(HARBOUR_LIB) $(MACRO_LIB) $(TERMINAL_LIB) $(TOOLS_LIB) $(DEBUG_LIB) $(PP_LIB) $(DBFNTX_LIB) $(DBFCDX_LIB) $(RUNNER_LIB) $(MACRO_LIB)

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "hbfsapi.h"
#include "hbapi.h"
#include "hbapifs.h"
/* Split given filename into path, name and extension, plus determine drive */
PHB_FNAME hb_fsFNameSplit( char * pszFileName )

View File

@@ -35,7 +35,7 @@
#include <ctype.h> /* Needed by hb_strupr() */
#include "extend.h"
#include "hbapi.h"
ULONG hb_strAt( const char * szSub, ULONG ulSubLen, const char * szText, ULONG ulLen )
{

View File

@@ -33,7 +33,7 @@
*
*/
#include "extend.h"
#include "hbapi.h"
/* Table with reserved functions names
* NOTE: THIS TABLE MUST BE SORTED ALPHABETICALLY

View File

@@ -51,7 +51,7 @@
#include <time.h>
#include "compiler.h"
#include "hbcomp.h"
/* TODO: Add support for this compiler switches
-m -r -t || getenv( "TMP" ) -u

View File

@@ -33,7 +33,7 @@
*
*/
#include "compiler.h"
#include "hbcomp.h"
void hb_compGenCCode( PHB_FNAME pFileName ) /* generates the C language output */
{
@@ -69,8 +69,8 @@ void hb_compGenCCode( PHB_FNAME pFileName ) /* generates the C language ou
hb_build, hb_revision, hb_year, hb_month, hb_day );
fprintf( yyc, " * Generated C source code\n */\n\n" );
fprintf( yyc, "#include \"hb_vmpub.h\"\n" );
fprintf( yyc, "#include \"init.h\"\n\n\n" );
fprintf( yyc, "#include \"hbvmpub.h\"\n" );
fprintf( yyc, "#include \"hbinit.h\"\n\n\n" );
if( ! hb_comp_bStartProc )
pFunc = pFunc->pNext; /* No implicit starting procedure */

View File

@@ -33,7 +33,7 @@
*
*/
#include "compiler.h"
#include "hbcomp.h"
#define SYM_NOLINK 0 /* Symbol does not have to be linked */
#define SYM_FUNC 1 /* Defined function */

View File

@@ -34,9 +34,9 @@
*
*/
#include "extend.h"
#include "compiler.h"
#include "pcode.h"
#include "hbapi.h"
#include "hbcomp.h"
#include "hbpcode.h"
#include "hberrors.h"
#include "hbver.h"

View File

@@ -33,9 +33,9 @@
*
*/
#include "extend.h"
#include "compiler.h"
#include "pcode.h"
#include "hbapi.h"
#include "hbcomp.h"
#include "hbpcode.h"
#include "hberrors.h"
static ULONG GetSymbolsSize( void );

View File

@@ -33,9 +33,9 @@
*
*/
#include "extend.h"
#include "compiler.h"
#include "pcode.h"
#include "hbapi.h"
#include "hbcomp.h"
#include "hbpcode.h"
#include "hberrors.h"
void hb_compGenPascal( PHB_FNAME pFileName )

View File

@@ -33,9 +33,9 @@
*
*/
#include "extend.h"
#include "compiler.h"
#include "pcode.h"
#include "hbapi.h"
#include "hbcomp.h"
#include "hbpcode.h"
#include "hberrors.h"
void hb_compGenRC( PHB_FNAME pFileName )

View File

@@ -35,7 +35,7 @@
#include <malloc.h> /* required for allocating and freeing memory */
#include "compiler.h"
#include "hbcomp.h"
#if defined(DOS) && defined(__BORLANDC__)
#include <limits.h>

View File

@@ -40,7 +40,7 @@
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include "compiler.h"
#include "hbcomp.h"
#include "harboury.h"
#include "hbsetup.h" /* main configuration file */
#include "hberrors.h"

View File

@@ -42,7 +42,7 @@
#include <malloc.h>
#include "compiler.h"
#include "hbcomp.h"
/* Compile using: bison -d -v harbour.y */
@@ -1557,16 +1557,17 @@ BOOL hb_compInclude( char * szFileName, PATHNAMES * pSearch )
int yywrap( void ) /* handles the EOF of the currently processed file */
{
void * pLast;
if( hb_comp_files.iFiles == 1 )
{
hb_xfree( hb_comp_files.pLast->pBuffer );
return 1; /* we have reached the main EOF */
}
/*
else
{
void * pLast;
pLast = hb_comp_files.pLast;
fclose( hb_comp_files.pLast->handle );
hb_comp_files.pLast = ( PFILE ) ( ( PFILE ) hb_comp_files.pLast )->pPrev;
@@ -1587,6 +1588,8 @@ int yywrap( void ) /* handles the EOF of the currently processed file */
return 0;
}
*/ /* we close the currently include file and continue */
return 0;
}
/* ************************************************************************* */

View File

@@ -33,7 +33,7 @@
*
*/
#include "compiler.h"
#include "hbcomp.h"
/* NOTE: iMinParam = -1, means no checking
* iMaxParam = -1, means no upper limit

View File

@@ -33,7 +33,7 @@
*
*/
#include "compiler.h"
#include "hbcomp.h"
/* Table with parse errors */
char * hb_comp_szErrors[] =

View File

@@ -33,7 +33,7 @@
*
*/
#include "compiler.h"
#include "hbcomp.h"
void hb_compGenPCode1( BYTE byte )
{

View File

@@ -33,7 +33,7 @@
*
*/
#include "compiler.h"
#include "hbcomp.h"
/*
* Prints available options

View File

@@ -37,7 +37,7 @@
*/
#define HB_MACRO_SUPPORT
#include "macro.h"
#include "hbmacro.h"
/* TODO:
* include these variables in SET subsystem ?

View File

@@ -51,7 +51,7 @@ NOTE: -C controls the speed/size ratio of generated scanner
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include "macro.h"
#include "hbmacro.h"
#include "macroy.h"
#include "hbsetup.h" /* main configuration file */
#include "hberrors.h"

View File

@@ -45,7 +45,7 @@
*/
#define HB_MACRO_SUPPORT
#include "macro.h"
#include "hbmacro.h"
/* Compile using: bison -d -p hb_comp macro.y */

View File

@@ -62,7 +62,7 @@
#include "hbpp.h"
#include "hberrors.h"
#include "compiler.h"
#include "hbcomp.h"
#if defined( OS_UNIX_COMPATIBLE )
#include <sys/timeb.h>

View File

@@ -47,7 +47,7 @@
#include <string.h>
#include "hbpp.h"
#include "hberrors.h"
#include "compiler.h"
#include "hbcomp.h"
extern FILES hb_comp_files;
extern int hb_comp_iLine; /* currently parsed file line number */

View File

@@ -46,10 +46,10 @@
#include <setjmp.h>
#include "hbpp.h"
#include "compiler.h"
#include "extend.h"
#include "itemapi.h"
#include "errorapi.h"
#include "hbcomp.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hberrors.h"
PATHNAMES * hb_comp_pIncludePath = NULL;

View File

@@ -51,7 +51,7 @@
#include "hbpp.h"
#include "hberrors.h"
#include "hbver.h"
#include "compiler.h"
#include "hbcomp.h"
static int hb_pp_Parse( FILE * handl_o );
static void AddSearchPath( char * szPath, PATHNAMES * * pSearchList );

View File

@@ -34,15 +34,15 @@
*/
#include <ctype.h>
#include "extend.h"
#include "itemapi.h"
#include "errorapi.h"
#include "rddapi.h"
#include "set.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbapirdd.h"
#include "hbset.h"
#include "hbvm.h"
#include "rddsys.ch"
#include "set.ch"
#include "langapi.h"
#include "hbapilng.h"
#define HARBOUR_MAX_RDD_DRIVERNAME_LENGTH 32
#define HARBOUR_MAX_RDD_ALIAS_LENGTH 32

View File

@@ -37,15 +37,15 @@
#include <time.h>
#include <ctype.h>
#include "extend.h"
#include "itemapi.h"
#include "init.h"
#include "rddapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbinit.h"
#include "hbapirdd.h"
#include "rddsys.ch"
#include "errorapi.h"
#include "dates.h"
#include "langapi.h"
#include "ctoharb.h"
#include "hbapierr.h"
#include "hbdate.h"
#include "hbapilng.h"
#include "hbvm.h"
typedef struct _DBFHEADER
{

View File

@@ -36,13 +36,13 @@
#define SUPERTABLE ( &cdxSuper )
#include <time.h>
#include "extend.h"
#include "init.h"
#include "itemapi.h"
#include "rddapi.h"
#include "hbapi.h"
#include "hbinit.h"
#include "hbapiitm.h"
#include "hbapirdd.h"
#include "rddsys.ch"
#include "errorapi.h"
#include "langapi.h"
#include "hbapierr.h"
#include "hbapilng.h"
typedef struct _DBFHEADER

View File

@@ -35,10 +35,10 @@
#define SUPERTABLE ( &ntxSuper )
#include "extend.h"
#include "init.h"
#include "itemapi.h"
#include "rddapi.h"
#include "hbapi.h"
#include "hbinit.h"
#include "hbapiitm.h"
#include "hbapirdd.h"
#include "rddsys.ch"
HARBOUR HB__DBFNTX( void );

View File

@@ -35,9 +35,9 @@
#define SUPERTABLE ( &delimSuper )
#include "extend.h"
#include "init.h"
#include "rddapi.h"
#include "hbapi.h"
#include "hbinit.h"
#include "hbapirdd.h"
#include "rddsys.ch"
HARBOUR HB__DELIMC( void );

View File

@@ -35,9 +35,9 @@
#define SUPERTABLE ( &sdfSuper )
#include "extend.h"
#include "init.h"
#include "rddapi.h"
#include "hbapi.h"
#include "hbinit.h"
#include "hbapirdd.h"
#include "rddsys.ch"
HARBOUR HB__SDFC( void );

View File

@@ -47,11 +47,11 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "errorapi.h"
#include "langapi.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbapilng.h"
#include "hbvm.h"
/*
* Internal

View File

@@ -46,8 +46,8 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
HARBOUR HB_BIN2W( void )
{

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbvm.h"
/* NOTE: This function should normally have a parameter count check. But
since in Harbour we cannot distinguish between BREAK() function and

View File

@@ -65,10 +65,10 @@
*
*/
#include "extend.h"
#include "errorapi.h"
#include "itemapi.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbapierr.h"
#include "hbapiitm.h"
#include "hbvm.h"
#include "hboo.ch"
typedef struct

View File

@@ -35,9 +35,9 @@
/* The Harbour implementation of codeblocks */
#include "extend.h"
#include "ctoharb.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbvm.h"
#include "hbapiitm.h"
/* Creates the codeblock structure
*

View File

@@ -64,17 +64,17 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "errorapi.h"
#include "filesys.h"
#include "dates.h"
#include "set.h"
#include "inkey.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbapifs.h"
#include "hbdate.h"
#include "hbset.h"
#include "hbinkey.h"
#include "inkey.ch"
#include "gtapi.h" /* HARBOUR_USE_GTAPI is checked inside gtapi.h, so that
#include "hbapigt.h" /* HARBOUR_USE_GTAPI is checked inside hbapigt.h, so that
we can always get the border styles */
#include "mouseapi.h"
#include "hbapimou.h"
#if defined(__GNUC__) && ! defined(__MINGW32__)
#include <unistd.h>

View File

@@ -33,9 +33,9 @@
*
*/
#include "extend.h"
#include "errorapi.h"
#include "filesys.h"
#include "hbapi.h"
#include "hbapierr.h"
#include "hbapifs.h"
#ifdef OS_UNIX_COMPATIBLE
#include <sys/stat.h>

View File

@@ -71,11 +71,11 @@
be ahead of any other #include statements! */
#include "hbwinapi.h"
#include "extend.h"
#include "errorapi.h"
#include "itemapi.h"
#include "set.h"
#include "dates.h"
#include "hbapi.h"
#include "hbapierr.h"
#include "hbapiitm.h"
#include "hbset.h"
#include "hbdate.h"
#include <ctype.h>
#include <time.h>

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
void hb_strDescend( char * szStringTo, const char * szStringFrom, ULONG ulLen )
{

View File

@@ -110,8 +110,8 @@
#include "hbwinapi.h"
#include <ctype.h>
#include "extend.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "directry.ch"
#if defined(__GNUC__) && ! defined(__MINGW32__)

View File

@@ -33,10 +33,10 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "errorapi.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbvm.h"
HARBOUR HB_DO( void )
{

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
HARBOUR HB_EMPTY( void )
{

View File

@@ -68,8 +68,8 @@
#endif
#endif
#include "extend.h"
#include "errorapi.h"
#include "hbapi.h"
#include "hbapierr.h"
#include "hbver.h"
#if defined(__TURBOC__) || defined(__BORLANDC__) || defined(_MSC_VER) || defined(__DJGPP__) || defined(__MINGW32__)

View File

@@ -56,16 +56,16 @@
*
*/
#include "extend.h"
#include "ctoharb.h"
#include "itemapi.h"
#include "errorapi.h"
#include "langapi.h"
#include "hbapi.h"
#include "hbvm.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbapilng.h"
/* This is added to be able to detect a recursive error, and not let Harbour
go into an infinite loop, this is an emulated version of the Clipper
"Unrecoverable error 650: Processor stack fault" internal error, but
better shows what is really the problem */
better shows what is really the problem. [vszakats] */
#define HB_ERROR_LAUNCH_MAX 8
static HB_ERROR_INFO_PTR s_errorHandler = NULL;
@@ -259,7 +259,7 @@ USHORT hb_errLaunch( PHB_ITEM pError )
/* This error launcher should be used in those situations, where the error
handler is expected to return a value to be substituted as the result of
a failed operation. */
a failed operation. [vszakats] */
/* NOTE: This should only be called when the EF_CANSUBSTITUE flag was set
Since it this case the error handler will return the value
@@ -783,8 +783,8 @@ USHORT hb_errRT_TOOLS( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, c
return uiAction;
}
/* NOTE: Use as minimal calls from here, as possible. */
/* Don't allocate memory from this function. [vszakats] */
/* NOTE: Use as minimal calls from here, as possible.
Don't allocate memory from this function. [vszakats] */
void hb_errInternal( ULONG ulIntCode, char * szText, char * szPar1, char * szPar2 )
{

View File

@@ -47,10 +47,10 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "set.h"
#include "dates.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbset.h"
#include "hbdate.h"
/* NOTE: iParam = -1 can be used to access the return value. */
/* NOTE: iParam = 0 can be used to access the SELF object. */

View File

@@ -80,10 +80,10 @@
#include "hbwinapi.h"
#include <ctype.h>
#include "extend.h"
#include "itemapi.h"
#include "filesys.h"
#include "errorapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapifs.h"
#include "hbapierr.h"
#if defined(__CYGWIN__)
#include <mingw32/share.h>

View File

@@ -64,8 +64,8 @@
#include <malloc.h>
#endif
#include "extend.h"
#include "errorapi.h"
#include "hbapi.h"
#include "hbapierr.h"
#include "hbmemory.ch"
#if defined(HB_FM_STATISTICS) && !defined(HB_TR_LEVEL)

View File

@@ -37,7 +37,7 @@
/* TODO: include any standard headers here */
#include "gtapi.h"
#include "hbapigt.h"
void hb_gt_Init( void )
{

View File

@@ -36,7 +36,7 @@
#include <curses.h>
#include "gtapi.h"
#include "hbapigt.h"
static void gt_GetMaxRC(int* r, int* c);
static void gt_GetRC(int* r, int* c);

View File

@@ -54,9 +54,9 @@
#include <string.h>
#include <dos.h>
#include "gtapi.h"
#include "set.h" /* For Ctrl+Break handling */
#include "ctoharb.h" /* For Ctrl+Break handling */
#include "hbapigt.h"
#include "hbset.h" /* For Ctrl+Break handling */
#include "hbvm.h" /* For Ctrl+Break handling */
#if defined(__POWERC) || (defined(__TURBOC__) && !defined(__BORLANDC__)) || \
(defined(__ZTC__) && !defined(__SC__))

View File

@@ -45,7 +45,7 @@
#include <string.h>
#include <os2.h>
#include "gtapi.h"
#include "hbapigt.h"
static char hb_gt_GetCellSize( void );
static void hb_gt_SetCursorSize( char start, char end, int visible );

View File

@@ -38,7 +38,7 @@
#include <slang.h>
#include "gtapi.h"
#include "hbapigt.h"
void hb_gt_Init( void )
{

View File

@@ -37,7 +37,7 @@
/* TODO: include any standard headers here */
#include "gtapi.h"
#include "hbapigt.h"
static SHORT s_iRow;
static SHORT s_iCol;

View File

@@ -62,9 +62,9 @@
#endif /* __GNUC__ */
#include <windows.h>
#include "gtapi.h"
#include "set.h" /* For Ctrl+Break handling */
#include "ctoharb.h" /* For Ctrl+Break handling */
#include "hbapigt.h"
#include "hbset.h" /* For Ctrl+Break handling */
#include "hbvm.h" /* For Ctrl+Break handling */
#if defined(__IBMCPP__)
#undef WORD /* 2 bytes unsigned */

View File

@@ -122,8 +122,8 @@
*/
#include <ctype.h>
#include "set.h"
#include "gtapi.h"
#include "hbset.h"
#include "hbapigt.h"
static SHORT s_iCurrentRow = 0;
static SHORT s_iCurrentCol = 0;

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapiitm.h"
#define CHR_HARD1 ( ( char ) HB_CHAR_CR )

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "ctoharb.h"
#include "hbapi.h"
#include "hbvm.h"
HARBOUR HB___QUIT( void )
{

View File

@@ -107,14 +107,14 @@
#define HB_BREAK_FLAG 256 /* 256, because that's what DJGPP returns Ctrl+Break as.
Clipper has no key code 256, so it may as well be
used for all the Harbour builds that need it */
#include "extend.h"
#include "ctoharb.h"
#include "errorapi.h"
#include "itemapi.h"
#include "set.h"
#include "inkey.h"
#include "hbapi.h"
#include "hbvm.h"
#include "hbapierr.h"
#include "hbapiitm.h"
#include "hbset.h"
#include "hbinkey.h"
#include "inkey.ch"
#include "init.h"
#include "hbinit.h"
#if defined(__TURBOC__) || defined(__BORLANDC__) || defined(_MSC_VER) || defined(__MINGW32__)
#include <conio.h>

View File

@@ -37,8 +37,8 @@
be ahead of any other #include statements! */
#include "hbwinapi.h"
#include "extend.h"
#include "filesys.h"
#include "hbapi.h"
#include "hbapifs.h"
#if defined(__TURBOC__) || defined(__BORLANDC__) || defined(_MSC_VER) || defined(__DJGPP__)
#include <dos.h>

View File

@@ -66,12 +66,12 @@
#include <math.h> /* For log() */
#include "extend.h"
#include "itemapi.h"
#include "ctoharb.h"
#include "errorapi.h"
#include "dates.h"
#include "set.h"
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbvm.h"
#include "hbapierr.h"
#include "hbdate.h"
#include "hbset.h"
/* DJGPP can sprintf a float that is almost 320 digits long */
#define HB_MAX_DOUBLE_LENGTH 320

View File

@@ -33,8 +33,8 @@
*
*/
#include "extend.h"
#include "langapi.h"
#include "hbapi.h"
#include "hbapilng.h"
static HB_LANG langEN =
{

View File

@@ -33,9 +33,9 @@
*
*/
#include "extend.h"
#include "errorapi.h"
#include "itemapi.h"
#include "hbapi.h"
#include "hbapierr.h"
#include "hbapiitm.h"
HARBOUR HB_LEN( void )
{

Some files were not shown because too many files have changed in this diff Show More