Files
skynet/skynet-src/skynet_imp.h
2012-08-09 15:36:56 +08:00

19 lines
302 B
C

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