HomeServer/lualib-src/lua-seri.h
2024-11-20 15:41:37 +08:00

10 lines
141 B
C

#ifndef LUA_SERIALIZE_H
#define LUA_SERIALIZE_H
#include <lua.h>
int luaseri_pack(lua_State *L);
int luaseri_unpack(lua_State *L);
#endif