diff options
Diffstat (limited to 'xlib')
-rw-r--r-- | xlib/xgc.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: xgc.c,v 1.6.2.1 2005/03/25 04:02:41 wolfsuit Exp $ + * RCS: @(#) $Id: xgc.c,v 1.6.2.2 2005/11/27 02:44:26 das Exp $ */ #include <tkInt.h> @@ -398,6 +398,7 @@ XSetClipMask(display, gc, pixmap) * Some additional dummy functions (hopefully implemented soon). */ +#if 0 Cursor XCreateFontCursor(display, shape) Display* display; @@ -417,6 +418,7 @@ XDrawImageString(display, d, gc, x, y, string, length) int length; { } +#endif void XDrawPoint(display, d, gc, x, y) @@ -457,6 +459,7 @@ XDrawSegments(display, d, gc, segments, nsegments) } #endif +#if 0 char * XFetchBuffer(display, nbytes_return, buffer) Display* display; @@ -504,7 +507,8 @@ XPutImage(display, d, gc, image, src_x, src_y, dest_x, dest_y, width, height) { } -void XQueryTextExtents(display, font_ID, string, nchars, direction_return, +void +XQueryTextExtents(display, font_ID, string, nchars, direction_return, font_ascent_return, font_descent_return, overall_return) Display* display; XID font_ID; @@ -549,3 +553,4 @@ XUndefineCursor(display, w) Window w; { } +#endif |