2023-05-27 03:23:02 +00:00
|
|
|
#include <qfile.h>
|
2020-03-03 06:24:41 +00:00
|
|
|
#include <script.h>
|
2004-11-11 04:06:00 +00:00
|
|
|
|
|
|
|
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;
|
2023-05-27 03:23:02 +00:00
|
|
|
string Script_FromFile (script_t script, string filename, QFile file) = #0;
|
2011-03-25 07:46:32 +00:00
|
|
|
int Script_TokenAvailable (script_t script, int crossline) = #0;
|
|
|
|
int Script_GetToken (script_t script, int crossline) = #0;
|
2004-11-11 04:06:00 +00:00
|
|
|
void Script_UngetToken (script_t script) = #0;
|
|
|
|
string Script_Error (script_t script) = #0;
|
2011-03-25 07:46:32 +00:00
|
|
|
int Script_NoQuoteLines (script_t script) = #0;
|
2023-05-27 03:23:02 +00:00
|
|
|
void Script_SetSingle (script_t script, string single) = #0;
|
|
|
|
int Script_GetLine (script_t script) = #0;
|