From 4ab6acacdfdb5d5d29ed4d089aeda3ec6d82670b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 1 Feb 2001 14:03:38 -0200 Subject: better control of relationship top x L->top --- lvm.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index f43150b1..ed862f2d 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.26 2000/09/05 19:33:32 roberto Exp roberto $ +** $Id: lvm.h,v 1.27 2000/10/05 12:14:08 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -19,10 +19,10 @@ int luaV_tonumber (TObject *obj); int luaV_tostring (lua_State *L, TObject *obj); -const TObject *luaV_gettable (lua_State *L, StkId t); -void luaV_settable (lua_State *L, StkId t, StkId key); -const TObject *luaV_getglobal (lua_State *L, TString *s); -void luaV_setglobal (lua_State *L, TString *s); +void luaV_gettable (lua_State *L, StkId t, StkId top, StkId res); +void luaV_settable (lua_State *L, StkId t, StkId key, StkId top); +void luaV_getglobal (lua_State *L, TString *s, StkId top); +void luaV_setglobal (lua_State *L, TString *s, StkId top); StkId luaV_execute (lua_State *L, const Closure *cl, StkId base); void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); void luaV_Lclosure (lua_State *L, Proto *l, int nelems); -- cgit v1.2.3-55-g6feb