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

  1.  
  2.     Display        *display;
  3.     Window        window;
  4.     GC            gc;
  5.     int            x, y;        /* upper left corner */
  6.     unsigned int    width, height;    /* size of rectangle */
  7.  
  8.     XFillRectangle( display,
  9.         window,
  10.         gc,
  11.         x, y,
  12.         width, height );
  13.  
  14.