mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
407 B
20 lines
407 B
/* prmain.h : Externs for interface to Small Prolog interpreter */
|
|
|
|
#define CONFIG_FILE "sprolog.inf"
|
|
|
|
typedef struct PreAllocZone
|
|
{
|
|
void * pvZone ;
|
|
zone_size_t cbSize ;
|
|
} PreAllocZone ;
|
|
|
|
enum ZoneType
|
|
{
|
|
ZTHEAP, ZTSTRING, ZTDYN, ZTTRAIL,
|
|
ZTSUBST, ZTTEMP, ZTRBUF, ZTPBUF, ZTEND
|
|
};
|
|
|
|
/* Return a pointer to an array of zone data in ZoneType order */
|
|
|
|
extern PreAllocZone * ini_get_zones ( void ) ;
|
|
|