diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-10-17 14:49:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-10-17 14:49:00 (GMT) |
commit | 8478e986bd8c056b8571c7803b9f9869f8dccb63 (patch) | |
tree | 62bdc008969547f22865f126d6e2e9f46ab03b09 /win/tkWinDialog.c | |
parent | c7116b09fa4fd1dc41c7c988e4c333e7db495cc5 (diff) | |
download | tk-8478e986bd8c056b8571c7803b9f9869f8dccb63.zip tk-8478e986bd8c056b8571c7803b9f9869f8dccb63.tar.gz tk-8478e986bd8c056b8571c7803b9f9869f8dccb63.tar.bz2 |
Previous commit probably broke higher VS versions (>2012) compilation. Fix that.
Diffstat (limited to 'win/tkWinDialog.c')
-rw-r--r-- | win/tkWinDialog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index 211875e..ee30806 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -274,7 +274,9 @@ static const IID IIDIFileSaveDialog = { 0x84BCCD23, 0x5FDE, 0x4CDB, {0xAE, 0xA4, 0xAF, 0x64, 0xB8, 0x3D, 0x78, 0xAB} }; -#ifndef __IFileDialog_INTERFACE_DEFINED__ +#ifdef __IFileDialog_INTERFACE_DEFINED__ +# define TCLCOMDLG_FILTERSPEC COMDLG_FILTERSPEC +#else /* Forward declarations for structs that are referenced but not used */ typedef struct IPropertyStore IPropertyStore; |