Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
82b3f53d
Commit
82b3f53d
authored
Jan 30, 2016
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
Feb 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32: don't override _WIN32_WINNT if a more recent one is defined
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
7785d8c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
modules/audio_output/mmdevice.c
modules/audio_output/mmdevice.c
+5
-1
modules/audio_output/wasapi.c
modules/audio_output/wasapi.c
+5
-1
modules/video_output/msw/win32touch.h
modules/video_output/msw/win32touch.h
+2
-2
No files found.
modules/audio_output/mmdevice.c
View file @
82b3f53d
...
@@ -18,7 +18,11 @@
...
@@ -18,7 +18,11 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#define _WIN32_WINNT 0x600
#if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x600
# undef _WIN32_WINNT
# define _WIN32_WINNT 0x600
#endif
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include <config.h>
# include <config.h>
#endif
#endif
...
...
modules/audio_output/wasapi.c
View file @
82b3f53d
...
@@ -18,7 +18,11 @@
...
@@ -18,7 +18,11 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#define _WIN32_WINNT 0x600
#if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x600
# undef _WIN32_WINNT
# define _WIN32_WINNT 0x600
#endif
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include <config.h>
# include <config.h>
#endif
#endif
...
...
modules/video_output/msw/win32touch.h
View file @
82b3f53d
...
@@ -24,10 +24,10 @@
...
@@ -24,10 +24,10 @@
#ifndef VLC_GESTURE_H_
#ifndef VLC_GESTURE_H_
#define VLC_GESTURE_H_
#define VLC_GESTURE_H_
# if
def _WIN32_WINNT
# if
!defined(_WIN32_WINNT) || _WIN32_WINNT < 0x601
# undef _WIN32_WINNT
# undef _WIN32_WINNT
# define _WIN32_WINNT 0x0601
# endif
# endif
# define _WIN32_WINNT 0x0601
# include <windows.h>
# include <windows.h>
# include <winuser.h>
# include <winuser.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment