From 29ede6aa13144ff7b69c57a87be1ee93f57ae896 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 22 Nov 1999 11:12:07 -0200 Subject: first implementation of multiple states (reentrant code). --- lundump.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lundump.h') diff --git a/lundump.h b/lundump.h index 915464b0..7e310a49 100644 --- a/lundump.h +++ b/lundump.h @@ -1,5 +1,5 @@ /* -** $Id: lundump.h,v 1.9 1999/07/08 12:43:23 roberto Exp roberto $ +** $Id: lundump.h,v 1.10 1999/08/16 20:52:00 roberto Exp roberto $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -10,10 +10,10 @@ #include "lobject.h" #include "lzio.h" -TProtoFunc* luaU_undump1 (ZIO* Z); /* load one chunk */ -void luaU_badconstant (const char* s, int i, const TObject* o, TProtoFunc* tf); +TProtoFunc* luaU_undump1 (lua_State *L, ZIO* Z); /* load one chunk */ +void luaU_badconstant (lua_State *L, const char* s, int i, const TObject* o, TProtoFunc* tf); /* handle cases that cannot happen */ -double luaU_str2d (const char* b, const char* where); +double luaU_str2d (lua_State *L, const char* b, const char* where); /* convert number from text */ /* definitions for headers of binary files */ -- cgit v1.2.3-55-g6feb