1 #ifndef LYNX_CURSOR_H__ 2 #define LYNX_CURSOR_H__ 3 4 /* hw_cursor_xxx works for voyager,718 and 750 */ 5 void hw_cursor_enable(struct lynx_cursor *cursor); 6 void hw_cursor_disable(struct lynx_cursor *cursor); 7 void hw_cursor_setSize(struct lynx_cursor *cursor, 8 int w, int h); 9 void hw_cursor_setPos(struct lynx_cursor *cursor, 10 int x, int y); 11 void hw_cursor_setColor(struct lynx_cursor *cursor, 12 u32 fg, u32 bg); 13 void hw_cursor_setData(struct lynx_cursor *cursor, 14 u16 rop, const u8 *data, const u8 *mask); 15 void hw_cursor_setData2(struct lynx_cursor *cursor, 16 u16 rop, const u8 *data, const u8 *mask); 17 #endif 18