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

  1.  
  2.     Display        *display;
  3.     Window        window;
  4.     Window        parent_window;
  5.     int            x, y;
  6.     unsigned int    width, height, border_width;
  7.     unsigned long    border_color, background_color;
  8.  
  9.     window = XCreateSimpleWindow( display,
  10.             parent_window,
  11.             x, y,
  12.             width, height,
  13.             border_width,
  14.             border_color,
  15.             background_color );
  16.  
  17.