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

  1.  
  2.     #include <stdio.h>
  3.     #include <X11/Xlib.h>
  4.  
  5.     Display    *display;
  6.     char        *display_name;
  7.  
  8.     display = XOpenDisplay( display_name );
  9.  
  10.     if ( display != (Display *) NULL )
  11.         {
  12.         /* 
  13.          * We have success!
  14.          */
  15.         }
  16.  
  17.