2005-12-19 13:35:01 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
|
2009-08-14 18:10:37 +00:00
|
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
2005-12-19 13:35:01 +00:00
|
|
|
*/
|
|
|
|
|
2010-10-23 19:08:52 +00:00
|
|
|
#ifndef GENERIC_TEXT_MENU_H
|
|
|
|
#define GENERIC_TEXT_MENU_H
|
2005-12-19 13:35:01 +00:00
|
|
|
|
|
|
|
class Menu;
|
|
|
|
class MenuItem;
|
|
|
|
|
|
|
|
void platform_generic_update_text_menu_item(Menu *menu, MenuItem *item);
|
|
|
|
void platform_generic_run_text_menu(Menu *menu);
|
|
|
|
|
2010-10-23 19:08:52 +00:00
|
|
|
#endif /* GENERIC_TEXT_MENU_H */
|