home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / mg-3b.lha / mg-3b / src.LZH / amiga / do_menu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-23  |  322 b   |  22 lines

  1. /*
  2.  * This controls generation of the code for handling menus. We need this code
  3.  * if either the BROWSER or the MENU are wanted.
  4.  */
  5. #ifndef    BROWSER
  6. #include "browser.h"
  7. #endif
  8.  
  9. #ifndef    MENU
  10. #include "menu.h"
  11. #endif
  12.  
  13. #ifdef    MENU
  14. #undef    DO_MENU
  15. #define    DO_MENU
  16. #endif
  17.  
  18. #ifdef    BROWSER
  19. #undef    DO_MENU
  20. #define    DO_MENU
  21. #endif
  22.