0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-02 15:22:11 +00:00
quakeforge/ruamoko/include/script.h

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