ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
lparser.h
1 /*
2 ** Syntax analizer and code generator
3 ** See Copyright Notice in lua.h
4 */
5 
6 #ifndef GRIM_LPARSER_H
7 #define GRIM_LPARSER_H
8 
9 #include "lobject.h"
10 #include "lzio.h"
11 
12 namespace Grim {
13 
14 void luaY_codedebugline(int32 line);
15 TProtoFunc *luaY_parser(ZIO *z);
16 void luaY_error(const char *s);
17 void luaY_syntaxerror(const char *s, const char *token);
18 
19 } // end of namespace Grim
20 
21 #endif
Definition: actor.h:33
Definition: lzio.h:56