home *** CD-ROM | disk | FTP | other *** search
- /*********************
- *
- * tx_head.h [NON-ANSI] - text header file.
- *
- * Purpose: This file contains the constants and globals for the
- * menu and text 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 */
- char bord_back;
- char bord_fore;
- char menu_back;
- char menu_fore;
- };
-
- 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 */
- };
-
-