mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
12 lines
478 B
R
12 lines
478 B
R
|
#include "script.h"
|
||
|
|
||
|
script_t Script_New (void) = #0;
|
||
|
void Script_Delete (script_t script) = #0;
|
||
|
// returns the token string
|
||
|
string Script_Start (script_t script, string file, string data) = #0;
|
||
|
integer Script_TokenAvailable (script_t script, integer crossline) = #0;
|
||
|
integer Script_GetToken (script_t script, integer crossline) = #0;
|
||
|
void Script_UngetToken (script_t script) = #0;
|
||
|
string Script_Error (script_t script) = #0;
|
||
|
integer Script_NoQuoteLines (script_t script) = #0;
|