mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 03:03:52 +00:00
feat(profile): refactor lua, bc code
This commit is contained in:
parent
e79ee08905
commit
37db5336e4
40 changed files with 3424 additions and 0 deletions
20
profile/3.3.5a-windows-386/include/lua/debug.h
Normal file
20
profile/3.3.5a-windows-386/include/lua/debug.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef LUA_DEBUG_H
|
||||
#define LUA_DEBUG_H
|
||||
|
||||
DECLARE_STRUCT(lua_Debug);
|
||||
|
||||
struct lua_Debug {
|
||||
int32_t event;
|
||||
char* name;
|
||||
char* namewhat;
|
||||
char* what;
|
||||
char* source;
|
||||
int32_t currentline;
|
||||
int32_t nups;
|
||||
int32_t linedefined;
|
||||
int32_t lastlinedefined;
|
||||
char short_src[60];
|
||||
int32_t i_ci;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue