mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 11:03:12 +00:00
11 lines
209 B
C
11 lines
209 B
C
#ifndef SKYNET_SERVICE_LUA_H
|
|
#define SKYNET_SERVICE_LUA_H
|
|
|
|
struct snlua {
|
|
lua_State * L;
|
|
struct skynet_context * ctx;
|
|
int (*init)(struct snlua *l, struct skynet_context *ctx, const char * args);
|
|
};
|
|
|
|
#endif
|