home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 1999 March / PCShareware-3-99.iso / IMPLE / DJGPP.RAR / DJGPP2 / XLIB-SR0.ZIP / SRC / XLIBEMU / CHCMAP.C < prev    next >
C/C++ Source or Header  |  1994-02-20  |  337b  |  17 lines

  1. /* $Id: chcmap.c 1.1 1994/02/20 17:22:29 ulrich Exp $ */
  2. /*
  3.  * X library function XSetWindowColormap.
  4.  */
  5. #include "Xlibemu.h"
  6.  
  7. int
  8. XSetWindowColormap(Display *    display,
  9.            Window    w,
  10.            Colormap    colormap)
  11. {
  12.   XSetWindowAttributes xswa;
  13.  
  14.   xswa.colormap = colormap;
  15.   return XChangeWindowAttributes (display, w, CWColormap, &xswa);
  16. }
  17.