make working classes && add vscode config && add lua submodule

This commit is contained in:
2025-04-05 17:27:29 +05:00
parent 896579518c
commit 273e9edfc7
14 changed files with 337 additions and 241 deletions

View File

@@ -22,15 +22,15 @@ struct ARP_entry
/*
* Create ARPEntry
*/
void syscalls_pushARPEntry(lua_State *L, struct ARP_entry *entry);
struct ARP_entry* syscalls_pushARPEntry(lua_State* L);
/*
* shell of syscalls_createARPEntry for lua
*/
int syscalls_newARPEntry(lua_State *L);
int syscalls_indexARPEntry(lua_State *L);
int syscalls_newindexARPEntry(lua_State *L);
int syscalls_newARPEntry(lua_State* L);
int syscalls_indexARPEntry(lua_State* L);
int syscalls_newindexARPEntry(lua_State* L);
void syscalls_register_ARPEntry(lua_State *L);
void syscalls_register_ARPEntry(lua_State* L);
#endif