Files
skynet/skynet_imp.h
2012-08-01 11:33:10 +08:00

14 lines
202 B
C

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