mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
10 lines
141 B
C
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
|