home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / REND.LZH / REND / CRTX11.H < prev    next >
C/C++ Source or Header  |  1996-06-16  |  663b  |  32 lines

  1. #include <X11/Xlib.h>
  2. #include <X11/Xutil.h>
  3. #include <X11/Xatom.h>
  4.  
  5.  
  6. Display        *display;
  7. Window        window;
  8. Pixmap        pixmap;
  9. Visual        *visual;
  10. XImage        *image;
  11. u_char        *imagedata;
  12. Status        result;
  13. XEvent        event;
  14. Colormap    cmap;
  15. GC            gc;
  16. XSizeHints    hints;
  17. int            x11_enable = 0;
  18. int            screen;
  19. int            depth;
  20. int            gm_x,gm_y,gm_w,gm_h;
  21.  
  22. int            vclass;
  23.  
  24. #define    NCOLS        256
  25. u_long        pixels[NCOLS];        /* index is local color code (0~NCOL) */
  26. u_int        ncols;
  27. u_short        red[NCOLS];            /* index is local color code (0~NCOL) */
  28. u_short        green[NCOLS];        /* index is local color code (0~NCOL) */
  29. u_short        blue[NCOLS];        /* index is local color code (0~NCOL) */
  30.  
  31.  
  32.