diff options
Diffstat (limited to 'protocols/Twitter/src/stdafx.h')
-rw-r--r-- | protocols/Twitter/src/stdafx.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/Twitter/src/stdafx.h b/protocols/Twitter/src/stdafx.h index 0c7fe57ab6..192a3e8b35 100644 --- a/protocols/Twitter/src/stdafx.h +++ b/protocols/Twitter/src/stdafx.h @@ -5,7 +5,9 @@ #pragma once
-#include "targetver.h"
+#ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
+#define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
+#endif
#include <Windows.h>
#include <Shlwapi.h>
|