mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Add ruamoko declarations for the new menu functions.
This commit is contained in:
parent
0bfe387ce4
commit
2974bedd78
2 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue