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

  1.  
  2.     Display        *display;
  3.     Window        window;
  4.     char            *name;        /* window name */
  5.     char            *icon_name;
  6.     Pixmap        icon_bitmap;
  7.     char            *argv[];
  8.     int            argc;
  9.     XSizeHints    *sizehints;
  10.  
  11.     XSetStandardProperties( display, 
  12.         window,
  13.         name,
  14.         icon_name,
  15.         icon_bitmap,
  16.         argv, argc,
  17.         sizehints );
  18.  
  19.