We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ac24a commit 64e7657Copy full SHA for 64e7657
1 file changed
src/cli.cpp
@@ -41,6 +41,14 @@
41
#define WIN32_LEAN_AND_MEAN
42
#define NOMINMAX
43
#include <windows.h>
44
+ #ifdef _WIN32_WINNT
45
+ #undef _WIN32_WINNT
46
+ #endif
47
+ #ifdef WINVER
48
+ #undef WINVER
49
50
+ #define _WIN32_WINNT 0x0600
51
+ #define WINVER _WIN32_WINNT
52
#else
53
#define CLI_WINDOWS 0
54
#endif
@@ -1275,4 +1283,4 @@ int main(int argc, char* argv[]) {
1275
1283
// at this point, it's assumed that the user's intention is for the general summary to be ran
1276
1284
general(high_threshold, all, dynamic);
1277
1285
return 0;
1278
-}
1286
+}
0 commit comments