Mercurial > hg > Game > CbCTaskManager
diff src/taskinit.cbc @ 8:07fab8c367b2
made src directory and move all source files into it.
support autocont and automake tools.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 08 Jan 2010 14:40:49 +0900 |
parents | taskinit.cbc@299cc57f332b |
children | f06fb0370caf |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/taskinit.cbc Fri Jan 08 14:40:49 2010 +0900 @@ -0,0 +1,19 @@ +#include "Task.h" +#include "taskinit.h" + + +const int max_tasktype = MAX_TASKCLASS; +extern __code nojob(void *, void *, void *); + +#undef DEFINETASKTYPE +#define DEFINETASKTYPE(_var, _code0, _name, _type) \ + { _code0, _name, _type }, + +const TaskType tasktypes[] = { + { nojob, "no jobs", F_NONE }, + { nojob, "no jobs", F_NONE }, + #include "task.def" +}; + + +