28 lines
366 B
C
28 lines
366 B
C
/*
|
|
* $Id$
|
|
*
|
|
* Definitions shared by harbour.y and preprocessor
|
|
*/
|
|
|
|
#ifndef HBPP_H_
|
|
#define HBPP_H_
|
|
|
|
/* ------------------------------------------ */
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
char *pars;
|
|
int npars;
|
|
char *value;
|
|
} DEFINES;
|
|
|
|
typedef struct
|
|
{
|
|
int com_or_xcom;
|
|
char *name;
|
|
char *mpatt;
|
|
char *value;
|
|
} COMMANDS, TRANSLATES;
|
|
|
|
#endif /* HBPP_H_ */
|