BSD 4_1c_2 development
[unix-history] / usr / doc / curses / win_st.c
CommitLineData
a096a97c
KA
1# define WINDOW struct _win_st
2
3struct _win_st {
4 short _cury, _curx;
5 short _maxy, _maxx;
6 short _begy, _begx;
7 short _flags;
8 bool _clear;
9 bool _leave;
10 bool _scroll;
11 char **_y;
12 short *_firstch;
13 short *_lastch;
14};
15
16# define _SUBWIN 01
17# define _ENDLINE 02
18# define _FULLWIN 04
19# define _SCROLLWIN 010
20# define _STANDOUT 0200