aboutsummaryrefslogtreecommitdiff
path: root/src/os_win.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_win.c')
-rw-r--r--src/os_win.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/os_win.c b/src/os_win.c
index 698d6556c..32758ab76 100644
--- a/src/os_win.c
+++ b/src/os_win.c
@@ -81,14 +81,6 @@
#endif
/*
-** This constant is needed by the winAccess function; therefore, define
-** it when it is missing from the SDK header files.
-*/
-#ifndef FILE_ATTRIBUTE_REPARSE_POINT
-# define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
-#endif
-
-/*
** Check to see if the GetVersionEx[AW] functions are deprecated on the
** target system. GetVersionEx was first deprecated in Win8.1.
*/
@@ -5480,10 +5472,6 @@ static int winAccess(
rc = attr!=INVALID_FILE_ATTRIBUTES &&
(attr & FILE_ATTRIBUTE_READONLY)==0;
break;
- case SQLITE_ACCESS_SYMLINK:
- rc = attr!=INVALID_FILE_ATTRIBUTES &&
- (attr & FILE_ATTRIBUTE_REPARSE_POINT)!=0;
- break;
default:
assert(!"Invalid flags argument");
}