diff options
author | hobbs <hobbs> | 2002-12-06 23:22:58 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-12-06 23:22:58 (GMT) |
commit | 25434df7c01e5696ea3b4affeed85ad22d09587b (patch) | |
tree | 5e8124bd90814fbe5a1f2116ec1fb5a93273caed /generic/tclInt.decls | |
parent | 5bde345b62e89154c0dfe9f36adad96e97e69323 (diff) | |
download | tcl-25434df7c01e5696ea3b4affeed85ad22d09587b.zip tcl-25434df7c01e5696ea3b4affeed85ad22d09587b.tar.gz tcl-25434df7c01e5696ea3b4affeed85ad22d09587b.tar.bz2 |
* generic/tclStubInit.c: regen
* generic/tclIntPlatDecls.h: regen
* generic/tclInt.decls: added TclWinResetInterface
* win/tclWin32Dll.c (TclWinResetInterfaces):
* win/tclWinInit.c (TclpSetInitialEncodings, WinEncodingsCleanup):
add exit handler that resets the encoding information to a state
where we can reuse Tcl. Following these changes, it is possible
to reuse Tcl (following Tcl_FindExecutable or Tcl_CreateInterp)
following a Tcl_Finalize.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 84b62f5..f2b2f99 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.57 2002/11/07 02:13:36 mdejong Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.58 2002/12/06 23:22:59 hobbs Exp $ library tcl @@ -915,6 +915,12 @@ declare 27 win { void TclWinFlushDirtyChannels (void) } +# Added in 8.4.2 + +declare 28 win { + void TclWinResetInterfaces(void) +} + ######################### # Unix specific internals |