comparison Renderer/Engine/task/InitKey.cc @ 0:04e28d8d3c6f

first commit
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 08 Nov 2010 01:23:25 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:04e28d8d3c6f
1 #include <stdlib.h>
2 #include <string.h>
3 #include "InitKey.h"
4 #include "Func.h"
5 #include "KeyStat.h"
6
7 SchedDefineTask(InitKey);
8
9 static int
10 run(SchedTask *smanager, void *rbuf , void *wbuf)
11 {
12
13 smanager->global_alloc(KEY_STATUS, sizeof(key_stat));
14
15 return 0;
16 }