summaryrefslogtreecommitdiff
path: root/include/BLua.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/BLua.h')
-rw-r--r--include/BLua.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/BLua.h b/include/BLua.h
index 3d8afe3..5f30199 100644
--- a/include/BLua.h
+++ b/include/BLua.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: BLua.h,v 1.5 2003-12-04 04:09:01 pixel Exp $ */
+/* $Id: BLua.h,v 1.6 2003-12-06 04:26:16 pixel Exp $ */
#ifndef __BLUA_H__
#define __BLUA_H__
@@ -49,8 +49,8 @@ class Lua : public Base {
void push(lua_CFunction, int = 0);
void pop(int = 1);
void newtable();
- void settable(int = -3, bool = false);
- void gettable(int = -2, bool = false);
+ void settable(int = -3, bool raw = false);
+ void gettable(int = -2, bool raw = false);
int gettop();
void error(const String &);
int type(int = -1);
@@ -69,8 +69,8 @@ class Lua : public Base {
lua_CFunction tocfunction(int = -1);
void * touserdata(int = -1);
Lua * tothread(int = -1);
- void load(Handle *, bool = true) throw (GeneralException);
- void dump(Handle *, bool = true);
+ void load(Handle *, bool docall = true) throw (GeneralException);
+ void dump(Handle *, bool strip = true);
Lua * thread();
static Lua * find(lua_State *) throw (GeneralException);
void showerror();