summaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-01-15 11:11:22 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-01-15 11:11:22 -0200
commit54840fb25696ab30e11d2d80f3c18af6d1f01481 (patch)
treeb2d0fd6ad4dd450ba7f845e6c1ea3d73efcbd7f6 /luadebug.h
parente87fddf1adab8ca60ec988c9d71d29a44d7129a3 (diff)
downloadlua-github-54840fb25696ab30e11d2d80f3c18af6d1f01481.tar.gz
new functions to manipulate C global variables
Diffstat (limited to 'luadebug.h')
-rw-r--r--luadebug.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/luadebug.h b/luadebug.h
index 12e951cd..dbc5a1d0 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,5 +1,5 @@
/*
-** $Id: luadebug.h,v 1.2 1998/06/19 16:14:09 roberto Exp roberto $
+** $Id: luadebug.h,v 1.3 1998/09/07 18:59:59 roberto Exp roberto $
** Debugging API
** See Copyright Notice in lua.h
*/
@@ -31,4 +31,9 @@ extern lua_CHFunction lua_callhook;
extern int lua_debug;
+extern lua_LHFunction lua_setlinehook (lua_LHFunction func);
+extern lua_CHFunction lua_setcallhook (lua_CHFunction func);
+extern int lua_setdebug (int debug);
+
+
#endif