summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.decls
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>1999-07-31 03:36:49 (GMT)
committerhobbs <hobbs@noemail.net>1999-07-31 03:36:49 (GMT)
commit2ce8687cbfb29d54ea0185ccf8cda1750b927de2 (patch)
treeb958c380f80005c614689d4cfcb361db1c27e370 /generic/tkInt.decls
parented906175c49fa009a35501b82c677580565bb784 (diff)
downloadtk-2ce8687cbfb29d54ea0185ccf8cda1750b927de2.zip
tk-2ce8687cbfb29d54ea0185ccf8cda1750b927de2.tar.gz
tk-2ce8687cbfb29d54ea0185ccf8cda1750b927de2.tar.bz2
1999-07-30 Jeff Hobbs <hobbs@scriptics.com>
* tkInt.decls: Added stub entry for XFillRectangle [Bug: 2446] FossilOrigin-Name: eacb290373e6be0448a23003ebddb0eb57012b8a
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r--generic/tkInt.decls10
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls
index 30157a6..0ab34b2 100644
--- a/generic/tkInt.decls
+++ b/generic/tkInt.decls
@@ -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: tkInt.decls,v 1.8 1999/06/16 20:11:28 surles Exp $
+# RCS: @(#) $Id: tkInt.decls,v 1.9 1999/07/31 03:36:49 hobbs Exp $
library tk
@@ -1505,6 +1505,10 @@ declare 104 win {
void XDrawLine (Display* d, Drawable dr, GC g, int x1, int y1, \
int x2, int y2)
}
+declare 106 win {
+ void XFillRectangle (Display* display, Drawable d, GC gc, \
+ int x, int y, unsigned int width, unsigned int height)
+}
# X functions for Mac
@@ -1881,3 +1885,7 @@ declare 82 mac {
void XDrawLine (Display* d, Drawable dr, GC g, int x1, int y1, \
int x2, int y2)
}
+declare 83 mac {
+ void XFillRectangle (Display* display, Drawable d, GC gc, \
+ int x, int y, unsigned int width, unsigned int height)
+}