home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 465.lha / ParM_v2.5r / Menu.h < prev    next >
C/C++ Source or Header  |  1991-01-05  |  330b  |  12 lines

  1. /* Menu.h */
  2.  
  3. struct Extended_MenuItem {
  4.     struct MenuItem emi_MenuItem;
  5.     char *emi_Cmd;        /* Command */
  6.     char *emi_Args;        /* Command arguments */
  7.     char *emi_Window;    /* console when mode = CLI */
  8.     long emi_Stack;        /* for CLI only */
  9.     BYTE emi_Pri;        /* for CLI only */
  10.     BYTE emi_Mode;        /* TOK_ARUN | TOK_RUN | TOK_WB | TOK_CFG */
  11. };
  12.