diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-15 15:42:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-15 15:42:16 (GMT) |
commit | d0ab2bd83ddf58e52fc7f6043e701f62d539797e (patch) | |
tree | 5e703ca52b9319fde8162043b0874daef4eceac9 /generic/tkInt.decls | |
parent | ce9b49e334d7eb958daf84f7322467f4a67919e6 (diff) | |
download | tk-d0ab2bd83ddf58e52fc7f6043e701f62d539797e.zip tk-d0ab2bd83ddf58e52fc7f6043e701f62d539797e.tar.gz tk-d0ab2bd83ddf58e52fc7f6043e701f62d539797e.tar.bz2 |
Extend the public and private stub tables with dummy NULL entries, up to the size of the Tk 8.6 stub tables. This makes it easier to debug Tk extensions which use Tk 8.5/8.6 features but (erroneously) are attempted to be loaded in wish8.4
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r-- | generic/tkInt.decls | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls index a37f986..107223b 100644 --- a/generic/tkInt.decls +++ b/generic/tkInt.decls @@ -489,6 +489,9 @@ declare 152 { void TkpDrawFrame(Tk_Window tkwin, Tk_3DBorder border, int highlightWidth, int borderWidth, int relief) } +declare 184 { + void TkUnusedStubEntry(void) +} ############################################################################## @@ -539,6 +542,9 @@ declare 11 x11 { declare 12 x11 { int TkpWmSetState(TkWindow *winPtr, int state) } +declare 13 x11 { + void TkUnusedStubEntry(void) +} ################################ # Windows specific functions @@ -691,6 +697,10 @@ declare 43 win { declare 44 win { void TkSendCleanup(TkDisplay *dispPtr) } +declare 45 win { + void TkUnusedStubEntry(void) +} + ################################ # Aqua specific functions @@ -873,6 +883,9 @@ declare 51 aqua { declare 53 aqua { unsigned long TkpGetMS(void) } +declare 54 aqua { + void TkUnusedStubEntry(void) +} ############################################################################## |