HomeServer/lualib-src/lua-seri.h

10 lines
141 B
C
Raw Normal View History

2024-11-20 15:41:09 +08:00
#ifndef LUA_SERIALIZE_H
#define LUA_SERIALIZE_H
#include <lua.h>
int luaseri_pack(lua_State *L);
int luaseri_unpack(lua_State *L);
#endif