Mercurial > hg > Game > CbCTaskManager
annotate taskinit.cbc @ 7:299cc57f332b
prototype of fifo version.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 06 Jan 2010 11:28:15 +0900 |
parents | 51c3a631a7bc |
children |
rev | line source |
---|---|
6 | 1 #include "Task.h" |
2 #include "taskinit.h" | |
3 | |
7 | 4 |
6 | 5 const int max_tasktype = MAX_TASKCLASS; |
7 | 6 extern __code nojob(void *, void *, void *); |
6 | 7 |
8 #undef DEFINETASKTYPE | |
9 #define DEFINETASKTYPE(_var, _code0, _name, _type) \ | |
10 { _code0, _name, _type }, | |
11 | |
12 const TaskType tasktypes[] = { | |
7 | 13 { nojob, "no jobs", F_NONE }, |
14 { nojob, "no jobs", F_NONE }, | |
6 | 15 #include "task.def" |
16 }; | |
17 | |
18 | |
19 |