1995-10-17 07:12:45 -07:00
|
|
|
/*
|
2001-04-06 14:17:37 -07:00
|
|
|
** $Id: luadebug.h,v 1.19 2001/03/07 18:09:25 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"
|
|
|
|
|
2000-03-30 09:19:48 -08:00
|
|
|
typedef struct lua_Debug lua_Debug; /* activation record */
|
|
|
|
typedef struct lua_Localvar lua_Localvar;
|
1996-02-08 09:03:20 -08:00
|
|
|
|
2000-03-30 09:19:48 -08:00
|
|
|
typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
|
1996-01-09 12:22:44 -08:00
|
|
|
|
1995-10-17 07:12:45 -07:00
|
|
|
|
2000-10-20 09:39:03 -07:00
|
|
|
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar);
|
2001-04-06 14:17:37 -07:00
|
|
|
LUA_API int lua_getinfo (lua_State *L, const lua_char *what, lua_Debug *ar);
|
|
|
|
LUA_API const lua_char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);
|
|
|
|
LUA_API const lua_char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);
|
1996-02-07 10:10:27 -08:00
|
|
|
|
2000-10-20 09:39:03 -07:00
|
|
|
LUA_API lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
|
|
|
|
LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
|
2000-01-19 04:00:45 -08:00
|
|
|
|
|
|
|
|
2000-09-11 13:29:27 -07:00
|
|
|
#define LUA_IDSIZE 60
|
2000-01-19 04:00:45 -08:00
|
|
|
|
2000-03-30 09:19:48 -08:00
|
|
|
struct lua_Debug {
|
2001-04-06 14:17:37 -07:00
|
|
|
const lua_char *event; /* `call', `return' */
|
2000-01-19 04:00:45 -08:00
|
|
|
int currentline; /* (l) */
|
2001-04-06 14:17:37 -07:00
|
|
|
const lua_char *name; /* (n) */
|
|
|
|
const lua_char *namewhat; /* (n) `global', `tag method', `local', `field' */
|
2000-01-19 04:00:45 -08:00
|
|
|
int nups; /* (u) number of upvalues */
|
2000-09-11 13:29:27 -07:00
|
|
|
int linedefined; /* (S) */
|
2001-04-06 14:17:37 -07:00
|
|
|
const lua_char *what; /* (S) `Lua' function, `C' function, Lua `main' */
|
|
|
|
const lua_char *source; /* (S) */
|
|
|
|
lua_char short_src[LUA_IDSIZE]; /* (S) */
|
2000-01-19 04:00:45 -08:00
|
|
|
/* private part */
|
2001-03-07 10:09:25 -08:00
|
|
|
struct CallInfo *_ci; /* active function */
|
2000-01-19 04:00:45 -08:00
|
|
|
};
|
|
|
|
|
1999-01-15 05:11:22 -08:00
|
|
|
|
1995-10-17 07:12:45 -07:00
|
|
|
#endif
|