[vlc-devel] commit: Update _WIN32_IE to IE 5.01 (Jean-Baptiste Kempf )
git version control
git at videolan.org
Wed Aug 19 15:34:55 CEST 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Aug 19 15:31:08 2009 +0200| [4164da8033e507fc6b65f7f54cc0e06f5ccea631] | committer: Jean-Baptiste Kempf
Update _WIN32_IE to IE 5.01
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4164da8033e507fc6b65f7f54cc0e06f5ccea631
---
bin/winvlc.c | 4 +++-
src/config/dirs.c | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/bin/winvlc.c b/bin/winvlc.c
index a8dd08a..de71fe8 100644
--- a/bin/winvlc.c
+++ b/bin/winvlc.c
@@ -36,7 +36,9 @@
#include <windows.h>
#if !defined(UNDER_CE)
-# define _WIN32_IE 0x500
+# ifndef _WIN32_IE
+# define _WIN32_IE 0x501
+# endif
# include <shlobj.h>
# include <tlhelp32.h>
# include <wininet.h>
diff --git a/src/config/dirs.c b/src/config/dirs.c
index a241ff5..c8cfc82 100644
--- a/src/config/dirs.c
+++ b/src/config/dirs.c
@@ -28,7 +28,9 @@
#include <vlc_common.h>
#if defined( WIN32 )
-# define _WIN32_IE IE5
+# ifndef _WIN32_IE
+# define _WIN32_IE 0x0501
+# endif
# include <w32api.h>
#ifndef UNDER_CE
# include <direct.h>
More information about the vlc-devel
mailing list