Files
skynet/skynet_imp.h
2012-08-01 20:30:36 +08:00

14 lines
208 B
C

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