diff options
author | redman <redman@noemail.net> | 1999-04-28 18:18:05 (GMT) |
---|---|---|
committer | redman <redman@noemail.net> | 1999-04-28 18:18:05 (GMT) |
commit | cc715ea46c5a22b632b83e195436e9fcc3a00219 (patch) | |
tree | aace0c7be2665947b15b36259f712838915a9611 /generic/tk.decls | |
parent | ae737cc87bde3b565dd4c508f0f55fee4122c22e (diff) | |
download | tk-cc715ea46c5a22b632b83e195436e9fcc3a00219.zip tk-cc715ea46c5a22b632b83e195436e9fcc3a00219.tar.gz tk-cc715ea46c5a22b632b83e195436e9fcc3a00219.tar.bz2 |
Rename TkConsoleCreate_() to Tk_InitConsoleChannels() and make the
function public. Add an interp argument and init the Tcl stubs.
Rename TkConsoleInit() to Tk_CreateConsoleWindow()
Remove TkConsoleCreate() (no underbar)
FossilOrigin-Name: 702512c22952ed7a1cf3c17fa96c34452140d7c4
Diffstat (limited to 'generic/tk.decls')
-rw-r--r-- | generic/tk.decls | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tk.decls b/generic/tk.decls index 9fb67fd..6f8eb13 100644 --- a/generic/tk.decls +++ b/generic/tk.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: tk.decls,v 1.3 1999/04/16 01:51:09 stanton Exp $ +# RCS: @(#) $Id: tk.decls,v 1.4 1999/04/28 18:18:06 redman Exp $ library tk @@ -1032,6 +1032,13 @@ declare 214 generic { Tk_SavedOptions *savePtr, int *maskPtr) } +declare 215 generic { + void Tk_InitConsoleChannels(Tcl_Interp *interp) +} + +declare 216 generic { + int Tk_CreateConsoleWindow(Tcl_Interp *interp) +} # Define the platform specific public Tk interface. These functions are # only available on the designated platform. |