aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-17 13:15:15 +1000
committerDavid Walter Seikel2012-01-17 13:15:15 +1000
commite235a097751de7ad97563997215f76761b3db609 (patch)
tree3dc1098de9770e8b165ed8dbc4128f5f2245afaa /LuaSL/src/LuaSL_LSL_tree.h
parentAdd a newline at the end of the file. lol (diff)
downloadSledjHamr-e235a097751de7ad97563997215f76761b3db609.zip
SledjHamr-e235a097751de7ad97563997215f76761b3db609.tar.gz
SledjHamr-e235a097751de7ad97563997215f76761b3db609.tar.bz2
SledjHamr-e235a097751de7ad97563997215f76761b3db609.tar.xz
Use EFL logging.
Diffstat (limited to '')
-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 b287b8f..4b6e3c4 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -277,6 +277,7 @@ struct _LSL_Script
277 277
278typedef struct 278typedef struct
279{ 279{
280 gameGlobals *game;
280 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. 281 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.
281 int argc; 282 int argc;
282 char **argv; 283 char **argv;
@@ -298,7 +299,7 @@ typedef struct
298 299
299void burnLeaf(LSL_Leaf *leaf); 300void burnLeaf(LSL_Leaf *leaf);
300LSL_Leaf *addFunction(LSL_Leaf *type, LSL_Leaf *identifier, LSL_Leaf *open, LSL_Leaf *params, LSL_Leaf *close, LSL_Leaf *block); 301LSL_Leaf *addFunction(LSL_Leaf *type, LSL_Leaf *identifier, LSL_Leaf *open, LSL_Leaf *params, LSL_Leaf *close, LSL_Leaf *block);
301LSL_Leaf *addOperation(LSL_Leaf *left, LSL_Leaf *lval, LSL_Leaf *right); 302LSL_Leaf *addOperation(LuaSL_yyparseParam *param, LSL_Leaf *left, LSL_Leaf *lval, LSL_Leaf *right);
302LSL_Leaf *addParameter(LSL_Leaf *type, LSL_Leaf *newParam); 303LSL_Leaf *addParameter(LSL_Leaf *type, LSL_Leaf *newParam);
303LSL_Leaf *addParenthesis(LSL_Leaf *lval, LSL_Leaf *expr, LSL_Type type, LSL_Leaf *rval); 304LSL_Leaf *addParenthesis(LSL_Leaf *lval, LSL_Leaf *expr, LSL_Type type, LSL_Leaf *rval);
304LSL_Leaf *addState(LuaSL_yyparseParam *param, LSL_Leaf *identifier, LSL_Leaf *block); 305LSL_Leaf *addState(LuaSL_yyparseParam *param, LSL_Leaf *identifier, LSL_Leaf *block);