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/tkInt.h | |
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/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 2372a1e..6c6dc42 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -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: tkInt.h,v 1.12 1999/04/21 21:53:26 rjohnson Exp $ + * RCS: $Id: tkInt.h,v 1.13 1999/04/28 18:18:06 redman Exp $ */ #ifndef _TKINT @@ -984,7 +984,7 @@ EXTERN int Tk_WinfoObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Obj *CONST objv[])); EXTERN int Tk_WmCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int argc, char **argv)); -int TkConsoleInit _ANSI_ARGS_((Tcl_Interp *interp)); + void TkConsolePrint _ANSI_ARGS_((Tcl_Interp *interp, int devId, char *buffer, long size)); |