home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / shell / h / ShellMenu < prev    next >
Encoding:
Text File  |  1994-04-08  |  584 b   |  26 lines

  1. /* This is written to work with Menus_* functions posted to comp.sys.acorn ages     */
  2. /* ago. Therefore it *Won't* work with standard DeskLib.                */
  3.  
  4.  
  5. #ifndef __ShellMenu_h
  6. #define __ShellMenu_h
  7.  
  8. #ifndef __Shell_h
  9. #include "Shell.Shell.h"
  10. #endif
  11.  
  12.  
  13. typedef void (*Shell_menuhandler) ( char *selections);
  14.  
  15. extern BOOL Shell_pause;
  16.  
  17.  
  18. void Shell_MenuPoll( void);
  19. void Shell_InitMenuHandler( char *menutitle, char *menustring, Shell_menuhandler menuhandler);
  20. void Shell_ChangeMenu( char *menutitle, char *menustring);
  21. void Shell_SuspendMenu( void);
  22. void Shell_UnSuspendMenu( void);
  23.  
  24.  
  25. #endif
  26.