From 139312173a81a546de1011c89a4d85c3d1f4bc1b Mon Sep 17 00:00:00 2001 From: Kevin B Kenny Date: Mon, 14 Apr 2003 22:55:11 +0000 Subject: Added conditionals to make tclWinFile.c compile on VC++6, which was broken by recent changes. --- ChangeLog | 5 +++++ win/tclWinFile.c | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9556707..aafc58a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-04-14 Kevin Kenny + + * win/tclWinFile.c: added conditionals to restore compilation on + VC++6, which was broken by recent changes. + 2003-04-14 Vince Darley Merged various bug fixes from current cvs head: diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 068a029..d120742 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinFile.c,v 1.44.2.2 2003/04/14 15:46:00 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinFile.c,v 1.44.2.3 2003/04/14 22:55:12 kennykb Exp $ */ //#define _WIN32_WINNT 0x0500 @@ -128,6 +128,12 @@ typedef struct { WCHAR dummyBuf[MAX_PATH*3]; } DUMMY_REPARSE_BUFFER; +#if defined(_MSC_VER) && ( _MSC_VER <= 1100 ) +#define HAVE_NO_FINDEX_ENUMS +#elif !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0400) +#define HAVE_NO_FINDEX_ENUMS +#endif + #ifdef HAVE_NO_FINDEX_ENUMS /* These two aren't in VC++ 5.2 headers */ typedef enum _FINDEX_INFO_LEVELS { -- cgit v0.12