1 /* Text in a 'window' - 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_TEXTWINDOW_H
11 #define HAVE_TEXTWINDOW_H
12 
13 
14 #define DISPLAYMENU_MAXTEXTLEN   800
15 
16 extern void display_textwin (char *text, int y, int x, int h, int w);
17 			/* (y,x): upper left position of 'text block'
18 			   h = heigth, w = width of block */
19 
20 
21 #endif /* HAVE_TEXTWINDOW_H */
22