mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
16 lines
582 B
C
16 lines
582 B
C
#ifndef __ruamoko_script_h
|
|
#define __ruamoko_script_h
|
|
|
|
typedef struct rua_script *script_t;
|
|
|
|
@extern script_t Script_New (void);
|
|
@extern void Script_Delete (script_t script);
|
|
// returns the token string
|
|
@extern string Script_Start (script_t script, string file, string data);
|
|
@extern int Script_TokenAvailable (script_t script, int crossline);
|
|
@extern int Script_GetToken (script_t script, int crossline);
|
|
@extern void Script_UngetToken (script_t script);
|
|
@extern string Script_Error (script_t script);
|
|
@extern int Script_NoQuoteLines (script_t script);
|
|
|
|
#endif//__ruamoko_script_h
|