aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-22 11:12:07 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-22 11:12:07 -0200
commit29ede6aa13144ff7b69c57a87be1ee93f57ae896 (patch)
treeadcfb5dcff7db55481cd675349e23dec0e63c939 /lundump.h
parent951897c09319ae5474a4b86bb7d615136577caa0 (diff)
downloadlua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.gz
lua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.bz2
lua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.zip
first implementation of multiple states (reentrant code).
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lundump.h b/lundump.h
index 915464b0..7e310a49 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.9 1999/07/08 12:43:23 roberto Exp roberto $ 2** $Id: lundump.h,v 1.10 1999/08/16 20:52:00 roberto Exp roberto $
3** load pre-compiled Lua chunks 3** load pre-compiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -10,10 +10,10 @@
10#include "lobject.h" 10#include "lobject.h"
11#include "lzio.h" 11#include "lzio.h"
12 12
13TProtoFunc* luaU_undump1 (ZIO* Z); /* load one chunk */ 13TProtoFunc* luaU_undump1 (lua_State *L, ZIO* Z); /* load one chunk */
14void luaU_badconstant (const char* s, int i, const TObject* o, TProtoFunc* tf); 14void luaU_badconstant (lua_State *L, const char* s, int i, const TObject* o, TProtoFunc* tf);
15 /* handle cases that cannot happen */ 15 /* handle cases that cannot happen */
16double luaU_str2d (const char* b, const char* where); 16double luaU_str2d (lua_State *L, const char* b, const char* where);
17 /* convert number from text */ 17 /* convert number from text */
18 18
19/* definitions for headers of binary files */ 19/* definitions for headers of binary files */