From 1058f5b8c845ac46f20ce73de1dfbba3cd301562 Mon Sep 17 00:00:00 2001 From: takase1121 <20792268+takase1121@users.noreply.github.com> Date: Wed, 4 Dec 2024 10:44:34 +0800 Subject: lpm.c: use _WIN32_WINNT_VISTA --- src/lpm.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/lpm.c b/src/lpm.c index 13ce6e9..189ff7d 100644 --- a/src/lpm.c +++ b/src/lpm.c @@ -1,17 +1,13 @@ #ifdef _WIN32 + // needed for symbolic link creation and VT processing stuff + #undef _WIN32_WINNT + #define _WIN32_WINNT 0x0600 // _WIN32_WINNT_VISTA // prevent windows.h from including winsock.h, which will allow us to include winsock2.h #define WIN32_LEAN_AND_MEAN #include #include #include #include - - #ifndef SYMBOLIC_LINK_FLAG_DIRECTORY - #define SYMBOLIC_LINK_FLAG_DIRECTORY 0x1 - #endif - #ifndef SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE - #define SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE 0x2 - #endif #else #ifndef LPM_NO_THRAEDS #include -- cgit v1.2.3