diff options
author | dgp <dgp@users.sourceforge.net> | 2012-06-21 17:48:37 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-06-21 17:48:37 (GMT) |
commit | 9e9ad50f58037343c38df0793f7333e8f7a4d416 (patch) | |
tree | 317b38d55e5ce6b1394b372e8cee590137620210 /generic/tclFileSystem.h | |
parent | efccf3e3bbe798b822e81296462802f3aae96a0d (diff) | |
download | tcl-9e9ad50f58037343c38df0793f7333e8f7a4d416.zip tcl-9e9ad50f58037343c38df0793f7333e8f7a4d416.tar.gz tcl-9e9ad50f58037343c38df0793f7333e8f7a4d416.tar.bz2 |
Stop storing FilesystemRecord in the intrep of a "path". We never use it.
Store the Tcl_Filesystem instead, which is what we actually need.
Diffstat (limited to 'generic/tclFileSystem.h')
-rw-r--r-- | generic/tclFileSystem.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/generic/tclFileSystem.h b/generic/tclFileSystem.h index d6e1546..3dfc1de 100644 --- a/generic/tclFileSystem.h +++ b/generic/tclFileSystem.h @@ -68,15 +68,10 @@ MODULE_SCOPE int TclFSNormalizeToUniquePath(Tcl_Interp *interp, Tcl_Obj *pathPtr, int startAt); MODULE_SCOPE Tcl_Obj * TclFSMakePathRelative(Tcl_Interp *interp, Tcl_Obj *pathPtr, Tcl_Obj *cwdPtr); -MODULE_SCOPE Tcl_Obj * TclFSInternalToNormalized( - Tcl_Filesystem *fromFilesystem, - ClientData clientData, - FilesystemRecord **fsRecPtrPtr); MODULE_SCOPE int TclFSEnsureEpochOk(Tcl_Obj *pathPtr, Tcl_Filesystem **fsPtrPtr); MODULE_SCOPE void TclFSSetPathDetails(Tcl_Obj *pathPtr, - FilesystemRecord *fsRecPtr, - ClientData clientData); + Tcl_Filesystem *fsPtr, ClientData clientData); MODULE_SCOPE Tcl_Obj * TclFSNormalizeAbsolutePath(Tcl_Interp *interp, Tcl_Obj *pathPtr); |