Commit c796d10a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Require Windows XP

(I doubt VLC 1.2.0 will be out before July 13th this year)
parent 0ef46dbe
...@@ -46,11 +46,6 @@ ...@@ -46,11 +46,6 @@
static void check_crashdump(void); static void check_crashdump(void);
LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo); LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo);
# endif # endif
typedef enum _HEAP_INFORMATION_CLASS {
HeapCompatibilityInformation,
HeapEnableTerminationOnCorruption
} HEAP_INFORMATION_CLASS;
WINBASEAPI BOOL WINAPI HeapSetInformation(HANDLE,HEAP_INFORMATION_CLASS,PVOID,SIZE_T);
#define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1 #define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1
#endif #endif
......
...@@ -312,12 +312,12 @@ case "${host_os}" in ...@@ -312,12 +312,12 @@ case "${host_os}" in
;; ;;
*mingw32*) *mingw32*)
SYS=mingw32 SYS=mingw32
AC_DEFINE([_WIN32_WINNT], 0x0500, [Define to '0x0500' for Windows 2000 APIs.]) AC_DEFINE([_WIN32_WINNT], 0x0501, [Define to '0x0500' for Windows XP APIs.])
;; ;;
*cygwin*) *cygwin*)
dnl Check if we are using the mno-cygwin mode in which case we are dnl Check if we are using the mno-cygwin mode in which case we are
dnl actually dealing with a mingw32 compiler. dnl actually dealing with a mingw32 compiler.
AC_DEFINE([_WIN32_WINNT], 0x0500, [Define to '0x0500' for Windows 2000 APIs.]) AC_DEFINE([_WIN32_WINNT], 0x0501, [Define to '0x0501' for Windows XP APIs.])
AC_EGREP_CPP(yes, AC_EGREP_CPP(yes,
[#ifdef WIN32 [#ifdef WIN32
yes yes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment