[vlc-commits] win32: use _WIN32_WINNT_WIN8
Rémi Denis-Courmont
git at videolan.org
Tue Nov 29 22:02:53 CET 2016
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Nov 29 22:59:02 2016 +0200| [7d33a100250a8dd447b19f3d02767b15ed518eba] | committer: Rémi Denis-Courmont
win32: use _WIN32_WINNT_WIN8
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7d33a100250a8dd447b19f3d02767b15ed518eba
---
src/win32/thread.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/win32/thread.c b/src/win32/thread.c
index b55c7f5..408524e 100644
--- a/src/win32/thread.c
+++ b/src/win32/thread.c
@@ -772,7 +772,7 @@ static mtime_t mdate_wall (void)
FILETIME ts;
ULARGE_INTEGER s;
-#if (_WIN32_WINNT >= 0x0602) && !VLC_WINSTORE_APP
+#if (_WIN32_WINNT >= _WIN32_WINNT_WIN8) && !VLC_WINSTORE_APP
GetSystemTimePreciseAsFileTime (&ts);
#else
GetSystemTimeAsFileTime (&ts);
More information about the vlc-commits
mailing list