mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
5ef382d2a7
This is an imperfect revision of history.
11 lines
478 B
R
11 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;
|