Files
skynet/skynet_imp.h
2012-08-03 18:20:05 +08:00

18 lines
285 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;
};
void skynet_start(struct skynet_config * config);
#endif