mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 03:03:52 +00:00
fix(profile): overhaul 3.3.5a-windows-386 to work with SuperImportSymbolsScript.py
This commit is contained in:
parent
bdb3389efb
commit
2d003672ec
39 changed files with 1476 additions and 1232 deletions
|
|
@ -89,6 +89,7 @@ union Udata {
|
|||
|
||||
struct Proto {
|
||||
GCObject* next;
|
||||
uint32_t unk04;
|
||||
lu_byte tt;
|
||||
lu_byte marked;
|
||||
TValue* k;
|
||||
|
|
|
|||
|
|
@ -45,9 +45,11 @@ struct lua_longjmp {
|
|||
|
||||
typedef lu_int32 Instruction;
|
||||
|
||||
typedef int32_t (*lua_CFunction)(lua_State*);
|
||||
typedef int32_t (*lua_CFunction_interface)(lua_State*);
|
||||
typedef lua_CFunction_interface lua_CFunction;
|
||||
|
||||
typedef void* (*lua_Alloc)(void*, void*, size_t, size_t);
|
||||
typedef void* (*lua_Alloc_interface)(void*, void*, size_t, size_t);
|
||||
typedef lua_Alloc_interface lua_Alloc;
|
||||
|
||||
struct luaL_Reg {
|
||||
const char* name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue