home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / other / cled122s / source / window.h < prev   
Encoding:
C/C++ Source or Header  |  1991-05-14  |  885 b   |  18 lines

  1. struct  WINDOW {
  2.       int   handle;                       /* AES window handle         */
  3.       int   kind;                         /* Window kind options list  */
  4.       char  title[81];                    /* Window name if applicable */
  5.       int   fullx,fully,fullw,fullh;      /* Full size dimensions      */
  6.       int   outx,outy,outw,outh;          /* Outside dimensions        */
  7.       int   inx,iny,inw,inh;              /* Inside dimensions         */
  8.       int   open;                         /* Flag 1=open 0=closed      */
  9.       
  10.                                           /****** CLED SPECIFICS *******/
  11.                                           
  12.       int   curx,cury;                    /* Current cursor position in
  13.                                              text window               */
  14.                                              
  15.       };
  16.       
  17.  
  18.