home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / windc86.zip / WINDOW.H < prev    next >
Text File  |  1989-03-20  |  640b  |  14 lines

  1. typedef struct wcb    /* --- window control block    ---        */
  2. {
  3.     int        ulx,    /* upper left corner x coordinate    */
  4.             uly,    /* ditto y coordinate                */
  5.             xsize,    /* line width of inside of window    */
  6.             ysize,    /* number of lines inside of window    */
  7.             cx,        /* current cursor offset in window    */
  8.             cy,
  9.             style,    /* attribute to be used in window    */
  10.             *scrnsave,    /* pointer to screen save buffer */
  11.             oldx,    /* cursor position when window was    */
  12.             oldy;    /* opened (used for screen restore)    */
  13. } WINDOW, *WINDOWPTR;
  14.