]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/services/gfx/mw/v2_0/src/contrib/ntimers.h
Cleanup CVS ipmorted branch
[karo-tx-redboot.git] / packages / services / gfx / mw / v2_0 / src / contrib / ntimers.h
1 #ifndef __NTIMER_H__
2 #define __NTIMER_H__
3
4 struct GsTimer {
5     struct GsTimer* next;
6     long due;
7     void* some_func;
8     void* some_args;
9 };
10
11 struct GsTimerHolder {
12     struct GsTimer* head;
13     struct GsTimer* tail;
14     int numof;
15 };
16
17
18
19 #endif