home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------
- *
- * pmenuobj.h
- *
- * Popup MENU OBJect
- *
- * (c) 1989 j. alan eldridge
- *
- *----------------------------------------------------------*/
-
-
- #ifndef __PMENUOBJ__
- #define __PMENUOBJ__
-
- typedef struct {
- WINDOW *win;
- char **itemlist;
- int itemcnt,
- curitem,
- topitem,
- id;
- WINDOW *box,
- *save;
- } POPUP_MENU;
-
- #endif /* __PMENUOBJ__ */
-
-