diff options
author | vincentdarley <vincentdarley> | 2003-04-14 15:45:44 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-04-14 15:45:44 (GMT) |
commit | fc8ca7b64060c121189509c2a390627088bf2f85 (patch) | |
tree | 74444b936f24402204e38c25adc44d99449c4a26 /win/tclWinInt.h | |
parent | b0cc421ee0a6c1691d7db034c52ae9fcb5295627 (diff) | |
download | tcl-fc8ca7b64060c121189509c2a390627088bf2f85.zip tcl-fc8ca7b64060c121189509c2a390627088bf2f85.tar.gz tcl-fc8ca7b64060c121189509c2a390627088bf2f85.tar.bz2 |
filesystem fixes backported
Diffstat (limited to 'win/tclWinInt.h')
-rw-r--r-- | win/tclWinInt.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index 0e0f11d..b7299eb 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.20 2003/02/04 17:06:53 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinInt.h,v 1.20.2.1 2003/04/14 15:46:01 vincentdarley Exp $ */ #ifndef _TCLWININT @@ -102,7 +102,11 @@ typedef struct TclWinProcs { LPSECURITY_ATTRIBUTES); INT (__cdecl *utimeProc)(CONST TCHAR*, struct _utimbuf *); - + /* These two are also NULL at start; see comment above */ + HANDLE (WINAPI *findFirstFileExProc)(CONST TCHAR*, UINT, + LPVOID, UINT, + LPVOID, DWORD); + BOOL (WINAPI *getVolumeNameForVMPProc)(CONST TCHAR*, TCHAR*, DWORD); } TclWinProcs; EXTERN TclWinProcs *tclWinProcs; @@ -119,6 +123,7 @@ EXTERN int TclWinSymLinkCopyDirectory(CONST TCHAR* LinkOriginal, CONST TCHAR* LinkCopy); EXTERN int TclWinSymLinkDelete(CONST TCHAR* LinkOriginal, int linkOnly); +EXTERN char TclWinDriveLetterForVolMountPoint(CONST WCHAR *mountPoint); #if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) EXTERN void TclWinFreeAllocCache(void); EXTERN void TclFreeAllocCache(void *); |