lua serialize support

This commit is contained in:
云风
2012-08-09 11:36:39 +08:00
parent 0f5fa26052
commit b33b5fab39
16 changed files with 894 additions and 49 deletions

9
lua-serialize/luaseri.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef LUA_SERIALIZE_H
#define LUA_SERIALIZE_H
#include <lua.h>
int _luaseri_pack(lua_State *L);
int _luaseri_unpack(lua_State *L);
#endif