diff options
author | das <das> | 2007-05-16 21:21:34 (GMT) |
---|---|---|
committer | das <das> | 2007-05-16 21:21:34 (GMT) |
commit | ada8ac499c6bb49c7ff6ae78bf80667c9a9a420f (patch) | |
tree | 80a592f38e0e9144a8956a0943f7477c6ce202e3 /generic | |
parent | fde19a4caabf0561efd9d42b592f86e188f4a83f (diff) | |
download | tk-ada8ac499c6bb49c7ff6ae78bf80667c9a9a420f.zip tk-ada8ac499c6bb49c7ff6ae78bf80667c9a9a420f.tar.gz tk-ada8ac499c6bb49c7ff6ae78bf80667c9a9a420f.tar.bz2 |
* generic/tk.decls: workaround 'make checkstubs' failures from
tkStubLib.c MODULE_SCOPE revert. [Bug 1716117]
* macosx/Wish.xcodeproj/project.pbxproj: add tkOldTest.c and remove
tkStubImg.c.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tk.decls | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/generic/tk.decls b/generic/tk.decls index 5e3763a..5136906 100644 --- a/generic/tk.decls +++ b/generic/tk.decls @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tk.decls,v 1.31 2007/05/14 20:58:25 dgp Exp $ +# RCS: @(#) $Id: tk.decls,v 1.32 2007/05/16 21:21:35 das Exp $ library tk @@ -1378,3 +1378,21 @@ declare 9 aqua { declare 10 aqua { int Tk_MacOSXIsAppInFront (void) } + +############################################################################## + +# Public functions that are not accessible via the stubs table: +# (listed here _as comments_ so that the 'checkstubs' make target does not +# complain about them) + +# const char *Tk_InitStubs(Tcl_Interp *interp, const char *version, int exact) + +# Global variables that need to be exported from the tcl shared library: +# (listed here _as comments_ so that the 'checkstubs' make target does not +# complain about them, c.f. tk bug bug 1716117) + +# TkStubs *tkStubsPtr (fool checkstubs) +# TkPlatStubs *tkPlatStubsPtr (fool checkstubs) +# TkIntStubs *tkIntStubsPtr (fool checkstubs) +# TkIntPlatStubs *tkIntPlatStubsPtr (fool checkstubs) +# TkIntXlibStubs *tkIntXlibStubsPtr (fool checkstubs) |