summaryrefslogtreecommitdiffstats
path: root/win/tclWinFile.c
Commit message (Collapse)AuthorAgeFilesLines
...
| | * filesystem fixes backportedvincentdarley2003-04-141-80/+161
| | |
| | * Fixes for three filesystem problemsvincentdarley2003-03-181-1/+11
| | |
| * | Fix [Patch 2986105]: conditionally defining strcasecmp/strncasecmpnijtmans2010-04-191-4/+4
| | |
| * | Various CYGWIN-related fixesnijtmans2010-01-311-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | backported from HEAD. Still configure script not modified, so CYGWIN build is still disabled. Reason: although the build succeeds with those changes, many tests still fail.
| * | * win/tclWinFile.c (TclpObjNormalizePath): Corrected Tcl_Obj leak.dgp2009-03-181-2/+11
| | | | | | | | | | | | Thanks to Joe Mistachkin for detection and patch. [Bug 2688184].
| * | * win/tclWinFile.c: (WinSymLinkDirectory): Fixed a problem thatKevin B Kenny2008-04-051-17/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tcl was creating an NTFS junction point (IO_REPARSE_TAG_MOUNT_POINT) but filling in the union member for a Vista symbolic link. We had gotten away with this error because the union member (SymbolicLinkReparseBuffer) was misdefined in this file and in the 'winnt.h' in early versions of MinGW. MinGW 3.4.2 has the correct definition of SymbolicLinkReparseBuffer, exposing the mismatch, and making tests cmdAH-19.4.1, fCmd-28.*, and filename-11.* fail.
* | | Fix various gcc-4.5.2 64-bit warning messages,nijtmans2011-01-251-3/+3
| | | | | | | | | | | | e.g. by using full 64-bits for socket fd's
* | | Use _vsnprintf in stead of vsnprintf, because MSVC 6 doesn't have it. ↵nijtmans2011-01-121-2/+2
| | | | | | | | | | | | Reported by andreask.
* | | [Patch 3124554]: Move WishPanic from Tk to Tclnijtmans2010-12-161-14/+12
| | | | | | | | | | | | Better communication with debugger, if present.
* | | Restore abort() in Tcl_Panic() as it was before.nijtmans2010-12-151-2/+9
| | | | | | | | | | | | [Patch 3124554] use ExitProcess() here, like in wish.
* | | Use gcc's __builtin_trap(), when available, to enter the debugger after a panic.nijtmans2010-12-131-4/+49
| | | | | | | | | | | | Undocumented feature, see [Patch 3124554]: Move WishPanic from Tk to Tcl.
* | | [FRQ 2965056]: Windows build with -DUNICODEnijtmans2010-11-031-7/+9
| | | | | | | | | | | | (more clean-ups for pre-win2000 stuff)
* | | Eliminate many tclWinProcs-> indirect calls, which are no longer needed.nijtmans2010-10-121-111/+72
| | | | | | | | | | | | Fix some MSVC 6.0 warnings
* | | [FRQ 2965056]: Windows build with -DUNICODEnijtmans2010-10-111-83/+53
| | | | | | | | | | | | Add netapi32 to the windows link line, so we no longer have to use LoadLibrary to access those functions.
* | | Fix declaration after statement.nijtmans2010-09-211-2/+3
| | | | | | | | | | | | | | | Add -Wdeclaration-after-statement, so this mistake cannot happen again.
* | | Eliminate tclWinProcs->useWide everywhere, since the value is always "1" on ↵dogeen_assembler_splitnijtmans2010-09-201-102/+24
| | | | | | | | | | | | platforms >win95
* | | Oops, didn't mean to check in this file.nijtmans2010-09-181-15/+7
| | |
* | | [Bug 3069278]: breakage on head Windows triggerednijtmans2010-09-181-8/+14
| | | | | | | | | | | | by install-tzdata. Temporary don't compile this with -DUNICODE, while investigating this bug.
* | | * win/tclWinFile.c: remove define of FINDEX_INFO_LEVELS as allhobbs2010-09-161-23/+1
| | | | | | | | | | | | supported versions of compilers should now have it.
* | | [Freq 2965056]: Windows build with -DUNICODEnijtmans2010-08-301-7/+7
| | |
* | | Move TCHAR fallback typedef from tcl.h to tclPlatDecls.h (as suggested by dgp)nijtmans2010-04-221-30/+30
| | | | | | | | | | | | Eliminate various unnecessary type casts.
* | | Fix [Patch 2986105]: conditionally defining strcasecmp/strncasecmpnijtmans2010-04-131-4/+4
| | | | | | | | | | | | Fix gcc warning: comparison of unsigned expression >= 0 is always true
* | | test that tclOO stubs are present in stub librarynijtmans2010-03-071-16/+12
| | | | | | | | | | | | | | | | | | | | | | | | Applied missing part of [Patch 2961556] Change all tclWinProcs signatures to use TCHAR* in stead of WCHAR*. This is meant as preparation to make [Enh 2965056] possible at all.
* | | Eliminate all internal Tcl_WinUtfToTCharnijtmans2010-02-151-10/+10
| | | | | | | | | | | | | | | and Tcl_WinTCharToUtf calls, needed for mslu support.
* | | reverted earlier rename from tcl*Stubs tonijtmans2010-02-151-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | tcl*ConstStubs, it's not necessary at all. tclEnsemble.c: Fix signed-unsigned mismatch make tclWinProcs "const" Add first part of mslu support, See [Feature Request #2819611]
* | | Fix TCL_LL_MODIFIER for Cygwinnijtmans2010-01-131-3/+3
| | | | | | | | | | | | | | | and various other minor CYGWIN compilation problems
* | | Various CYGWIN-related fixes. In the win32 configure script, CYGWIN is still ↵nijtmans2009-12-211-9/+9
| | | | | | | | | | | | not enabled yet, but at least it is a step in the right direction.
* | | Fix gcc warning: ignoring return value of ‘write’,nijtmans2009-12-161-3/+3
| | | | | | | | | | | | | | | | | | declared with attribute warn_unused_result CONSTify functions TclpGetUserHome and TclSetPreInitScript (TIP #27)
* | | [Bug 2893771] Teach [file stat] to handle locked files.patthoyts2009-11-241-12/+34
| | | | | | | | | | | | | | | This stops [file exists] from returning false for files that exist but are locked by resorting to FindFirstFile when GetFileAttributes fails.
* | | * win/tclWinFile.c (TclpObjNormalizePath): Corrected Tcl_Obj leak.dgp2009-03-181-2/+12
| | | | | | | | | | | | Thanks to Joe Mistachkin for detection and patch. [Bug 2688184].
* | | Style improvements - invoking callbacks without visual junk.dkf2008-10-261-57/+59
| | |
* | | * win/tclWinFile.c: (WinSymLinkDirectory): Fixed a problem thatKevin B Kenny2008-04-051-17/+17
|/ / | | | | | | | | | | | | | | | | | | | | Tcl was creating an NTFS junction point (IO_REPARSE_TAG_MOUNT_POINT) but filling in the union member for a Vista symbolic link. We had gotten away with this error because the union member (SymbolicLinkReparseBuffer) was misdefined in this file and in the 'winnt.h' in early versions of MinGW. MinGW 3.4.2 has the correct definition of SymbolicLinkReparseBuffer, exposing the mismatch, and making tests cmdAH-19.4.1, fCmd-28.*, and filename-11.* fail.
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | * generic/tclBasic.c: Removed dead code, including thedgp2007-06-281-79/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclExecute.c: entire file tclMathOp.c. * generic/tclInt.h: * generic/tclMathOp.c (removed): * generic/tclTestObj.c: * win/tclWinFile.c: * unix/Makefile.in: Updated to reflect deletion of tclMathOp.c. * win/Makefile.in: * win/makefile.bc: * win/makefile.vc:
* | More type-pun warning squelchesdkf2007-05-051-224/+231
| |
* | Eliminate use of (VOID*) casts when calling memset or memcpy.dkf2007-04-171-3/+3
| |
* | Bug #1479814. Handle extended paths on Windows NT and above.patthoyts2007-02-201-1/+8
| |
* | win/tclWinFile.c: alfredd supplied patch to fix Bug 1575837coldstore2006-10-131-4/+4
| |
* | win/tclWinFile.c: corrected erroneous attempt to protect against NULL return ↵coldstore2006-10-131-5/+9
| | | | | | | | from Tcl_FSGetNormalizedPath per Bug 1548263 causing Bug 1575837.
* | Handle possible missing definepatthoyts2006-10-011-4/+7
| |
* | bug #1420432 - file mtime fails for directories on windowspatthoyts2006-10-011-4/+14
| |
* | fixed [ 1548263 ] NULL return from Tcl_FSGetNormalizedPath segvcoldstore2006-08-291-6/+10
| |
* | 90% fix of file writable issues on Windowsvincentdarley2006-03-141-3/+3
| |
* | remove previous patch for 'file writable'vincentdarley2006-03-101-163/+31
| |
* | fix to file writable in certain XP directoriesvincentdarley2006-03-091-2/+153
| |
* | fix to sharing violationvincentdarley2006-01-121-2/+3
| |
* | Export stubs for libtommath; fix mingw compiler warningsKevin B Kenny2005-12-131-6/+7
| |
* | ANSIfydkf2005-11-041-3/+3
| |
* | Convert to using ANSI decls/definitions and using the (ANSI) assumption that ↵dkf2005-10-311-150/+171
| | | | | | | | | | | | NULL can be cast to any pointer type transparently.
* | fix to glob memory leak and file stat ino/nlink on windowsvincentdarley2005-10-231-136/+145
| |