aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.h')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 600fb6f..cbc34b3 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -391,6 +391,7 @@ typedef struct
391 void *scanner; // This should be of type yyscan_t, which is typedef to void * anyway, but that does not get defined until LuaSL_lexer.h, which depends on this struct being defined first. 391 void *scanner; // This should be of type yyscan_t, which is typedef to void * anyway, but that does not get defined until LuaSL_lexer.h, which depends on this struct being defined first.
392 int argc; 392 int argc;
393 char **argv; 393 char **argv;
394 char SID[37];
394 char fileName[PATH_MAX]; 395 char fileName[PATH_MAX];
395 FILE *file; 396 FILE *file;
396 LSL_Leaf *ast; 397 LSL_Leaf *ast;
@@ -416,7 +417,7 @@ typedef struct
416 417
417 418
418boolean compilerSetup(gameGlobals *game); 419boolean compilerSetup(gameGlobals *game);
419boolean compileLSL(gameGlobals *game, Ecore_Con_Client *client, char *script, boolean doConstants); 420boolean compileLSL(gameGlobals *game, Ecore_Con_Client *client, char *SID, char *script, boolean doConstants);
420void burnLeaf(void *data); 421void burnLeaf(void *data);
421 422
422LSL_Leaf *addBlock(LuaSL_compiler *compiler, LSL_Leaf *left, LSL_Leaf *lval, LSL_Leaf *right); 423LSL_Leaf *addBlock(LuaSL_compiler *compiler, LSL_Leaf *left, LSL_Leaf *lval, LSL_Leaf *right);