1995-10-17 07:12:45 -07:00
|
|
|
/*
|
|
|
|
** LUA - Linguagem para Usuarios de Aplicacao
|
|
|
|
** Grupo de Tecnologia em Computacao Grafica
|
|
|
|
** TeCGraf - PUC-Rio
|
1995-10-26 07:21:56 -07:00
|
|
|
** $Id: luadebug.h,v 1.1 1995/10/17 14:12:45 roberto Exp roberto $
|
1995-10-17 07:12:45 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef luadebug_h
|
|
|
|
#define luadebug_h
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
lua_Object lua_stackedfunction(int level);
|
1995-10-26 07:21:56 -07:00
|
|
|
void lua_funcinfo (lua_Object func, char **filename, int *linedefined);
|
|
|
|
int lua_currentline (lua_Object func);
|
|
|
|
char *getobjname (lua_Object o, char **name);
|
1995-10-17 07:12:45 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|