diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-01-21 09:17:58 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-01-21 09:17:58 (GMT) |
commit | 2c09d152eff3cec376c4472d34e13d07247fd3a4 (patch) | |
tree | 2ed1d59b7e54af216a399e4a71786c2a319b1774 /doc/FileSystem.3 | |
parent | 686f4ed1b77bd76e26534391f433bf902db723a1 (diff) | |
download | tcl-2c09d152eff3cec376c4472d34e13d07247fd3a4.zip tcl-2c09d152eff3cec376c4472d34e13d07247fd3a4.tar.gz tcl-2c09d152eff3cec376c4472d34e13d07247fd3a4.tar.bz2 |
Add documentation for Tcl_FSLink args. [Bug 1106272]
Diffstat (limited to 'doc/FileSystem.3')
-rw-r--r-- | doc/FileSystem.3 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/FileSystem.3 b/doc/FileSystem.3 index 1781a34..abf9780 100644 --- a/doc/FileSystem.3 +++ b/doc/FileSystem.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: FileSystem.3,v 1.50 2004/10/07 15:15:37 dkf Exp $ +'\" RCS: @(#) $Id: FileSystem.3,v 1.51 2005/01/21 09:18:02 dkf Exp $ '\" .so man.macros .TH Filesystem 3 8.4 Tcl "Tcl Library Procedures" @@ -228,6 +228,17 @@ The base path on to which to join the given elements. May be NULL. The number of elements in \fIobjv\fR. .AP "Tcl_Obj *const" objv[] in The elements to join to the given base path. +.AP Tcl_Obj *linkNamePtr in +The name of the link to be created or read. +.AP Tcl_Obj *toPtr in +What the link called \fIlinkNamePtr\fR should be linked to, or NULL if +the symbolic link specified by \fIlinkNamePtr\fR is to be read. +.AP int linkAction in +OR-ed combination of flags indicating what kind of link should be +created (will be ignored if \fItoPtr\fR is NULL). Valid bits to set +are \fBTCL_CREATE_SYMBOLIC_LINK\fR and \fBTCL_CREATE_HARD_LINK\fR. +When both flags are set and the underlying filesystem can do either, +symbolic links are preferred. .BE .SH DESCRIPTION |