diff options
author | vincentdarley <vincentdarley> | 2001-10-29 15:02:44 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2001-10-29 15:02:44 (GMT) |
commit | 17543c4edf712509641c3f7b8bf44a63b172818e (patch) | |
tree | 6482def417003125e4736466eb3b7797f8d982c1 /win/tclWinInt.h | |
parent | d165eb244ad4b9050dee074a00ecdda41df575ed (diff) | |
download | tcl-17543c4edf712509641c3f7b8bf44a63b172818e.zip tcl-17543c4edf712509641c3f7b8bf44a63b172818e.tar.gz tcl-17543c4edf712509641c3f7b8bf44a63b172818e.tar.bz2 |
win fs fixes
Diffstat (limited to 'win/tclWinInt.h')
-rw-r--r-- | win/tclWinInt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index 287ecb3..199942f 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinInt.h,v 1.11 2001/09/10 17:17:42 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinInt.h,v 1.12 2001/10/29 15:02:44 vincentdarley Exp $ */ #ifndef _TCLWININT @@ -89,6 +89,9 @@ typedef struct TclWinProcs { CONST TCHAR *, DWORD, WCHAR *, TCHAR **); BOOL (WINAPI *setCurrentDirectoryProc)(CONST TCHAR *); BOOL (WINAPI *setFileAttributesProc)(CONST TCHAR *, DWORD); + BOOL (WINAPI *getFileAttributesExProc)(CONST TCHAR *, + GET_FILEEX_INFO_LEVELS, LPVOID); + } TclWinProcs; EXTERN TclWinProcs *tclWinProcs; |