mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 11:51:52 +00:00
33 lines
556 B
C++
33 lines
556 B
C++
/*
|
|
** 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
|
|
|