diff options
Diffstat (limited to 'luadebug.h')
-rw-r--r-- | luadebug.h | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luadebug.h,v 1.3 1998/09/07 18:59:59 roberto Exp roberto $ | 2 | ** $Id: luadebug.h,v 1.4 1999/01/15 13:11:22 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 | */ |
@@ -26,14 +26,9 @@ int lua_setlocal (lua_Function func, int local_number); | |||
26 | 26 | ||
27 | int lua_nups (lua_Function func); | 27 | int lua_nups (lua_Function func); |
28 | 28 | ||
29 | extern lua_LHFunction lua_linehook; | 29 | lua_LHFunction lua_setlinehook (lua_LHFunction func); |
30 | extern lua_CHFunction lua_callhook; | 30 | lua_CHFunction lua_setcallhook (lua_CHFunction func); |
31 | extern int lua_debug; | 31 | int lua_setdebug (int debug); |
32 | |||
33 | |||
34 | extern lua_LHFunction lua_setlinehook (lua_LHFunction func); | ||
35 | extern lua_CHFunction lua_setcallhook (lua_CHFunction func); | ||
36 | extern int lua_setdebug (int debug); | ||
37 | 32 | ||
38 | 33 | ||
39 | #endif | 34 | #endif |