change source dir

This commit is contained in:
云风
2012-08-09 15:36:56 +08:00
parent d23c4aa905
commit eed9c42fd4
46 changed files with 284 additions and 118 deletions

18
skynet-src/skynet_imp.h Normal file
View File

@@ -0,0 +1,18 @@
#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