1995-10-17 12:12:45 -02:00
|
|
|
/*
|
|
|
|
** LUA - Linguagem para Usuarios de Aplicacao
|
|
|
|
** Grupo de Tecnologia em Computacao Grafica
|
|
|
|
** TeCGraf - PUC-Rio
|
1996-02-07 16:10:27 -02:00
|
|
|
** $Id: luadebug.h,v 1.3 1996/01/09 20:22:44 roberto Exp roberto $
|
1995-10-17 12:12:45 -02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef luadebug_h
|
|
|
|
#define luadebug_h
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
1996-01-09 18:22:44 -02:00
|
|
|
typedef void (*lua_LHFunction) (int line);
|
|
|
|
typedef void (*lua_CHFunction) (lua_Object func, char *file, int line);
|
|
|
|
|
1996-02-07 16:10:27 -02:00
|
|
|
lua_Object lua_stackedfunction (int level);
|
1995-10-26 12:21:56 -02:00
|
|
|
void lua_funcinfo (lua_Object func, char **filename, int *linedefined);
|
|
|
|
int lua_currentline (lua_Object func);
|
1996-01-09 18:22:44 -02:00
|
|
|
char *lua_getobjname (lua_Object o, char **name);
|
|
|
|
lua_LHFunction lua_setlinehook (lua_LHFunction hook);
|
|
|
|
lua_CHFunction lua_setcallhook (lua_CHFunction hook);
|
1995-10-17 12:12:45 -02:00
|
|
|
|
1996-02-07 16:10:27 -02:00
|
|
|
lua_Object lua_getlocal (lua_Object func, int local_number, char **name);
|
|
|
|
int lua_setlocal (lua_Object func, int local_number);
|
|
|
|
|
|
|
|
extern int lua_debug;
|
|
|
|
|
1995-10-17 12:12:45 -02:00
|
|
|
#endif
|