* include/hbvmpub.h
* Modified HB_FS_FIRST to ( ( HB_SYMBOLSCOPE ) 0x04 )
* source/compiler/harbour.c
* Minor optimization when storing HB_FS_FIRST
* source/pp/pptable.c
- Removed built-in rule, for STRUCTURE support
* source/vm/runner.c
! Fixed bug when there is no startup procedure
* source/rtl/tclass.prg
- Removed HB_Structure()
* include/hbextern.ch
* Moved EXTERNAL HB_STRUCTURE to separate section
* tests/teststru.prg
+ added #INCLUDE "..\Include\HBSTRUC.CH"
+ include/hbstruc.ch
+ source/rtl/hbstruc.prg
* makefile.bc
+ Added rules for hbstruc.prg
92 lines
3.0 KiB
C
92 lines
3.0 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* Header file for the generated C language source code
|
|
*
|
|
* 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_VMPUB_H_
|
|
#define HB_VMPUB_H_
|
|
|
|
#include "hbdefs.h"
|
|
|
|
#if defined(HB_EXTERN_C)
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct _HB_DYNS;
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1000
|
|
#pragma pack(8)
|
|
#endif
|
|
|
|
/* symbol support structure */
|
|
typedef struct
|
|
{
|
|
char * szName; /* the name of the symbol */
|
|
HB_SYMBOLSCOPE cScope; /* the scope of the symbol */
|
|
PHB_FUNC pFunPtr; /* function address for function symbol table entries */
|
|
struct _HB_DYNS * pDynSym; /* pointer to its dynamic symbol if defined */
|
|
} HB_SYMB, * PHB_SYMB;
|
|
#if defined(_MSC_VER) && _MSC_VER < 1000
|
|
#pragma pack()
|
|
#endif
|
|
|
|
/* dynamic symbol structure */
|
|
typedef struct _HB_DYNS
|
|
{
|
|
HB_HANDLE hArea; /* Workarea number */
|
|
HB_HANDLE hMemvar; /* Index number into memvars ( publics & privates ) array */
|
|
PHB_SYMB pSymbol; /* pointer to its relative local symbol */
|
|
PHB_FUNC pFunPtr; /* Pointer to the function address */
|
|
} HB_DYNS, * PHB_DYNS, * HB_DYNS_PTR;
|
|
|
|
#define HB_DYNS_FUNC( hbfunc ) BOOL hbfunc( PHB_DYNS pDynSymbol, void * Cargo )
|
|
typedef HB_DYNS_FUNC( PHB_DYNS_FUNC );
|
|
|
|
/* Harbour Functions scope ( HB_SYMBOLSCOPE ) */
|
|
#define HB_FS_PUBLIC ( ( HB_SYMBOLSCOPE ) 0x00 )
|
|
#define HB_FS_STATIC ( ( HB_SYMBOLSCOPE ) 0x02 )
|
|
#define HB_FS_FIRST ( ( HB_SYMBOLSCOPE ) 0x04 )
|
|
#define HB_FS_INIT ( ( HB_SYMBOLSCOPE ) 0x08 )
|
|
#define HB_FS_EXIT ( ( HB_SYMBOLSCOPE ) 0x10 )
|
|
#define HB_FS_INITEXIT ( HB_FS_INIT | HB_FS_EXIT )
|
|
#define HB_FS_MESSAGE ( ( HB_SYMBOLSCOPE ) 0x20 )
|
|
#define HB_FS_MEMVAR ( ( HB_SYMBOLSCOPE ) 0x80 )
|
|
|
|
extern void hb_vmExecute( const BYTE * pCode, PHB_SYMB pSymbols ); /* invokes the virtual machine */
|
|
|
|
#if defined(HB_EXTERN_C)
|
|
}
|
|
#endif
|
|
|
|
#endif /* HB_VMPUB_H_ */
|