1 /* 2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Copyright 2011, Rene Gollent, rene@gollent.com. All rights reserved. 4 * 5 * Distributed under the terms of the MIT License. 6 */ 7 #ifndef VIDEO_H 8 #define VIDEO_H 9 10 11 #include <SupportDefs.h> 12 13 14 class Menu; 15 class MenuItem; 16 17 bool video_mode_hook(Menu *menu, MenuItem *item); 18 Menu *video_mode_menu(); 19 20 void video_move_text_cursor(int x, int y); 21 void video_show_text_cursor(void); 22 void video_hide_text_cursor(void); 23 24 #endif /* VIDEO_H */ 25