1 /* Buttons - Header
2 
3  * Copyright (C) 1998 J.A. Bezemer
4  *
5  * Licensed under the terms of the GNU General Public License.
6  * ABSOLUTELY NO WARRANTY.
7  * See the file `COPYING' in this directory.
8  */
9 
10 #ifndef HAVE_BUTTONS_H
11 #define HAVE_BUTTONS_H
12 
13 
14 typedef struct
15   {
16     char *text;
17     int y;
18     int x;
19     int selected;
20   }
21 button_t;
22 
23 extern void button_display (button_t * button);
24 
25 
26 #endif /* HAVE_BUTTONS_H */
27