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

  1. /* $Id: selinpu.c 1.1 1994/02/20 17:45:51 ulrich Exp $ */
  2. /*
  3.  * X library function XSelectInput.
  4.  */
  5. #include "Xlibemu.h"
  6.  
  7. int
  8. XSelectInput (Display*    dpy,
  9.           Window    window,
  10.           long    event_mask)
  11. {
  12.   XSetWindowAttributes attr;
  13.  
  14.   attr.event_mask = event_mask;
  15.   return XChangeWindowAttributes (dpy, window, CWEventMask, &attr);
  16. }
  17.