|
|
@ -1,5 +1,5 @@ |
|
|
|
/*
|
|
|
|
** $Id: lua.h,v 1.252 2009/11/26 11:39:20 roberto Exp roberto $ |
|
|
|
** $Id: lua.h,v 1.253 2009/12/11 13:40:44 roberto Exp roberto $ |
|
|
|
** Lua - A Scripting Language |
|
|
|
** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
|
|
|
|
** See Copyright Notice at the end of this file |
|
|
@ -156,7 +156,7 @@ LUA_API lua_Number (lua_tonumber) (lua_State *L, int idx); |
|
|
|
LUA_API lua_Integer (lua_tointeger) (lua_State *L, int idx); |
|
|
|
LUA_API int (lua_toboolean) (lua_State *L, int idx); |
|
|
|
LUA_API const char *(lua_tolstring) (lua_State *L, int idx, size_t *len); |
|
|
|
LUA_API size_t (lua_objlen) (lua_State *L, int idx); |
|
|
|
LUA_API size_t (lua_rawlen) (lua_State *L, int idx); |
|
|
|
LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx); |
|
|
|
LUA_API void *(lua_touserdata) (lua_State *L, int idx); |
|
|
|
LUA_API lua_State *(lua_tothread) (lua_State *L, int idx); |
|
|
@ -281,6 +281,7 @@ LUA_API int (lua_error) (lua_State *L); |
|
|
|
LUA_API int (lua_next) (lua_State *L, int idx); |
|
|
|
|
|
|
|
LUA_API void (lua_concat) (lua_State *L, int n); |
|
|
|
LUA_API void (lua_len) (lua_State *L, int idx); |
|
|
|
|
|
|
|
LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); |
|
|
|
LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); |
|
|
@ -326,7 +327,9 @@ LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); |
|
|
|
*/ |
|
|
|
#if defined(LUA_COMPAT_API) |
|
|
|
|
|
|
|
#define lua_strlen(L,i) lua_objlen(L, (i)) |
|
|
|
#define lua_strlen(L,i) lua_rawlen(L, (i)) |
|
|
|
|
|
|
|
#define lua_objlen(L,i) lua_rawlen(L, (i)) |
|
|
|
|
|
|
|
#define lua_open() luaL_newstate() |
|
|
|
|
|
|
|