diff options
author | hobbs <hobbs> | 1999-08-01 20:43:59 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-08-01 20:43:59 (GMT) |
commit | 920d13e1cc6f72c3725509e4bbb26097c546a5ae (patch) | |
tree | a0b0b8add02186c0da6409cee7c6c4be2a78776e /generic/tclStubInit.c | |
parent | 7736a343edbd9a5f2feb71878361bc0f1f81640b (diff) | |
download | tcl-920d13e1cc6f72c3725509e4bbb26097c546a5ae.zip tcl-920d13e1cc6f72c3725509e4bbb26097c546a5ae.tar.gz tcl-920d13e1cc6f72c3725509e4bbb26097c546a5ae.tar.bz2 |
* generic/tclInt.decls: added declaractions necessary for the
Tcl test code to work wth stubs [Bug: 2445]
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index f949dd8..4dfa544 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.23 1999/07/16 21:56:39 redman Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.24 1999/08/01 20:44:12 hobbs Exp $ */ #include "tclInt.h" @@ -225,6 +225,12 @@ TclIntStubs tclIntStubs = { TclHandleFree, /* 147 */ TclHandlePreserve, /* 148 */ TclHandleRelease, /* 149 */ + TclRegAbout, /* 150 */ + TclRegExpRangeUniChar, /* 151 */ + TclSetLibraryPath, /* 152 */ + TclGetLibraryPath, /* 153 */ + TclTestChannelCmd, /* 154 */ + TclTestChannelEventCmd, /* 155 */ }; TclIntPlatStubs tclIntPlatStubs = { @@ -268,6 +274,8 @@ TclIntPlatStubs tclIntPlatStubs = { TclpCreateTempFile, /* 22 */ TclpGetTZName, /* 23 */ TclWinNoBackslash, /* 24 */ + TclWinGetPlatform, /* 25 */ + TclWinSetInterfaces, /* 26 */ #endif /* __WIN32__ */ #ifdef MAC_TCL TclpSysAlloc, /* 0 */ |