summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-04 15:23:12 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-04 15:23:12 -0200
commitcde179b36979c58d9380d3c4dd29b61412d13b51 (patch)
tree804c457691024d797a7479eddf711e103966b513 /lvm.h
parent80b39d83c3512e1dd627842e64c69841638d9088 (diff)
downloadlua-cde179b36979c58d9380d3c4dd29b61412d13b51.tar.gz
lua-cde179b36979c58d9380d3c4dd29b61412d13b51.tar.bz2
lua-cde179b36979c58d9380d3c4dd29b61412d13b51.zip
new implementation for global variable values (separated from strings)
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index bef28ba8..77fd3c53 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 1.9 1999/08/16 20:52:00 roberto Exp roberto $ 2** $Id: lvm.h,v 1.10 1999/10/14 19:46:57 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -24,8 +24,8 @@ void luaV_setn (Hash *t, int val);
24void luaV_gettable (void); 24void luaV_gettable (void);
25void luaV_settable (const TObject *t); 25void luaV_settable (const TObject *t);
26void luaV_rawsettable (const TObject *t); 26void luaV_rawsettable (const TObject *t);
27void luaV_getglobal (TaggedString *ts); 27void luaV_getglobal (GlobalVar *gv);
28void luaV_setglobal (TaggedString *ts); 28void luaV_setglobal (GlobalVar *gv);
29StkId luaV_execute (const Closure *cl, const TProtoFunc *tf, StkId base); 29StkId luaV_execute (const Closure *cl, const TProtoFunc *tf, StkId base);
30void luaV_closure (int nelems); 30void luaV_closure (int nelems);
31void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, 31void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal,