aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luadebug.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/luadebug.h b/luadebug.h
index 0f27d695..4bcf0840 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,14 +1,14 @@
1/* 1/*
2** LUA - Linguagem para Usuarios de Aplicacao 2** $Id: $
3** Grupo de Tecnologia em Computacao Grafica 3** Debuging API
4** TeCGraf - PUC-Rio 4** See Copyright Notice in lua.h
5** $Id: luadebug.h,v 1.5 1996/02/08 17:03:20 roberto Exp roberto $
6*/ 5*/
7 6
8 7
9#ifndef luadebug_h 8#ifndef luadebug_h
10#define luadebug_h 9#define luadebug_h
11 10
11
12#include "lua.h" 12#include "lua.h"
13 13
14typedef lua_Object lua_Function; 14typedef lua_Object lua_Function;
@@ -24,8 +24,10 @@ char *lua_getobjname (lua_Object o, char **name);
24lua_Object lua_getlocal (lua_Function func, int local_number, char **name); 24lua_Object lua_getlocal (lua_Function func, int local_number, char **name);
25int lua_setlocal (lua_Function func, int local_number); 25int lua_setlocal (lua_Function func, int local_number);
26 26
27
27extern lua_LHFunction lua_linehook; 28extern lua_LHFunction lua_linehook;
28extern lua_CHFunction lua_callhook; 29extern lua_CHFunction lua_callhook;
29extern int lua_debug; 30extern int lua_debug;
30 31
32
31#endif 33#endif