Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(581)

Delta Between Two Patch Sets: src/pkg/syscall/ztypes_windows.go

Issue 9651047: code review 9651047: os: request appropriate access rights before calling wi... (Closed)
Left Patch Set: diff -r 4aa7943034c5 https://go.googlecode.com/hg/ Created 10 years, 9 months ago
Right Patch Set: diff -r fe447e02dc0b https://go.googlecode.com/hg/ Created 10 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/os/os_test.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package syscall 5 package syscall
6 6
7 const ( 7 const (
8 // Windows errors. 8 // Windows errors.
9 ERROR_FILE_NOT_FOUND Errno = 2 9 ERROR_FILE_NOT_FOUND Errno = 2
10 ERROR_PATH_NOT_FOUND Errno = 3 10 ERROR_PATH_NOT_FOUND Errno = 3
11 ERROR_ACCESS_DENIED Errno = 5 11 ERROR_ACCESS_DENIED Errno = 5
12 ERROR_NO_MORE_FILES Errno = 18 12 ERROR_NO_MORE_FILES Errno = 18
13 ERROR_HANDLE_EOF Errno = 38
13 ERROR_FILE_EXISTS Errno = 80 14 ERROR_FILE_EXISTS Errno = 80
14 ERROR_BROKEN_PIPE Errno = 109 15 ERROR_BROKEN_PIPE Errno = 109
15 ERROR_BUFFER_OVERFLOW Errno = 111 16 ERROR_BUFFER_OVERFLOW Errno = 111
16 ERROR_INSUFFICIENT_BUFFER Errno = 122 17 ERROR_INSUFFICIENT_BUFFER Errno = 122
17 ERROR_MOD_NOT_FOUND Errno = 126 18 ERROR_MOD_NOT_FOUND Errno = 126
18 ERROR_PROC_NOT_FOUND Errno = 127 19 ERROR_PROC_NOT_FOUND Errno = 127
19 ERROR_ALREADY_EXISTS Errno = 183 20 ERROR_ALREADY_EXISTS Errno = 183
20 ERROR_ENVVAR_NOT_FOUND Errno = 203 21 ERROR_ENVVAR_NOT_FOUND Errno = 203
21 ERROR_OPERATION_ABORTED Errno = 995 22 ERROR_OPERATION_ABORTED Errno = 995
22 ERROR_IO_PENDING Errno = 997 23 ERROR_IO_PENDING Errno = 997
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 Data3 uint16 957 Data3 uint16
957 Data4 [8]byte 958 Data4 [8]byte
958 } 959 }
959 960
960 var WSAID_CONNECTEX = GUID{ 961 var WSAID_CONNECTEX = GUID{
961 0x25a207b9, 962 0x25a207b9,
962 0xddf3, 963 0xddf3,
963 0x4660, 964 0x4660,
964 [8]byte{0x8e, 0xe9, 0x76, 0xe5, 0x8c, 0x74, 0x06, 0x3e}, 965 [8]byte{0x8e, 0xe9, 0x76, 0xe5, 0x8c, 0x74, 0x06, 0x3e},
965 } 966 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b