Files
skynet/skynet-src/skynet_imp.h
2012-10-11 19:25:13 +08:00

18 lines
293 B
C

#ifndef SKYNET_IMP_H
#define SKYNET_IMP_H
struct skynet_config {
int thread;
int harbor;
const char * logger;
const char * module_path;
const char * master;
const char * local;
const char * start;
const char * standalone;
};
void skynet_start(struct skynet_config * config);
#endif