home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_07 / 9n07094b < prev    next >
Text File  |  1991-05-27  |  703b  |  22 lines

  1.  
  2.     typedef struct
  3.         {
  4.         XExtData        *ext_data;
  5.         Font            fid;    /* Font ID number */
  6.         unsigned        direction;
  7.         unsigned        min_char_or_byte2;
  8.         unsigned        max_char_or_byte2;
  9.         unsigned        min_byte1;
  10.         unsigned        max_byte1;
  11.         Bool            all_chars_exist;
  12.         unsigned        default_char;
  13.         int             n_properties;   /* how many props */
  14.         XFontProp       *properties;
  15.         XCharStruct     min_bounds;
  16.         XCharStruct     max_bounds;
  17.         XCharStruct     *per_char;
  18.         int             ascent;
  19.         int             descent;
  20.         } XFontStruct;
  21.  
  22.