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 >
C/C++ Source or Header  |  1994-02-20  |  351b  |  15 lines

  1. /* $Id: pmapbgn.c 1.1 1994/02/20 16:38:26 ulrich Exp $ */
  2. /*
  3.  * X library function XSetWindowBackgroundPixmap.
  4.  */
  5. #include "Xlibemu.h"
  6.  
  7. int
  8. XSetWindowBackgroundPixmap (Display *dpy, Window window, Pixmap pixmap)
  9. {
  10.   XSetWindowAttributes attr;
  11.  
  12.   attr.background_pixmap = pixmap;
  13.   return XChangeWindowAttributes (dpy, window, CWBackPixmap, &attr);
  14. }
  15.