We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71b6cce commit 467b93eCopy full SHA for 467b93e
libhb/handbrake/handbrake.h
@@ -26,6 +26,8 @@ extern "C" {
26
/* hb_init()
27
Initializes a libhb session (launches his own thread, detects CPUs,
28
etc) */
29
+#define WINVER 0x600
30
+#define _WIN32_WINNT 0x600
31
#define HB_DEBUG_NONE 0
32
#define HB_DEBUG_ALL 1
33
#define HB_PREVIEW_FORMAT_YUV 0
libhb/hb.c
@@ -23,8 +23,6 @@
23
24
#if defined( SYS_MINGW )
25
#include <io.h>
-#define WINVER 0x600
-#define _WIN32_WINNT 0x600
#if defined(PTW32_VERSION)
#include <pthread.h>
#endif
make/configure.py
@@ -6,6 +6,8 @@
6
##
7
###############################################################################
8
9
+set CL=/D_WIN32_WINNT=0x0600 /DWINVER=0x0600 %CL%
10
+
11
import fnmatch
12
import glob
13
import json
0 commit comments