2016-03-14 21:53:24 +08:00
|
|
|
// The MIT License (MIT)
|
2015-05-25 09:29:21 +08:00
|
|
|
|
2017-05-15 22:41:50 +08:00
|
|
|
// Copyright (c) 2013-2017 Rapptz, ThePhD and contributors
|
2015-05-25 09:29:21 +08:00
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
|
|
// the Software without restriction, including without limitation the rights to
|
|
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
// subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
#ifndef SOL_5_X_X_H
|
|
|
|
#define SOL_5_X_X_H
|
|
|
|
|
|
|
|
#include "version.hpp"
|
|
|
|
|
2015-06-18 06:33:58 +08:00
|
|
|
#if SOL_LUA_VERSION < 502
|
2015-05-25 09:29:21 +08:00
|
|
|
|
|
|
|
#define LUA_RIDX_GLOBALS LUA_GLOBALSINDEX
|
|
|
|
|
|
|
|
#define LUA_OK 0
|
|
|
|
|
|
|
|
#define lua_pushglobaltable(L) \
|
|
|
|
lua_pushvalue(L, LUA_GLOBALSINDEX)
|
|
|
|
|
2017-06-20 11:04:23 +08:00
|
|
|
void luaL_checkversion(lua_State *L);
|
|
|
|
|
|
|
|
#if !defined(SOL_LUAJIT_VERSION) || SOL_LUAJIT_VERSION < 20100
|
|
|
|
void lua_copy(lua_State *L, int from, int to);
|
|
|
|
lua_Integer lua_tointegerx(lua_State *L, int i, int *isnum);
|
|
|
|
lua_Number lua_tonumberx(lua_State *L, int i, int *isnum);
|
|
|
|
const lua_Number *lua_version(lua_State *L);
|
|
|
|
void luaL_setfuncs(lua_State *L, const luaL_Reg *l, int nup);
|
|
|
|
void luaL_setmetatable(lua_State *L, const char *tname);
|
|
|
|
void *luaL_testudata(lua_State *L, int i, const char *tname);
|
2017-05-07 22:16:47 +08:00
|
|
|
#define luaL_newlib(L, l) \
|
|
|
|
(lua_newtable((L)),luaL_setfuncs((L), (l), 0))
|
2017-06-20 11:04:23 +08:00
|
|
|
#endif // LuaJIT-2.1.0-beta3 added these compatibility functions
|
2015-05-25 09:29:21 +08:00
|
|
|
|
|
|
|
int lua_absindex(lua_State *L, int i);
|
|
|
|
void lua_rawgetp(lua_State *L, int i, const void *p);
|
|
|
|
void lua_rawsetp(lua_State *L, int i, const void *p);
|
|
|
|
void lua_getuservalue(lua_State *L, int i);
|
|
|
|
void lua_setuservalue(lua_State *L, int i);
|
|
|
|
int luaL_getsubtable(lua_State *L, int i, const char *name);
|
|
|
|
void luaL_traceback(lua_State *L, lua_State *L1, const char *msg, int level);
|
|
|
|
int luaL_fileresult(lua_State *L, int stat, const char *fname);
|
|
|
|
|
|
|
|
#endif // Lua 5.1 and below
|
|
|
|
|
|
|
|
#endif // SOL_5_X_X_H
|