home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05037b < prev    next >
Text File  |  1990-11-11  |  457b  |  19 lines

  1.  
  2.     typedef struct
  3.         {
  4.         long    flags;    /* which fields are filled in */
  5.         int    x, y;    /* obsolete in Release 4*/
  6.         int    width, height; /* obsolete in R4 */
  7.         int    min_width, min_height;
  8.         int    max_width, max_height;
  9.         int    width_inc, height_inc;
  10.         struct
  11.             {
  12.             int    x;    /* numerator */
  13.             int    y;    /* denominator */
  14.             } min_aspect, max_aspect;
  15.         int    base_width, base_height; /* new in R4 */
  16.         int    win_gravity;    /* new in Release 4 */
  17.         } XSizeHints;
  18.  
  19.