home *** CD-ROM | disk | FTP | other *** search
- /*********************
- *
- * tx_defs.h [NON-ANSI] - header file for menu functions.
- *
- * Purpose: This file defines the structures used by the menu functions.
- *
- * Blackstar C Function Library
- * (c) Copyright 1985,1989 Sterling Castle Software
- *
- *******/
-
- struct MENU {
- int col,row;
- char *title;
- short width; /* width of total menu */
- short field; /* width of single selection field */
- short noel; /* # of elements in menu */
- short noelx; /* # elements to display in x direction */
- char **sel; /* pointer to selection pointers */
- char *buf; /* pointer to selections */
- };
-
- struct MESG {
- int col1,row1; /* to left corner for message box */
- int col2,row2; /* bottom right corner */
- int infield; /* input field width */
- char *intext; /* iput text */
- char *text; /* message text */
- };
-