mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 11:03:12 +00:00
10 lines
143 B
C
10 lines
143 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
|