diff options
author | hobbs <hobbs> | 1999-12-22 03:09:55 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-22 03:09:55 (GMT) |
commit | df22b32b46d606463bff122495f98a30bdccb659 (patch) | |
tree | b572c470e4c59a3a28b5a08e69bd4ad859e3b322 /mac/tkMacXStubs.c | |
parent | 80a44daf8ff70d7dbe09fb79c7765fd2509f0d9d (diff) | |
download | tk-df22b32b46d606463bff122495f98a30bdccb659.zip tk-df22b32b46d606463bff122495f98a30bdccb659.tar.gz tk-df22b32b46d606463bff122495f98a30bdccb659.tar.bz2 |
fix for mac happiness
Diffstat (limited to 'mac/tkMacXStubs.c')
-rw-r--r-- | mac/tkMacXStubs.c | 73 |
1 files changed, 36 insertions, 37 deletions
diff --git a/mac/tkMacXStubs.c b/mac/tkMacXStubs.c index a555ecf..757842e 100644 --- a/mac/tkMacXStubs.c +++ b/mac/tkMacXStubs.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacXStubs.c,v 1.8 1999/12/14 06:52:56 hobbs Exp $ + * RCS: @(#) $Id: tkMacXStubs.c,v 1.9 1999/12/22 03:09:59 hobbs Exp $ */ #include "tkInt.h" @@ -464,62 +464,61 @@ XSendEvent( } void -XClearWindow(display, w) - Display* display; - Window w; +XClearWindow( + Display* display, + Window w) { } void -XDrawPoint(display, d, gc, x, y) - Display* display; - Drawable d; - GC gc; - int x; - int y; +XDrawPoint( + Display* display, + Drawable d, + GC gc, + int x, + int y) { } void -XDrawPoints(display, d, gc, points, npoints, mode) - Display* display; - Drawable d; - GC gc; - XPoint* points; - int npoints; - int mode; +XDrawPoints( + Display* display, + Drawable d, + GC gc, + XPoint* points, + int npoints, + int mode) { } void -XWarpPointer(display, src_w, dest_w, src_x, src_y, src_width, - src_height, dest_x, dest_y) - Display* display; - Window src_w; - Window dest_w; - int src_x; - int src_y; - unsigned int src_width; - unsigned int src_height; - int dest_x; - int dest_y; +XWarpPointer( + Display* display, + Window src_w, + Window dest_w, + int src_x, + int src_y, + unsigned int src_width, + unsigned int src_height, + int dest_x, + int dest_y) { } void -XQueryColor(display, colormap, def_in_out) - Display* display; - Colormap colormap; - XColor* def_in_out; +XQueryColor( + Display* display, + Colormap colormap, + XColor* def_in_out) { } void -XQueryColors(display, colormap, defs_in_out, ncolors) - Display* display; - Colormap colormap; - XColor* defs_in_out; - int ncolors; +XQueryColors( + Display* display, + Colormap colormap, + XColor* defs_in_out, + int ncolors) { } |