diff options
author | das <das> | 2006-03-21 11:06:20 (GMT) |
---|---|---|
committer | das <das> | 2006-03-21 11:06:20 (GMT) |
commit | d4070e928ea23c067c492b5e594d206a76d9b3d5 (patch) | |
tree | 9b31284ec3cc00460868746481c7082902a886a4 /generic/tclInt.decls | |
parent | d13045d5f4f8b28861b4c1af3c4ceaa21331c173 (diff) | |
download | tcl-d4070e928ea23c067c492b5e594d206a76d9b3d5.zip tcl-d4070e928ea23c067c492b5e594d206a76d9b3d5.tar.gz tcl-d4070e928ea23c067c492b5e594d206a76d9b3d5.tar.bz2 |
* generic/tclInt.decls: implement globbing for HFS creator & type
* macosx/tclMacOSXFCmd.c: codes and 'hidden' flag, as documented in
* tests/macOSXFCmd.test: glob.n; objectified OSType handling in [glob]
* unix/tclUnixFile.c: and [file attributes]; fix globbing for hidden
files with pattern==NULL arg. [Bug 823329]
* generic/tclIntPlatDecls.h:
* generic/tclStubInit.c: make genstubs
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index aef1260..47ce454 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,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.95 2006/02/08 21:41:27 dgp Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.96 2006/03/21 11:06:22 das Exp $ library tcl @@ -1097,3 +1097,9 @@ declare 17 macosx { CONST Tcl_StatBuf *statBufPtr) } +declare 18 macosx { + int TclMacOSXMatchType(Tcl_Interp *interp, CONST char *pathName, + CONST char *fileName, Tcl_StatBuf *statBufPtr, + Tcl_GlobTypeData *types) +} + |