home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / crssrc16 / win_st.c < prev    next >
C/C++ Source or Header  |  1993-07-29  |  728b  |  35 lines

  1. /*
  2.  * Copyright 1980 Kenneth C. R. C. Arnold and The Regents of the
  3.  * University of California.  Permission is granted to freely
  4.  * distribute curses and its documentation provided that this
  5.  * notice is left intact.
  6.  *
  7.  *    @(#)win_st.c    6.1 (Berkeley) 4/24/86";
  8.  */
  9.  
  10. # define    WINDOW    struct _win_st
  11.  
  12. struct _win_st {
  13.     short        _cury, _curx;
  14.     short        _maxy, _maxx;
  15.     short        _begy, _begx;
  16.     short        _flags;
  17.     short        _ch_off;
  18.     bool        _clear;
  19.     bool        _leave;
  20.     bool        _scroll;
  21.     char        **_y;
  22.     short        *_firstch;
  23.     short        *_lastch;
  24.     struct _win_st    *_nextp, *_orig;
  25. };
  26.  
  27. # define    _ENDLINE    001
  28. # define    _FULLWIN    002
  29. # define    _SCROLLWIN    004
  30. # define    _FLUSH        010
  31. # define    _FULLLINE    020
  32. # define    _IDLINE        040
  33. # define    _STANDOUT    0200
  34. # define    _NOCHANGE    -1
  35.