Mercurial > hg > Game > Cerium
annotate Renderer/Engine/task/UpdateKey.cc @ 603:57ec231bc8ac draft
long -> memaddr (64 or 32)
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 07 Nov 2009 14:13:29 +0900 |
parents | 3bc98f6d31ff |
children | eb6add789a24 |
rev | line source |
---|---|
539 | 1 #include "TaskManager.h" |
2 #include "KeyStat.h" | |
3 #include "UpdateKey.h" | |
4 #include "global_alloc.h" | |
5 | |
6 SchedDefineTask(UpdateKey); | |
7 | |
8 static int | |
9 run(SchedTask *smanager, void *rbuf, void *wbuf) | |
10 { | |
11 key_stat *key = (key_stat*)smanager->get_input(rbuf, 0); | |
12 key_stat *gdata = (key_stat*)smanager->global_get(KEY_STATUS); | |
13 memcpy(gdata, key, sizeof(key_stat)); | |
14 | |
15 return 0; | |
16 } |