diff options
author | redman <redman> | 1999-04-28 18:18:06 (GMT) |
---|---|---|
committer | redman <redman> | 1999-04-28 18:18:06 (GMT) |
commit | 078cc495bf6393b45f891a351a85f1c0e6aaba45 (patch) | |
tree | aace0c7be2665947b15b36259f712838915a9611 /generic/tk.decls | |
parent | 33b9462f0016ef41b6c303739ad7f53bc697430f (diff) | |
download | tk-078cc495bf6393b45f891a351a85f1c0e6aaba45.zip tk-078cc495bf6393b45f891a351a85f1c0e6aaba45.tar.gz tk-078cc495bf6393b45f891a351a85f1c0e6aaba45.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)
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. |