Files
skynet/service-src/service_lua.h
2012-10-27 22:48:38 +08:00

12 lines
231 B
C

#ifndef SKYNET_SERVICE_LUA_H
#define SKYNET_SERVICE_LUA_H
struct snlua {
lua_State * L;
const char * reload;
struct skynet_context * ctx;
int (*init)(struct snlua *l, struct skynet_context *ctx, const char * args);
};
#endif