diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
commit | adc7f9a4ebdfe11d4cd6de9388b63dfe36450b39 (patch) | |
tree | 23eb7becc5360b2cbe16aa8d45529880067f3989 /include/dixgrabs.h | |
parent | 90f1536dd315cd265bfc7ef35058761a65a01734 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
Diffstat (limited to 'include/dixgrabs.h')
-rw-r--r-- | include/dixgrabs.h | 42 |
1 files changed, 11 insertions, 31 deletions
diff --git a/include/dixgrabs.h b/include/dixgrabs.h index 5c3fc7fa0..21992e786 100644 --- a/include/dixgrabs.h +++ b/include/dixgrabs.h @@ -1,4 +1,4 @@ -/* $XFree86: xc/programs/Xserver/include/dixgrabs.h,v 3.0 1996/04/15 11:34:27 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/include/dixgrabs.h,v 3.1 2003/04/27 21:31:04 herrb Exp $ */ /************************************************************ Copyright 1996 by Thomas E. Dickey <dickey@clark.net> @@ -27,9 +27,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifndef DIXGRABS_H #define DIXGRABS_H 1 -GrabPtr -CreateGrab( -#if NeedFunctionPrototypes +extern GrabPtr CreateGrab( int /* client */, DeviceIntPtr /* device */, WindowPtr /* window */, @@ -42,38 +40,20 @@ CreateGrab( int /* type */, KeyCode /* keybut */, WindowPtr /* confineTo */, - CursorPtr /* cursor */ -#endif - ); + CursorPtr /* cursor */); -int -DeletePassiveGrab( -#if NeedFunctionPrototypes +extern int DeletePassiveGrab( pointer /* value */, - XID /* id */ -#endif - ); + XID /* id */); -Bool -GrabMatchesSecond( -#if NeedFunctionPrototypes +extern Bool GrabMatchesSecond( GrabPtr /* pFirstGrab */, - GrabPtr /* pSecondGrab */ -#endif - ); + GrabPtr /* pSecondGrab */); -int -AddPassiveGrabToList( -#if NeedFunctionPrototypes - GrabPtr /* pGrab */ -#endif - ); +extern int AddPassiveGrabToList( + GrabPtr /* pGrab */); -Bool -DeletePassiveGrabFromList( -#if NeedFunctionPrototypes - GrabPtr /* pMinuendGrab */ -#endif - ); +extern Bool DeletePassiveGrabFromList( + GrabPtr /* pMinuendGrab */); #endif /* DIXGRABS_H */ |