summaryrefslogtreecommitdiff
path: root/deps/uv/src/win/winapi.h
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2012-07-31 21:26:26 +0200
committerBert Belder <bertbelder@gmail.com>2012-07-31 21:26:26 +0200
commit80ab9a891aa502458c4689dd1bf0bee7a428eae1 (patch)
tree8bed953a95db63ad43c36831ae91194571b30b6d /deps/uv/src/win/winapi.h
parentde16da532e4cff3574b2fe24d998e2dcf49fa2f0 (diff)
downloadandroid-node-v8-80ab9a891aa502458c4689dd1bf0bee7a428eae1.tar.gz
android-node-v8-80ab9a891aa502458c4689dd1bf0bee7a428eae1.tar.bz2
android-node-v8-80ab9a891aa502458c4689dd1bf0bee7a428eae1.zip
uv: upgrade to 69c2ef8
Diffstat (limited to 'deps/uv/src/win/winapi.h')
-rw-r--r--deps/uv/src/win/winapi.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/deps/uv/src/win/winapi.h b/deps/uv/src/win/winapi.h
index df1e822b76..1bf6304b5e 100644
--- a/deps/uv/src/win/winapi.h
+++ b/deps/uv/src/win/winapi.h
@@ -4132,6 +4132,10 @@ typedef struct _FILE_BASIC_INFORMATION {
DWORD FileAttributes;
} FILE_BASIC_INFORMATION, *PFILE_BASIC_INFORMATION;
+typedef struct _FILE_DISPOSITION_INFORMATION {
+ BOOLEAN DeleteFile;
+} FILE_DISPOSITION_INFORMATION, *PFILE_DISPOSITION_INFORMATION;
+
typedef struct _FILE_MODE_INFORMATION {
ULONG Mode;
} FILE_MODE_INFORMATION, *PFILE_MODE_INFORMATION;
@@ -4375,6 +4379,11 @@ typedef NTSTATUS (NTAPI *sNtQuerySystemInformation)
# define ENABLE_EXTENDED_FLAGS 0x80
#endif
+/* from winerror.h */
+#ifndef ERROR_SYMLINK_NOT_SUPPORTED
+# define ERROR_SYMLINK_NOT_SUPPORTED 1464
+#endif
+
typedef BOOL (WINAPI *sGetQueuedCompletionStatusEx)
(HANDLE CompletionPort,
LPOVERLAPPED_ENTRY lpCompletionPortEntries,