fix drawText Func

This commit is contained in:
2025-04-11 14:49:53 +05:00
parent 764e5a1cde
commit 0eb821a67b
9 changed files with 83 additions and 33 deletions

View File

@@ -23,4 +23,24 @@ int syscalls_DebugPuts(lua_State* L);
int syscalls_SetMessageArea(lua_State* L);
#endif // __DEBUG_LUA_H__
int syscalls_GetRegisters(lua_State* L);
int syscalls_SetRegisters(lua_State* L);
int syscalls_Disconnect(lua_State* L);
int syscalls_Stop(lua_State* L);
int syscalls_Continue(lua_State* L);
int syscalls_ReadFromMem(lua_State* L);
int syscalls_WriteToMem(lua_State* L);
int syscalls_Done(lua_State* L);
int syscalls_DefineBreakpoint(lua_State* L);
int syscalls_UndefBreakpoint(lua_State* L);
#endif // __DEBUG_LUA_H__