home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_07 / 9n07094e < prev    next >
Text File  |  1991-04-02  |  504b  |  14 lines

  1.  
  2. typedef struct
  3.         {
  4.         long    flags;          /* which fields are used */
  5.         Bool    input;          /* Needs keyboard input? */
  6.         int     initial_state;
  7.         Pixmap  icon_pixmap;    /* pixmap used as icon */
  8.         Window  icon_window;    /* window used with icon */
  9.         int     icon_x, icon_y; /* initial icon position */
  10.         Pixmap  icon_mask;      /* pixmap used as mask */
  11.         XID     window_group;   /* id of window group */
  12.         } XWMHints;
  13.  
  14.