1 /* 2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the MIT License. 4 */ 5 #ifndef VIDEO_H 6 #define VIDEO_H 7 8 9 #include <SupportDefs.h> 10 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