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