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/tclInt.decls | |
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/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 7a6d82c..69e37d7 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.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: tclInt.decls,v 1.14 1999/07/22 01:26:18 redman Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.15 1999/08/01 20:44:10 hobbs Exp $ library tcl @@ -560,6 +560,30 @@ declare 149 generic { void TclHandleRelease(TclHandle handle) } +declare 150 generic { + int TclRegAbout(Tcl_Interp *interp, Tcl_RegExp re) +} +declare 151 generic { + void TclRegExpRangeUniChar(Tcl_RegExp re, int index, int *startPtr, \ + int *endPtr) +} + +declare 152 generic { + void TclSetLibraryPath(Tcl_Obj *pathPtr) +} +declare 153 generic { + Tcl_Obj *TclGetLibraryPath(void) +} + +declare 154 generic { + int TclTestChannelCmd(ClientData clientData, + Tcl_Interp *interp, int argc, char **argv) +} +declare 155 generic { + int TclTestChannelEventCmd(ClientData clientData, \ + Tcl_Interp *interp, int argc, char **argv) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are @@ -762,6 +786,12 @@ declare 23 win { declare 24 win { char * TclWinNoBackslash(char *path) } +declare 25 win { + TclPlatformType *TclWinGetPlatform(void) +} +declare 26 win { + void TclWinSetInterfaces(int wide) +} ######################### # Unix specific internals |