home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Shareware 1999 March
/
PCShareware-3-99.iso
/
IMPLE
/
DJGPP.RAR
/
DJGPP2
/
XLIB-SR0.ZIP
/
SRC
/
XLIBEMU
/
PMAPBGN.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-20
|
351b
|
15 lines
/* $Id: pmapbgn.c 1.1 1994/02/20 16:38:26 ulrich Exp $ */
/*
* X library function XSetWindowBackgroundPixmap.
*/
#include "Xlibemu.h"
int
XSetWindowBackgroundPixmap (Display *dpy, Window window, Pixmap pixmap)
{
XSetWindowAttributes attr;
attr.background_pixmap = pixmap;
return XChangeWindowAttributes (dpy, window, CWBackPixmap, &attr);
}