From cde179b36979c58d9380d3c4dd29b61412d13b51 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 4 Nov 1999 15:23:12 -0200 Subject: new implementation for global variable values (separated from strings) --- lvm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index bef28ba8..77fd3c53 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.9 1999/08/16 20:52:00 roberto Exp roberto $ +** $Id: lvm.h,v 1.10 1999/10/14 19:46:57 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -24,8 +24,8 @@ void luaV_setn (Hash *t, int val); void luaV_gettable (void); void luaV_settable (const TObject *t); void luaV_rawsettable (const TObject *t); -void luaV_getglobal (TaggedString *ts); -void luaV_setglobal (TaggedString *ts); +void luaV_getglobal (GlobalVar *gv); +void luaV_setglobal (GlobalVar *gv); StkId luaV_execute (const Closure *cl, const TProtoFunc *tf, StkId base); void luaV_closure (int nelems); void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, -- cgit v1.2.3-55-g6feb