diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-20 15:39:46 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-20 15:39:46 (GMT) |
commit | 981ede1b28ef6c7040d9526a568faf7d7e6f73de (patch) | |
tree | 916de8cf08cd2e2b07d6c7faf71f6d89064d6233 /generic/tclInt.decls | |
parent | ebf2f83895304cba3d46bd0714bc6e1cf38fbe83 (diff) | |
download | tcl-981ede1b28ef6c7040d9526a568faf7d7e6f73de.zip tcl-981ede1b28ef6c7040d9526a568faf7d7e6f73de.tar.gz tcl-981ede1b28ef6c7040d9526a568faf7d7e6f73de.tar.bz2 |
Allow [fcopy] to move more than 2GB per call. Frederic Bonnet identified issue.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 0f2e275..79a68e1 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -13,7 +13,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.144 2010/02/05 10:03:23 nijtmans Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.145 2010/03/20 15:39:46 dkf Exp $ library tcl @@ -54,7 +54,7 @@ declare 7 generic { int TclCopyAndCollapse(int count, const char *src, char *dst) } declare 8 generic { - int TclCopyChannel(Tcl_Interp *interp, Tcl_Channel inChan, + int TclCopyChannelOld(Tcl_Interp *interp, Tcl_Channel inChan, Tcl_Channel outChan, int toRead, Tcl_Obj *cmdPtr) } @@ -990,6 +990,11 @@ declare 246 generic { declare 247 generic { void TclResetRewriteEnsemble(Tcl_Interp *interp, int isRootEnsemble) } + +declare 248 generic { + int TclCopyChannel(Tcl_Interp *interp, Tcl_Channel inChan, + Tcl_Channel outChan, Tcl_WideInt toRead, Tcl_Obj *cmdPtr) +} ############################################################################## |