ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
lualib.h
1 /*
2 ** Lua standard libraries
3 ** See Copyright Notice in lua.h
4 */
5 
6 
7 #ifndef GRIM_LUALIB_H
8 #define GRIM_LUALIB_H
9 
10 #include "engines/grim/lua/lua.h"
11 
12 namespace Grim {
13 
14 void lua_iolibopen();
15 void lua_strlibopen();
16 void lua_mathlibopen();
17 void lua_iolibclose();
18 
19 // To keep compatibility with old versions
20 
21 #define iolib_open lua_iolibopen
22 #define strlib_open lua_strlibopen
23 #define mathlib_open lua_mathlibopen
24 
25 // Auxiliary functions (private)
26 
27 int32 luaI_singlematch(int32 c, const char *p, const char **ep);
28 
29 } // end of namespace Grim
30 
31 #endif
32 
Definition: actor.h:33