home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / vifs / getkey.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-07  |  452 b   |  22 lines

  1. /*
  2.  *    getkey.h  --  structures and prototypes for getkey.c.
  3.  *              Include gmtc.h before this file.
  4.  *
  5.  *    2 july 1989  Olle.
  6.  */
  7.  
  8. /* menu descriptor */
  9. typedef struct
  10.     {
  11.     char *item[50];    /* the items */
  12.     int row;    /* positon high limit (low is 0) */
  13.     int col[50];    /* item positions */
  14.     } menudescr;
  15.  
  16.  
  17. void wbup( void );
  18. int gotkey( void );
  19. int getkey( struct gm_status *gp );
  20. void showmenu( menudescr *mp );
  21. void nomenu( void );
  22.