-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse.h
41 lines (30 loc) · 1.02 KB
/
parse.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//**************************************************************************
//**
//** parse.h
//**
//**************************************************************************
#ifndef __PARSE_H__
#define __PARSE_H__
// HEADER FILES ------------------------------------------------------------
// MACROS ------------------------------------------------------------------
// TYPES -------------------------------------------------------------------
struct ScriptTypes
{
const char *TypeName;
int TypeBase;
int TypeCount;
};
// PUBLIC FUNCTION PROTOTYPES ----------------------------------------------
void PA_Parse(void);
// PUBLIC DATA DECLARATIONS ------------------------------------------------
extern int pa_ScriptCount;
extern struct ScriptTypes *pa_TypedScriptCounts;
extern int pa_MapVarCount;
extern int pa_WorldVarCount;
extern int pa_GlobalVarCount;
extern int pa_WorldArrayCount;
extern int pa_GlobalArrayCount;
extern enum ImportModes ImportMode;
extern boolean ExporterFlagged;
extern boolean pa_ConstExprIsString;
#endif