#ifndef PV_EVALBASE_H
#define PV_EVALBASE_H TRUE
/*
**  $Filename: EvalBase.h $
**  $Release: 1.02 $
**  $Revision: 37.346 $
**  $Date: 15 Sep 91 $
**
**  Structure definitions for Eval Base (see 'TheWizardCorner')
**
**  © 1991 Jorrit Tyberghein, included with PowerVisor
**	    All Rights Reserved
*/

#ifndef PV_PVMEMORY_H
#include "PVMemory.h"
#endif


#define VARTYPE_VARIABLE	0
#define VARTYPE_CONSTANT	1
#define VARTYPE_SPECIAL		2
#define VARTYPE_FUNCTION	3


struct EvalBase
	{
		ULONG pad0;
		ULONG pad1;
		struct PVMemoryBlock Variables;
		UBYTE Priorities[18];
	};

#endif
