diff options
author | vincentdarley <vincentdarley> | 2001-09-08 14:05:08 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2001-09-08 14:05:08 (GMT) |
commit | e8b43db1be149b33a510f281789b13d6e266797d (patch) | |
tree | 48272ea4c2e18b5c060109e1536548ed7591a932 /generic/tclInt.h | |
parent | 876b9ec159a11b706a30fdf9969469d720f2046c (diff) | |
download | tcl-e8b43db1be149b33a510f281789b13d6e266797d.zip tcl-e8b43db1be149b33a510f281789b13d6e266797d.tar.gz tcl-e8b43db1be149b33a510f281789b13d6e266797d.tar.bz2 |
channel-copy-fix
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index f14e415..5565338 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.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: tclInt.h,v 1.63 2001/09/04 18:06:34 vincentdarley Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.64 2001/09/08 14:05:09 vincentdarley Exp $ */ #ifndef _TCLINT @@ -1821,6 +1821,8 @@ EXTERN Tcl_Obj* TclpNativeSplitPath _ANSI_ARGS_((Tcl_Obj *pathPtr, int *lenPtr)); EXTERN Tcl_PathType TclpGetNativePathType _ANSI_ARGS_((Tcl_Obj *pathObjPtr, int *driveNameLengthPtr, Tcl_Obj **driveNameRef)); +EXTERN int TclCrossFilesystemCopy _ANSI_ARGS_((Tcl_Interp *interp, + Tcl_Obj *source, Tcl_Obj *target)); EXTERN int TclpObjDeleteFile _ANSI_ARGS_((Tcl_Obj *pathPtr)); EXTERN int TclpObjCopyDirectory _ANSI_ARGS_((Tcl_Obj *srcPathPtr, Tcl_Obj *destPathPtr, Tcl_Obj **errorPtr)); |