1 /* 2 * Copyright 2008-2010, François Revol, revol@free.fr. All rights reserved. 3 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef VIDEO_H 7 #define VIDEO_H 8 9 10 #include <SupportDefs.h> 11 12 class Menu; 13 class MenuItem; 14 15 bool video_mode_hook(Menu *menu, MenuItem *item); 16 Menu *video_mode_menu(); 17 18 #endif /* VIDEO_H */ 19