struct  WINDOW {
      int   handle;                       /* AES window handle         */
      int   kind;                         /* Window kind options list  */
      char  title[81];                    /* Window name if applicable */
      int   fullx,fully,fullw,fullh;      /* Full size dimensions      */
      int   outx,outy,outw,outh;          /* Outside dimensions        */
      int   inx,iny,inw,inh;              /* Inside dimensions         */
      int   open;                         /* Flag 1=open 0=closed      */
      
                                          /****** CLED SPECIFICS *******/
                                          
      int   curx,cury;                    /* Current cursor position in
                                             text window               */
                                             
      };
      

