Add ruamoko declarations for the new menu functions.

This commit is contained in:
Bill Currie 2013-01-13 20:13:19 +09:00
parent 0bfe387ce4
commit 2974bedd78
2 changed files with 6 additions and 0 deletions

View file

@ -23,5 +23,8 @@
@extern void Menu_SetQuit (int (func)(void));
@extern void Menu_Quit (void);
@extern int Menu_GetIndex (void);
@extern void Menu_Next (void);
@extern void Menu_Prev (void);
@extern void Menu_Enter (void);
#endif//__menu_h;

View file

@ -18,3 +18,6 @@ void (string name) Menu_SelectMenu = #0;
void (int () func) Menu_SetQuit = #0;
void () Menu_Quit = #0;
int () Menu_GetIndex = #0;
void (void) Menu_Next = #0;
void (void) Menu_Prev = #0;
void (void) Menu_Enter = #0;