00001 #ifndef INCLUDED_TASK_DRAW_BACK 00002 #define INCLUDED_TASK_DRAW_BACK 00003 00004 #ifndef INCLUDED_SCHED_TASK 00005 # include "SchedTask.h" 00006 #endif 00007 00008 class DrawBack : public SchedTask { 00009 public: 00010 SchedConstructor(DrawBack); 00011 00012 int run(void *rbuf, void *wbuf); 00013 00014 void linebuf_init(int *buf, int width, int rgb); 00015 }; 00016 00017 #endif