summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.decls
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-07-31 03:36:49 (GMT)
committerhobbs <hobbs>1999-07-31 03:36:49 (GMT)
commit4b6fc34cb54c1772dd9e2242f90fe9bd913fb362 (patch)
treeb958c380f80005c614689d4cfcb361db1c27e370 /generic/tkInt.decls
parentc57cafd660a628dcc78a30e31a10ae99cb6834c3 (diff)
downloadtk-4b6fc34cb54c1772dd9e2242f90fe9bd913fb362.zip
tk-4b6fc34cb54c1772dd9e2242f90fe9bd913fb362.tar.gz
tk-4b6fc34cb54c1772dd9e2242f90fe9bd913fb362.tar.bz2
1999-07-30 Jeff Hobbs <hobbs@scriptics.com>
* tkInt.decls: Added stub entry for XFillRectangle [Bug: 2446]
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)
+}