menu: prepare header for merging

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-04-25 10:43:25 +09:30
parent 4e4ff70ef6
commit 4f5e9d2faf
2 changed files with 14 additions and 0 deletions

View File

@ -42,6 +42,7 @@ void M_DrawTextBox(int x, int y, int width, int lines);
void M_Print(int cx, int cy, const char *str);
void M_PrintWhite(int cx, int cy, const char *str);
#ifdef NQ_HACK
/* FIXME - These are only here for NQ/net_dgrm.c */
extern qboolean m_return_onerror;
extern char m_return_reason[32];
@ -51,5 +52,6 @@ enum {
m_options, m_video, m_keys, m_help, m_quit, m_lanconfig, m_gameoptions,
m_search, m_slist
} m_state;
#endif
#endif /* MENU_H */

View File

@ -42,4 +42,16 @@ void M_DrawTextBox(int x, int y, int width, int lines);
void M_Print(int cx, int cy, const char *str);
void M_PrintWhite(int cx, int cy, const char *str);
#ifdef NQ_HACK
/* FIXME - These are only here for NQ/net_dgrm.c */
extern qboolean m_return_onerror;
extern char m_return_reason[32];
extern int m_return_state;
enum {
m_none, m_main, m_singleplayer, m_load, m_save, m_multiplayer, m_setup,
m_options, m_video, m_keys, m_help, m_quit, m_lanconfig, m_gameoptions,
m_search, m_slist
} m_state;
#endif
#endif /* MENU_H */