mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
cdc1f0c5e7
Now that qfcc actually supports them properly.
11 lines
458 B
R
11 lines
458 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;
|
|
int Script_TokenAvailable (script_t script, int crossline) = #0;
|
|
int Script_GetToken (script_t script, int crossline) = #0;
|
|
void Script_UngetToken (script_t script) = #0;
|
|
string Script_Error (script_t script) = #0;
|
|
int Script_NoQuoteLines (script_t script) = #0;
|