1995-10-17 07:12:45 -07:00
|
|
|
/*
|
1999-02-04 09:47:59 -08:00
|
|
|
** $Id: luadebug.h,v 1.4 1999/01/15 13:11:22 roberto Exp roberto $
|
1998-06-19 09:14:09 -07:00
|
|
|
** Debugging API
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
1995-10-17 07:12:45 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef luadebug_h
|
|
|
|
#define luadebug_h
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1995-10-17 07:12:45 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
1996-02-08 09:03:20 -08:00
|
|
|
typedef lua_Object lua_Function;
|
|
|
|
|
1996-01-09 12:22:44 -08:00
|
|
|
typedef void (*lua_LHFunction) (int line);
|
1996-02-08 09:03:20 -08:00
|
|
|
typedef void (*lua_CHFunction) (lua_Function func, char *file, int line);
|
1996-01-09 12:22:44 -08:00
|
|
|
|
1996-02-08 09:03:20 -08:00
|
|
|
lua_Function lua_stackedfunction (int level);
|
1995-10-26 07:21:56 -07:00
|
|
|
void lua_funcinfo (lua_Object func, char **filename, int *linedefined);
|
1996-02-08 09:03:20 -08:00
|
|
|
int lua_currentline (lua_Function func);
|
1996-01-09 12:22:44 -08:00
|
|
|
char *lua_getobjname (lua_Object o, char **name);
|
1995-10-17 07:12:45 -07:00
|
|
|
|
1996-02-08 09:03:20 -08:00
|
|
|
lua_Object lua_getlocal (lua_Function func, int local_number, char **name);
|
|
|
|
int lua_setlocal (lua_Function func, int local_number);
|
1996-02-07 10:10:27 -08:00
|
|
|
|
1998-09-07 11:59:59 -07:00
|
|
|
int lua_nups (lua_Function func);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-02-04 09:47:59 -08:00
|
|
|
lua_LHFunction lua_setlinehook (lua_LHFunction func);
|
|
|
|
lua_CHFunction lua_setcallhook (lua_CHFunction func);
|
|
|
|
int lua_setdebug (int debug);
|
1999-01-15 05:11:22 -08:00
|
|
|
|
|
|
|
|
1995-10-17 07:12:45 -07:00
|
|
|
#endif
|