summaryrefslogtreecommitdiff
path: root/include/luadebug.h
diff options
context:
space:
mode:
authorLua Team <team@lua.org>1998-07-11 12:00:00 +0000
committerrepogen <>1998-07-11 12:00:00 +0000
commit377347776f1f3d820f92151f70bec667f96d5e6b (patch)
treecdb3ba26158df33547dfe765547177afcee119d1 /include/luadebug.h
parent4f8c5d0f284e1f4da717aea5008915f185cd2e05 (diff)
downloadlua-github-3.1.tar.gz
Lua 3.13.1
Diffstat (limited to 'include/luadebug.h')
-rw-r--r--include/luadebug.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/luadebug.h b/include/luadebug.h
index 9392967c..36726f7f 100644
--- a/include/luadebug.h
+++ b/include/luadebug.h
@@ -1,14 +1,14 @@
/*
-** LUA - Linguagem para Usuarios de Aplicacao
-** Grupo de Tecnologia em Computacao Grafica
-** TeCGraf - PUC-Rio
-** $Id: luadebug.h,v 1.6 1996/03/20 17:05:44 roberto Exp $
+** $Id: luadebug.h,v 1.2 1998/06/19 16:14:09 roberto Exp $
+** Debugging API
+** See Copyright Notice in lua.h
*/
#ifndef luadebug_h
#define luadebug_h
+
#include "lua.h"
typedef lua_Object lua_Function;
@@ -24,8 +24,10 @@ char *lua_getobjname (lua_Object o, char **name);
lua_Object lua_getlocal (lua_Function func, int local_number, char **name);
int lua_setlocal (lua_Function func, int local_number);
+
extern lua_LHFunction lua_linehook;
extern lua_CHFunction lua_callhook;
extern int lua_debug;
+
#endif