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