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