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 >
Wrap
C/C++ Source or Header
|
1994-02-20
|
337b
|
17 lines
/* $Id: chcmap.c 1.1 1994/02/20 17:22:29 ulrich Exp $ */
/*
* X library function XSetWindowColormap.
*/
#include "Xlibemu.h"
int
XSetWindowColormap(Display * display,
Window w,
Colormap colormap)
{
XSetWindowAttributes xswa;
xswa.colormap = colormap;
return XChangeWindowAttributes (display, w, CWColormap, &xswa);
}