refactor(build): use vendored versions of mpack and luabitop

This commit is contained in:
bfredl
2023-04-15 12:23:45 +02:00
parent cff02e993d
commit 1e60e8c040
15 changed files with 102 additions and 129 deletions

View File

@@ -1171,6 +1171,9 @@ static const luaL_reg mpack_functions[] = {
{NULL, NULL}
};
#ifdef NLUA_WIN32
__declspec(dllexport)
#endif
int luaopen_mpack(lua_State *L)
{
/* Unpacker */

View File

@@ -1,3 +1,6 @@
#include <lua.h>
#ifdef NLUA_WIN32
__declspec(dllexport)
#endif
int luaopen_mpack(lua_State *L);