home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / v / vol1n7.zip / MENU.H < prev    next >
Text File  |  1992-08-25  |  691b  |  24 lines

  1. /* MENU.H - Prototypes for menu functions
  2. Copyright (c) 1992 Timur Tabi
  3. Copyright (c) 1992 Fasa Corporation
  4.  
  5. The following trademarks are the property of Fasa Corporation:
  6. BattleTech, CityTech, AeroTech, MechWarrior, BattleMech, and 'Mech.
  7. The use of these trademarks should not be construed as a challenge to these marks.
  8. */
  9.  
  10. // Global variables
  11. #ifdef MENU_C
  12. #define EXTERN
  13. #else
  14. #define EXTERN extern
  15. #endif
  16.  
  17. EXTERN USHORT usCurTer;                         // The Menu ID of the currently selected terrain type
  18. EXTERN enum {MODE_TARGET, MODE_EDIT} eMode;     // What the user is currently doing
  19.  
  20.  
  21. #undef EXTERN
  22. void InitMenu(void);
  23. void MainCommand(USHORT usCmd);
  24.