diff options
author | vincentdarley <vincentdarley> | 2004-10-07 14:50:21 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-10-07 14:50:21 (GMT) |
commit | d4961998794e12b24a57463f33d6d1976477cde3 (patch) | |
tree | 56b0a5bc0092ddc26c1ff14e61906c9ea713c988 /generic/tclFileSystem.h | |
parent | 4c14cd729fc9965bddaace767c865ce4a9825e89 (diff) | |
download | tcl-d4961998794e12b24a57463f33d6d1976477cde3.zip tcl-d4961998794e12b24a57463f33d6d1976477cde3.tar.gz tcl-d4961998794e12b24a57463f33d6d1976477cde3.tar.bz2 |
filesystem generic/platform code splitting
Diffstat (limited to 'generic/tclFileSystem.h')
-rw-r--r-- | generic/tclFileSystem.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/generic/tclFileSystem.h b/generic/tclFileSystem.h index 2fe4bd6..a9a9245 100644 --- a/generic/tclFileSystem.h +++ b/generic/tclFileSystem.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclFileSystem.h,v 1.8 2004/09/27 15:00:39 vincentdarley Exp $ + * RCS: @(#) $Id: tclFileSystem.h,v 1.9 2004/10/07 14:50:22 vincentdarley Exp $ */ /* @@ -87,7 +87,7 @@ extern Tcl_ThreadDataKey tclFsDataKey; /* * Private shared functions for use by tclIOUtil.c, tclPathObj.c - * and tclFileName.c + * and tclFileName.c, and any platform-specific filesystem code. */ Tcl_PathType TclFSGetPathType _ANSI_ARGS_((Tcl_Obj *pathPtr, Tcl_Filesystem **filesystemPtrPtr, @@ -99,4 +99,8 @@ Tcl_PathType TclGetPathType _ANSI_ARGS_((Tcl_Obj *pathPtr, Tcl_Filesystem **filesystemPtrPtr, int *driveNameLengthPtr, Tcl_Obj **driveNameRef)); int TclFSEpochOk _ANSI_ARGS_((int filesystemEpoch)); +int TclFSCwdIsNative _ANSI_ARGS_((void)); +Tcl_Obj* TclWinVolumeRelativeNormalize _ANSI_ARGS_((Tcl_Interp *interp, + CONST char *path, Tcl_Obj **useThisCwdPtr)); Tcl_FSPathInFilesystemProc TclNativePathInFilesystem; +Tcl_FSCreateInternalRepProc TclNativeCreateNativeRep; |