summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.decls
diff options
context:
space:
mode:
authornijtmans <nijtmans>2009-06-27 19:53:16 (GMT)
committernijtmans <nijtmans>2009-06-27 19:53:16 (GMT)
commit4afddf85cdfd287a1e6d5d70a087a4b0f8853b81 (patch)
tree4de059e3eb060c0dd51ade548cc53b8de96831ef /generic/tkInt.decls
parent22922bbd6ffb30b159c0c8e9f9b9896736dab174 (diff)
downloadtk-4afddf85cdfd287a1e6d5d70a087a4b0f8853b81.zip
tk-4afddf85cdfd287a1e6d5d70a087a4b0f8853b81.tar.gz
tk-4afddf85cdfd287a1e6d5d70a087a4b0f8853b81.tar.bz2
Expose TkSmooth(Parse|Print)Proc through the internal stub table. It was the last set of internal function of this type which was not exposed yet.
Removed TkTile(Parse|Print)Proc from tkInt.h, because they don't exist. Follow-up to [Bug 2804935], now all Tk*(Parse|Print)Proc functions are exposed through the internal stub table.
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r--generic/tkInt.decls18
1 files changed, 17 insertions, 1 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls
index 0b2dde4..a254c26 100644
--- a/generic/tkInt.decls
+++ b/generic/tkInt.decls
@@ -10,7 +10,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.44.2.1 2009/04/27 10:39:57 dkf Exp $
+# RCS: @(#) $Id: tkInt.decls,v 1.44.2.2 2009/06/27 19:53:16 nijtmans Exp $
library tk
@@ -552,6 +552,22 @@ declare 176 generic {
char *TkPixelPrintProc(ClientData clientData, Tk_Window tkwin,
char *widgRec, int offset, Tcl_FreeProc **freeProcPtr)
}
+declare 177 generic {
+ int TkOrientParseProc(ClientData clientData, Tcl_Interp *interp,
+ Tk_Window tkwin, CONST char *value, char *widgRec, int offset)
+}
+declare 178 generic {
+ char *TkOrientPrintProc(ClientData clientData, Tk_Window tkwin,
+ char *widgRec, int offset, Tcl_FreeProc **freeProcPtr)
+}
+declare 179 generic {
+ int TkSmoothParseProc(ClientData clientData, Tcl_Interp *interp,
+ Tk_Window tkwin, CONST char *value, char *widgRec, int offset)
+}
+declare 180 generic {
+ char *TkSmoothPrintProc(ClientData clientData, Tk_Window tkwin,
+ char *widgRec, int offset, Tcl_FreeProc **freeProcPtr)
+}
##############################################################################