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

  1.  
  2.     Display    *display;
  3.     Window    window;
  4.     GC        gc;
  5.     int        x1, y1;
  6.     int        x2, y2;
  7.  
  8.     XDrawLine( display,
  9.         window,
  10.         gc,
  11.         x1, y1,    /* starting point */
  12.         x2, y2 );    /* ending point */
  13.  
  14.