aboutsummaryrefslogtreecommitdiff
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-54840fb25696ab30e11d2d80f3c18af6d1f01481.tar.gz
lua-54840fb25696ab30e11d2d80f3c18af6d1f01481.tar.bz2
lua-54840fb25696ab30e11d2d80f3c18af6d1f01481.zip
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 @@
1/* 1/*
2** $Id: luadebug.h,v 1.2 1998/06/19 16:14:09 roberto Exp roberto $ 2** $Id: luadebug.h,v 1.3 1998/09/07 18:59:59 roberto Exp roberto $
3** Debugging API 3** Debugging API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -31,4 +31,9 @@ extern lua_CHFunction lua_callhook;
31extern int lua_debug; 31extern int lua_debug;
32 32
33 33
34extern lua_LHFunction lua_setlinehook (lua_LHFunction func);
35extern lua_CHFunction lua_setcallhook (lua_CHFunction func);
36extern int lua_setdebug (int debug);
37
38
34#endif 39#endif