1 /* 2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the Haiku License. 4 */ 5 6 7 #include <boot/platform.h> 8 #include <boot/menu.h> 9 10 11 void 12 platform_add_menus(Menu *menu) 13 { 14 // ToDo: implement me! 15 16 switch (menu->Type()) { 17 case MAIN_MENU: 18 break; 19 case SAFE_MODE_MENU: 20 break; 21 default: 22 break; 23 } 24 } 25 26 27 void 28 platform_update_menu_item(Menu *menu, MenuItem *item) 29 { 30 if (menu->IsHidden()) 31 return; 32 33 // ToDo: implement me! 34 } 35 36 37 void 38 platform_run_menu(Menu *menu) 39 { 40 // ToDo: implement me! 41 } 42 43