diff options
author | marha <marha@users.sourceforge.net> | 2010-01-19 23:10:44 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-01-19 23:10:44 +0000 |
commit | a9768b035f2c47be0908520474073cc68d225d8a (patch) | |
tree | f9894781b3f1d5b36d5a5fa284c82ad36c9cf917 /libX11/src/EvToWire.c | |
parent | b152ebf4b66368e1cbfda1ae81cef29bf9c00bb7 (diff) | |
download | vcxsrv-a9768b035f2c47be0908520474073cc68d225d8a.tar.gz vcxsrv-a9768b035f2c47be0908520474073cc68d225d8a.tar.bz2 vcxsrv-a9768b035f2c47be0908520474073cc68d225d8a.zip |
Updated to:
libX11-1.3.3
pixman-0.17.4
Diffstat (limited to 'libX11/src/EvToWire.c')
-rw-r--r-- | libX11/src/EvToWire.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libX11/src/EvToWire.c b/libX11/src/EvToWire.c index 124fb7446..77e70f34a 100644 --- a/libX11/src/EvToWire.c +++ b/libX11/src/EvToWire.c @@ -1,4 +1,3 @@ -/* $Xorg: EvToWire.c,v 1.4 2001/02/09 02:03:32 xorgcvs Exp $ */ /* @@ -27,7 +26,6 @@ other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/X11/EvToWire.c,v 1.4 2001/08/18 02:41:28 dawes Exp $ */ /* * XEvToWire.c - Internal support routines for the C subroutine @@ -42,13 +40,15 @@ from The Open Group. #include "Xlibint.h" /* - * reformat a wire event into an XEvent structure of the right type. + * Reformat an XEvent structure to a wire event of the right type. + * Return True on success. If the type is unrecognized, return what + * _XUnknownNativeEvent returns (i.e., False). */ Status _XEventToWire( -register Display *dpy, /* pointer to display structure */ -register XEvent *re, /* pointer to where event should be reformatted */ -register xEvent *event) /* wire protocol event */ + register Display *dpy, + register XEvent *re, /* in: from */ + register xEvent *event) /* out: to */ { switch (event->u.u.type = re->type) { case KeyPress: |