mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
c354695d60
git-svn-id: https://svn.eduke32.com/eduke32@1695 1a8010ca-5511-0410-912e-c29ae57300e0
27 lines
985 B
C
27 lines
985 B
C
typedef struct {
|
|
char *textbuf;
|
|
uint32_t textlength;
|
|
char *ltextptr; // pointer to start of the last token fetched (use this for line numbers)
|
|
char *textptr;
|
|
char *eof;
|
|
char *filename;
|
|
int32_t linenum;
|
|
int32_t *lineoffs;
|
|
} scriptfile;
|
|
|
|
char *scriptfile_gettoken(scriptfile *sf);
|
|
int32_t scriptfile_getnumber(scriptfile *sf, int32_t *num);
|
|
int32_t scriptfile_getdouble(scriptfile *sf, double *num);
|
|
int32_t scriptfile_getstring(scriptfile *sf, char **st);
|
|
int32_t scriptfile_getsymbol(scriptfile *sf, int32_t *num);
|
|
int32_t scriptfile_getlinum(scriptfile *sf, char *ptr);
|
|
int32_t scriptfile_getbraces(scriptfile *sf, char **braceend);
|
|
|
|
scriptfile *scriptfile_fromfile(const char *fn);
|
|
scriptfile *scriptfile_fromstring(const char *string);
|
|
void scriptfile_close(scriptfile *sf);
|
|
int32_t scriptfile_eof(scriptfile *sf);
|
|
|
|
int32_t scriptfile_getsymbolvalue(char *name, int32_t *val);
|
|
int32_t scriptfile_addsymbolvalue(char *name, int32_t val);
|
|
void scriptfile_clearsymbols(void);
|