Changed calling conventions again

This commit is contained in:
2020-12-05 18:57:53 -05:00
parent 150a71433b
commit c751678179
14 changed files with 403 additions and 219 deletions

View File

@@ -1,18 +1,11 @@
// ClassDB - code to manipulate class databases.
//
// It would have been easier to write this in Lua, but since every
// lua module in the system depends on it, it's safer to have it
// preloaded before we even open any of the lua files.
//
#ifndef GLOBALDB_HPP
#define GLOBALDB_HPP
#include "luastack.hpp"
int lpx_globaldb_global(lua_State *L);
void luaopen_lpx_globaldb(lua_State *L);
int globaldb_global(lua_State *L);
#endif // GLOBALDB_HPP