home *** CD-ROM | disk | FTP | other *** search
- /*
- * getkey.h -- structures and prototypes for getkey.c.
- * Include gmtc.h before this file.
- *
- * 2 july 1989 Olle.
- */
-
- /* menu descriptor */
- typedef struct
- {
- char *item[50]; /* the items */
- int row; /* positon high limit (low is 0) */
- int col[50]; /* item positions */
- } menudescr;
-
-
- void wbup( void );
- int gotkey( void );
- int getkey( struct gm_status *gp );
- void showmenu( menudescr *mp );
- void nomenu( void );
-