Print this page
NEX-5665 SMB2 oplock leases
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Roman Strashkin <roman.strashkin@nexenta.com>
NEX-5665 SMB2 oplock leases
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Roman Strashkin <roman.strashkin@nexenta.com>
NEX-6309 Update NT status codes
Update ntstatus.h from [MS-ERREF] October 2015
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
Reviewed by: Matt Barden <matt.barden@nexenta.com>
NEX-6041 Should pass the smbtorture lock tests
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
NEX-5598 SMB needs a few more ioctls for Hyper-V
Reviewed by: Gordon Ross <gwr@nexenta.com>
SMB-11 SMB2 message parse & dispatch
SMB-12 SMB2 Negotiate Protocol
SMB-13 SMB2 Session Setup
SMB-14 SMB2 Logoff
SMB-15 SMB2 Tree Connect
SMB-16 SMB2 Tree Disconnect
SMB-17 SMB2 Create
SMB-18 SMB2 Close
SMB-19 SMB2 Flush
SMB-20 SMB2 Read
SMB-21 SMB2 Write
SMB-22 SMB2 Lock/Unlock
SMB-23 SMB2 Ioctl
SMB-24 SMB2 Cancel
SMB-25 SMB2 Echo
SMB-26 SMB2 Query Dir
SMB-27 SMB2 Change Notify
SMB-28 SMB2 Query Info
SMB-29 SMB2 Set Info
SMB-30 SMB2 Oplocks
SMB-53 SMB2 Create Context options
(SMB2 code review cleanup 1, 2, 3)
| Split |
Close |
| Expand all |
| Collapse all |
--- old/usr/src/uts/common/smb/ntstatus.h
+++ new/usr/src/uts/common/smb/ntstatus.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
|
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21
22 22 /*
23 23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 - * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
24 + * Copyright 2017 Nexenta Systems, Inc. All rights reserved.
25 25 */
26 26
27 27 #ifndef _SMB_NTSTATUS_H
28 28 #define _SMB_NTSTATUS_H
29 29
30 30 /*
31 31 * This file defines the list of Win32 status codes. If you need
32 32 * a status code that is defined in the [MS-ERREF] document but
33 - * is not listed here, please add it to the file. This file is
34 - * compatible with the Windows DDK file inc/ntstatus.h
35 - * Please preserve this compatibility.
33 + * is not listed here, please add it to the file.
36 34 *
37 35 * Be careful not to confuse error codes with status codes. The error
38 36 * codes are listed in nterror.h. Some mappings between NT status
39 37 * codes and Win32 error codes is provided in the Microsoft knowledge
40 38 * base article Q113996.
41 39 *
42 40 * Also note that this file is used as the input to a small AWK program
43 41 * to generate an error name lookup table. If you modify this file,
44 42 * please check that a make in libsmb is successful. At present, the
45 43 * AWK program checks that the NTSTATUS constants are in this format:
46 44 * 0x0123CDEF Please keep that format.
47 45 *
48 46 * Win32 error codes are 32-bit values with the following format
49 47 * (ntstatus.h):
50 48 *
51 49 * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
52 50 * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
53 51 * +---+-+-+-----------------------+-------------------------------+
54 52 * |Sev|C|R| Facility | Code |
55 53 * +---+-+-+-----------------------+-------------------------------+
56 54 *
57 55 * Sev severity code
58 56 * 00 - Success
59 57 * 01 - Informational
60 58 * 10 - Warning
61 59 * 11 - Error
62 60 *
63 61 * C - is the Customer code flag
|
↓ open down ↓ |
18 lines elided |
↑ open up ↑ |
64 62 * R - is a reserved bit
65 63 * Facility - is the facility code
66 64 * Code - is the facility's status code
67 65 */
68 66
69 67 #ifdef __cplusplus
70 68 extern "C" {
71 69 #endif
72 70
73 71 /*
74 - * XXX: Some temporary left-overs from the old ntstatus.h
75 - * Should eliminate uses of these macros when convenient.
76 - */
77 -/* This used to OR in the severity bits. */
78 -#define NT_SC_ERROR(S) (S)
79 -/* This used to mask off the severity bits. */
80 -#define NT_SC_VALUE(S) (S)
81 -/* XXX end of temporary left-overs. */
82 -
83 -/*
84 72 * One non-NT macro added for getting the severity value
85 73 * from a given NT status code. Evaluates to one of the
86 74 * SEVERITY values defined below.
87 75 */
88 76 #define NT_SC_SEVERITY(S) (((S) >> 30) & 3)
89 77
90 78 /*
91 79 * All NT-compatible from here on.
92 80 * (modulo the "NT_" prefix)
93 81 */
94 82
95 83 /*
96 84 * Define the severity codes (same as in the NT DDK).
97 85 * These are the top two bits, so shift left 30 bits.
98 86 */
99 87 #define NT_STATUS_SEVERITY_SUCCESS 0
100 88 #define NT_STATUS_SEVERITY_INFORMATIONAL 1 /* 0x40000000 */
101 89 #define NT_STATUS_SEVERITY_WARNING 2 /* 0x80000000 */
102 90 #define NT_STATUS_SEVERITY_ERROR 3 /* 0xC0000000 */
103 91
92 +/*
93 + * Please keep the following defines sorted by number.
94 + */
95 +
104 96 #define NT_STATUS_SUCCESS 0x00000000
105 97
106 98 /* Facility OS (0x..00....) */
107 99 /* All severity zero (success) */
108 100 #define NT_STATUS_ABANDONED 0x00000080
109 101 #define NT_STATUS_USER_APC 0x000000C0
110 102 #define NT_STATUS_KERNEL_APC 0x00000100
111 103 #define NT_STATUS_ALERTED 0x00000101
112 104 #define NT_STATUS_TIMEOUT 0x00000102
113 105 #define NT_STATUS_PENDING 0x00000103
114 106 #define NT_STATUS_REPARSE 0x00000104
115 107 #define NT_STATUS_MORE_ENTRIES 0x00000105
116 108 #define NT_STATUS_NOT_ALL_ASSIGNED 0x00000106
117 109 #define NT_STATUS_SOME_NOT_MAPPED 0x00000107
118 110 #define NT_STATUS_OPLOCK_BREAK_IN_PROGRESS 0x00000108
119 111 #define NT_STATUS_VOLUME_MOUNTED 0x00000109
120 112 #define NT_STATUS_RXACT_COMMITTED 0x0000010A
121 113 #define NT_STATUS_NOTIFY_CLEANUP 0x0000010B
122 114 #define NT_STATUS_NOTIFY_ENUM_DIR 0x0000010C
123 115 #define NT_STATUS_NO_QUOTAS_FOR_ACCOUNT 0x0000010D
124 116 #define NT_STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED 0x0000010E
125 117 #define NT_STATUS_PAGE_FAULT_TRANSITION 0x00000110
126 118 #define NT_STATUS_PAGE_FAULT_DEMAND_ZERO 0x00000111
127 119 #define NT_STATUS_PAGE_FAULT_COPY_ON_WRITE 0x00000112
128 120 #define NT_STATUS_PAGE_FAULT_GUARD_PAGE 0x00000113
129 121 #define NT_STATUS_PAGE_FAULT_PAGING_FILE 0x00000114
|
↓ open down ↓ |
16 lines elided |
↑ open up ↑ |
130 122 #define NT_STATUS_CACHE_PAGE_LOCKED 0x00000115
131 123 #define NT_STATUS_CRASH_DUMP 0x00000116
132 124 #define NT_STATUS_BUFFER_ALL_ZEROS 0x00000117
133 125 #define NT_STATUS_REPARSE_OBJECT 0x00000118
134 126 #define NT_STATUS_RESOURCE_REQUIREMENTS_CHANGED 0x00000119
135 127 #define NT_STATUS_TRANSLATION_COMPLETE 0x00000120
136 128 #define NT_STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY 0x00000121
137 129 #define NT_STATUS_NOTHING_TO_TERMINATE 0x00000122
138 130 #define NT_STATUS_PROCESS_NOT_IN_JOB 0x00000123
139 131 #define NT_STATUS_PROCESS_IN_JOB 0x00000124
132 +#define NT_STATUS_VOLSNAP_HIBERNATE_READY 0x00000125
133 +#define NT_STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY 0x00000126
134 +#define NT_STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED 0x00000127
135 +#define NT_STATUS_INTERRUPT_STILL_CONNECTED 0x00000128
136 +#define NT_STATUS_PROCESS_CLONED 0x00000129
137 +#define NT_STATUS_FILE_LOCKED_WITH_ONLY_READERS 0x0000012A
138 +#define NT_STATUS_FILE_LOCKED_WITH_WRITERS 0x0000012B
139 +#define NT_STATUS_RESOURCEMANAGER_READ_ONLY 0x00000202
140 +#define NT_STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE 0x00000215
141 +#define NT_STATUS_OPLOCK_HANDLE_CLOSED 0x00000216
142 +#define NT_STATUS_WAIT_FOR_OPLOCK 0x00000367
140 143
141 144 /* All severity 1 (informational) */
142 145 #define NT_STATUS_OBJECT_NAME_EXISTS 0x40000000
143 146 #define NT_STATUS_THREAD_WAS_SUSPENDED 0x40000001
144 147 #define NT_STATUS_WORKING_SET_LIMIT_RANGE 0x40000002
145 148 #define NT_STATUS_IMAGE_NOT_AT_BASE 0x40000003
146 149 #define NT_STATUS_RXACT_STATE_CREATED 0x40000004
147 150 #define NT_STATUS_SEGMENT_NOTIFICATION 0x40000005
148 151 #define NT_STATUS_LOCAL_USER_SESSION_KEY 0x40000006
149 152 #define NT_STATUS_BAD_CURRENT_DIRECTORY 0x40000007
150 153 #define NT_STATUS_SERIAL_MORE_WRITES 0x40000008
151 154 #define NT_STATUS_REGISTRY_RECOVERED 0x40000009
152 155 #define NT_STATUS_FT_READ_RECOVERY_FROM_BACKUP 0x4000000A
153 156 #define NT_STATUS_FT_WRITE_RECOVERY 0x4000000B
154 157 #define NT_STATUS_SERIAL_COUNTER_TIMEOUT 0x4000000C
155 158 #define NT_STATUS_NULL_LM_PASSWORD 0x4000000D
156 159 #define NT_STATUS_IMAGE_MACHINE_TYPE_MISMATCH 0x4000000E
157 160 #define NT_STATUS_RECEIVE_PARTIAL 0x4000000F
158 161 #define NT_STATUS_RECEIVE_EXPEDITED 0x40000010
159 162 #define NT_STATUS_RECEIVE_PARTIAL_EXPEDITED 0x40000011
160 163 #define NT_STATUS_EVENT_DONE 0x40000012
161 164 #define NT_STATUS_EVENT_PENDING 0x40000013
162 165 #define NT_STATUS_CHECKING_FILE_SYSTEM 0x40000014
163 166 #define NT_STATUS_FATAL_APP_EXIT 0x40000015
164 167 #define NT_STATUS_PREDEFINED_HANDLE 0x40000016
165 168 #define NT_STATUS_WAS_UNLOCKED 0x40000017
166 169 #define NT_STATUS_SERVICE_NOTIFICATION 0x40000018
167 170 #define NT_STATUS_WAS_LOCKED 0x40000019
168 171 #define NT_STATUS_LOG_HARD_ERROR 0x4000001A
169 172 #define NT_STATUS_ALREADY_WIN32 0x4000001B
170 173 #define NT_STATUS_WX86_UNSIMULATE 0x4000001C
171 174 #define NT_STATUS_WX86_CONTINUE 0x4000001D
172 175 #define NT_STATUS_WX86_SINGLE_STEP 0x4000001E
173 176 #define NT_STATUS_WX86_BREAKPOINT 0x4000001F
174 177 #define NT_STATUS_WX86_EXCEPTION_CONTINUE 0x40000020
175 178 #define NT_STATUS_WX86_EXCEPTION_LASTCHANCE 0x40000021
|
↓ open down ↓ |
26 lines elided |
↑ open up ↑ |
176 179 #define NT_STATUS_WX86_EXCEPTION_CHAIN 0x40000022
177 180 #define NT_STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE 0x40000023
178 181 #define NT_STATUS_NO_YIELD_PERFORMED 0x40000024
179 182 #define NT_STATUS_TIMER_RESUME_IGNORED 0x40000025
180 183 #define NT_STATUS_ARBITRATION_UNHANDLED 0x40000026
181 184 #define NT_STATUS_CARDBUS_NOT_SUPPORTED 0x40000027
182 185 #define NT_STATUS_WX86_CREATEWX86TIB 0x40000028
183 186 #define NT_STATUS_MP_PROCESSOR_MISMATCH 0x40000029
184 187 #define NT_STATUS_HIBERNATED 0x4000002A
185 188 #define NT_STATUS_RESUME_HIBERNATION 0x4000002B
189 +#define NT_STATUS_FIRMWARE_UPDATED 0x4000002C
190 +#define NT_STATUS_DRIVERS_LEAKING_LOCKED_PAGES 0x4000002D
191 +#define NT_STATUS_MESSAGE_RETRIEVED 0x4000002E
192 +#define NT_STATUS_SYSTEM_POWERSTATE_TRANSITION 0x4000002F
193 +#define NT_STATUS_ALPC_CHECK_COMPLETION_LIST 0x40000030
194 +#define NT_STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION 0x40000031
195 +#define NT_STATUS_ACCESS_AUDIT_BY_POLICY 0x40000032
196 +#define NT_STATUS_ABANDON_HIBERFILE 0x40000033
197 +#define NT_STATUS_BIZRULES_NOT_ENABLED 0x40000034
198 +#define NT_STATUS_WAKE_SYSTEM 0x40000294
199 +#define NT_STATUS_DS_SHUTTING_DOWN 0x40000370
186 200
201 +/* Facility RPC Runtime (0x..02....) */
202 +#define RPC_NT_UUID_LOCAL_ONLY 0x40020056
203 +#define RPC_NT_SEND_INCOMPLETE 0x400200AF
204 +
187 205 /* All severity 2 (warning) */
188 206 #define NT_STATUS_GUARD_PAGE_VIOLATION 0x80000001
189 207 #define NT_STATUS_DATATYPE_MISALIGNMENT 0x80000002
190 208 #define NT_STATUS_BREAKPOINT 0x80000003
191 209 #define NT_STATUS_SINGLE_STEP 0x80000004
192 210 #define NT_STATUS_BUFFER_OVERFLOW 0x80000005
193 211 #define NT_STATUS_NO_MORE_FILES 0x80000006
194 212 #define NT_STATUS_WAKE_SYSTEM_DEBUGGER 0x80000007
195 213 #define NT_STATUS_HANDLES_CLOSED 0x8000000A
196 214 #define NT_STATUS_NO_INHERITANCE 0x8000000B
197 215 #define NT_STATUS_GUID_SUBSTITUTION_MADE 0x8000000C
198 216 #define NT_STATUS_PARTIAL_COPY 0x8000000D
199 217 #define NT_STATUS_DEVICE_PAPER_EMPTY 0x8000000E
200 218 #define NT_STATUS_DEVICE_POWERED_OFF 0x8000000F
201 219 #define NT_STATUS_DEVICE_OFF_LINE 0x80000010
202 220 #define NT_STATUS_DEVICE_BUSY 0x80000011
203 221 #define NT_STATUS_NO_MORE_EAS 0x80000012
204 222 #define NT_STATUS_INVALID_EA_NAME 0x80000013
205 223 #define NT_STATUS_EA_LIST_INCONSISTENT 0x80000014
206 224 #define NT_STATUS_INVALID_EA_FLAG 0x80000015
207 225 #define NT_STATUS_VERIFY_REQUIRED 0x80000016
208 226 #define NT_STATUS_EXTRANEOUS_INFORMATION 0x80000017
209 227 #define NT_STATUS_RXACT_COMMIT_NECESSARY 0x80000018
210 228 #define NT_STATUS_NO_MORE_ENTRIES 0x8000001A
211 229 #define NT_STATUS_FILEMARK_DETECTED 0x8000001B
212 230 #define NT_STATUS_MEDIA_CHANGED 0x8000001C
213 231 #define NT_STATUS_BUS_RESET 0x8000001D
214 232 #define NT_STATUS_END_OF_MEDIA 0x8000001E
215 233 #define NT_STATUS_BEGINNING_OF_MEDIA 0x8000001F
|
↓ open down ↓ |
19 lines elided |
↑ open up ↑ |
216 234 #define NT_STATUS_MEDIA_CHECK 0x80000020
217 235 #define NT_STATUS_SETMARK_DETECTED 0x80000021
218 236 #define NT_STATUS_NO_DATA_DETECTED 0x80000022
219 237 #define NT_STATUS_REDIRECTOR_HAS_OPEN_HANDLES 0x80000023
220 238 #define NT_STATUS_SERVER_HAS_OPEN_HANDLES 0x80000024
221 239 #define NT_STATUS_ALREADY_DISCONNECTED 0x80000025
222 240 #define NT_STATUS_LONGJUMP 0x80000026
223 241 #define NT_STATUS_CLEANER_CARTRIDGE_INSTALLED 0x80000027
224 242 #define NT_STATUS_PLUGPLAY_QUERY_VETOED 0x80000028
225 243 #define NT_STATUS_UNWIND_CONSOLIDATE 0x80000029
244 +#define NT_STATUS_REGISTRY_HIVE_RECOVERED 0x8000002A
245 +#define NT_STATUS_DLL_MIGHT_BE_INSECURE 0x8000002B
246 +#define NT_STATUS_DLL_MIGHT_BE_INCOMPATIBLE 0x8000002C
247 +#define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002D
248 +#define NT_STATUS_CANNOT_GRANT_REQUESTED_OPLOCK 0x8000002E
249 +#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288
250 +#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000289
251 +#define NT_STATUS_DATA_LOST_REPAIR 0x80000803
226 252
227 -/* Mostly severity 3 (error) - but NOT all! */
253 +/* facility cluster (0x8013....) etc, not used */
254 +
255 +/* All severity 3 (error) */
228 256 #define NT_STATUS_UNSUCCESSFUL 0xC0000001
229 257 #define NT_STATUS_NOT_IMPLEMENTED 0xC0000002
230 258 #define NT_STATUS_INVALID_INFO_CLASS 0xC0000003
231 259 #define NT_STATUS_INFO_LENGTH_MISMATCH 0xC0000004
232 260 #define NT_STATUS_ACCESS_VIOLATION 0xC0000005
233 261 #define NT_STATUS_IN_PAGE_ERROR 0xC0000006
234 262 #define NT_STATUS_PAGEFILE_QUOTA 0xC0000007
235 263 #define NT_STATUS_INVALID_HANDLE 0xC0000008
236 264 #define NT_STATUS_BAD_INITIAL_STACK 0xC0000009
237 265 #define NT_STATUS_BAD_INITIAL_PC 0xC000000A
238 266 #define NT_STATUS_INVALID_CID 0xC000000B
239 267 #define NT_STATUS_TIMER_NOT_CANCELED 0xC000000C
240 268 #define NT_STATUS_INVALID_PARAMETER 0xC000000D
241 269 #define NT_STATUS_NO_SUCH_DEVICE 0xC000000E
242 270 #define NT_STATUS_NO_SUCH_FILE 0xC000000F
243 271 #define NT_STATUS_INVALID_DEVICE_REQUEST 0xC0000010
244 272 #define NT_STATUS_END_OF_FILE 0xC0000011
245 273 #define NT_STATUS_WRONG_VOLUME 0xC0000012
246 274 #define NT_STATUS_NO_MEDIA_IN_DEVICE 0xC0000013
247 275 #define NT_STATUS_UNRECOGNIZED_MEDIA 0xC0000014
248 276 #define NT_STATUS_NONEXISTENT_SECTOR 0xC0000015
249 277 #define NT_STATUS_MORE_PROCESSING_REQUIRED 0xC0000016
250 278 #define NT_STATUS_NO_MEMORY 0xC0000017
251 279 #define NT_STATUS_CONFLICTING_ADDRESSES 0xC0000018
252 280 #define NT_STATUS_NOT_MAPPED_VIEW 0xC0000019
253 281 #define NT_STATUS_UNABLE_TO_FREE_VM 0xC000001A
254 282 #define NT_STATUS_UNABLE_TO_DELETE_SECTION 0xC000001B
255 283 #define NT_STATUS_INVALID_SYSTEM_SERVICE 0xC000001C
256 284 #define NT_STATUS_ILLEGAL_INSTRUCTION 0xC000001D
257 285 #define NT_STATUS_INVALID_LOCK_SEQUENCE 0xC000001E
258 286 #define NT_STATUS_INVALID_VIEW_SIZE 0xC000001F
259 287 #define NT_STATUS_INVALID_FILE_FOR_SECTION 0xC0000020
260 288 #define NT_STATUS_ALREADY_COMMITTED 0xC0000021
261 289 #define NT_STATUS_ACCESS_DENIED 0xC0000022
262 290 #define NT_STATUS_BUFFER_TOO_SMALL 0xC0000023
263 291 #define NT_STATUS_OBJECT_TYPE_MISMATCH 0xC0000024
264 292 #define NT_STATUS_NONCONTINUABLE_EXCEPTION 0xC0000025
265 293 #define NT_STATUS_INVALID_DISPOSITION 0xC0000026
266 294 #define NT_STATUS_UNWIND 0xC0000027
267 295 #define NT_STATUS_BAD_STACK 0xC0000028
268 296 #define NT_STATUS_INVALID_UNWIND_TARGET 0xC0000029
269 297 #define NT_STATUS_NOT_LOCKED 0xC000002A
270 298 #define NT_STATUS_PARITY_ERROR 0xC000002B
271 299 #define NT_STATUS_UNABLE_TO_DECOMMIT_VM 0xC000002C
272 300 #define NT_STATUS_NOT_COMMITTED 0xC000002D
273 301 #define NT_STATUS_INVALID_PORT_ATTRIBUTES 0xC000002E
274 302 #define NT_STATUS_PORT_MESSAGE_TOO_LONG 0xC000002F
275 303 #define NT_STATUS_INVALID_PARAMETER_MIX 0xC0000030
276 304 #define NT_STATUS_INVALID_QUOTA_LOWER 0xC0000031
277 305 #define NT_STATUS_DISK_CORRUPT_ERROR 0xC0000032
278 306 #define NT_STATUS_OBJECT_NAME_INVALID 0xC0000033
279 307 #define NT_STATUS_OBJECT_NAME_NOT_FOUND 0xC0000034
280 308 #define NT_STATUS_OBJECT_NAME_COLLISION 0xC0000035
281 309 #define NT_STATUS_PORT_DISCONNECTED 0xC0000037
282 310 #define NT_STATUS_DEVICE_ALREADY_ATTACHED 0xC0000038
283 311 #define NT_STATUS_OBJECT_PATH_INVALID 0xC0000039
284 312 #define NT_STATUS_OBJECT_PATH_NOT_FOUND 0xC000003A
285 313 #define NT_STATUS_OBJECT_PATH_SYNTAX_BAD 0xC000003B
286 314 #define NT_STATUS_DATA_OVERRUN 0xC000003C
287 315 #define NT_STATUS_DATA_LATE_ERROR 0xC000003D
288 316 #define NT_STATUS_DATA_ERROR 0xC000003E
289 317 #define NT_STATUS_CRC_ERROR 0xC000003F
290 318 #define NT_STATUS_SECTION_TOO_BIG 0xC0000040
291 319 #define NT_STATUS_PORT_CONNECTION_REFUSED 0xC0000041
292 320 #define NT_STATUS_INVALID_PORT_HANDLE 0xC0000042
293 321 #define NT_STATUS_SHARING_VIOLATION 0xC0000043
294 322 #define NT_STATUS_QUOTA_EXCEEDED 0xC0000044
295 323 #define NT_STATUS_INVALID_PAGE_PROTECTION 0xC0000045
296 324 #define NT_STATUS_MUTANT_NOT_OWNED 0xC0000046
297 325 #define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED 0xC0000047
298 326 #define NT_STATUS_PORT_ALREADY_SET 0xC0000048
299 327 #define NT_STATUS_SECTION_NOT_IMAGE 0xC0000049
300 328 #define NT_STATUS_SUSPEND_COUNT_EXCEEDED 0xC000004A
301 329 #define NT_STATUS_THREAD_IS_TERMINATING 0xC000004B
302 330 #define NT_STATUS_BAD_WORKING_SET_LIMIT 0xC000004C
303 331 #define NT_STATUS_INCOMPATIBLE_FILE_MAP 0xC000004D
304 332 #define NT_STATUS_SECTION_PROTECTION 0xC000004E
305 333 #define NT_STATUS_EAS_NOT_SUPPORTED 0xC000004F
306 334 #define NT_STATUS_EA_TOO_LARGE 0xC0000050
307 335 #define NT_STATUS_NONEXISTENT_EA_ENTRY 0xC0000051
308 336 #define NT_STATUS_NO_EAS_ON_FILE 0xC0000052
309 337 #define NT_STATUS_EA_CORRUPT_ERROR 0xC0000053
310 338 #define NT_STATUS_FILE_LOCK_CONFLICT 0xC0000054
311 339 #define NT_STATUS_LOCK_NOT_GRANTED 0xC0000055
312 340 #define NT_STATUS_DELETE_PENDING 0xC0000056
313 341 #define NT_STATUS_CTL_FILE_NOT_SUPPORTED 0xC0000057
314 342 #define NT_STATUS_UNKNOWN_REVISION 0xC0000058
315 343 #define NT_STATUS_REVISION_MISMATCH 0xC0000059
316 344 #define NT_STATUS_INVALID_OWNER 0xC000005A
317 345 #define NT_STATUS_INVALID_PRIMARY_GROUP 0xC000005B
318 346 #define NT_STATUS_NO_IMPERSONATION_TOKEN 0xC000005C
319 347 #define NT_STATUS_CANT_DISABLE_MANDATORY 0xC000005D
320 348 #define NT_STATUS_NO_LOGON_SERVERS 0xC000005E
321 349 #define NT_STATUS_NO_SUCH_LOGON_SESSION 0xC000005F
322 350 #define NT_STATUS_NO_SUCH_PRIVILEGE 0xC0000060
323 351 #define NT_STATUS_PRIVILEGE_NOT_HELD 0xC0000061
324 352 #define NT_STATUS_INVALID_ACCOUNT_NAME 0xC0000062
325 353 #define NT_STATUS_USER_EXISTS 0xC0000063
326 354 #define NT_STATUS_NO_SUCH_USER 0xC0000064
327 355 #define NT_STATUS_GROUP_EXISTS 0xC0000065
328 356 #define NT_STATUS_NO_SUCH_GROUP 0xC0000066
329 357 #define NT_STATUS_MEMBER_IN_GROUP 0xC0000067
330 358 #define NT_STATUS_MEMBER_NOT_IN_GROUP 0xC0000068
331 359 #define NT_STATUS_LAST_ADMIN 0xC0000069
332 360 #define NT_STATUS_WRONG_PASSWORD 0xC000006A
333 361 #define NT_STATUS_ILL_FORMED_PASSWORD 0xC000006B
334 362 #define NT_STATUS_PASSWORD_RESTRICTION 0xC000006C
335 363 #define NT_STATUS_LOGON_FAILURE 0xC000006D
336 364 #define NT_STATUS_ACCOUNT_RESTRICTION 0xC000006E
337 365 #define NT_STATUS_INVALID_LOGON_HOURS 0xC000006F
338 366 #define NT_STATUS_INVALID_WORKSTATION 0xC0000070
339 367 #define NT_STATUS_PASSWORD_EXPIRED 0xC0000071
340 368 #define NT_STATUS_ACCOUNT_DISABLED 0xC0000072
341 369 #define NT_STATUS_NONE_MAPPED 0xC0000073
342 370 #define NT_STATUS_TOO_MANY_LUIDS_REQUESTED 0xC0000074
343 371 #define NT_STATUS_LUIDS_EXHAUSTED 0xC0000075
344 372 #define NT_STATUS_INVALID_SUB_AUTHORITY 0xC0000076
345 373 #define NT_STATUS_INVALID_ACL 0xC0000077
346 374 #define NT_STATUS_INVALID_SID 0xC0000078
347 375 #define NT_STATUS_INVALID_SECURITY_DESCR 0xC0000079
348 376 #define NT_STATUS_PROCEDURE_NOT_FOUND 0xC000007A
349 377 #define NT_STATUS_INVALID_IMAGE_FORMAT 0xC000007B
350 378 #define NT_STATUS_NO_TOKEN 0xC000007C
351 379 #define NT_STATUS_BAD_INHERITANCE_ACL 0xC000007D
352 380 #define NT_STATUS_RANGE_NOT_LOCKED 0xC000007E
353 381 #define NT_STATUS_DISK_FULL 0xC000007F
354 382 #define NT_STATUS_SERVER_DISABLED 0xC0000080
355 383 #define NT_STATUS_SERVER_NOT_DISABLED 0xC0000081
356 384 #define NT_STATUS_TOO_MANY_GUIDS_REQUESTED 0xC0000082
357 385 #define NT_STATUS_GUIDS_EXHAUSTED 0xC0000083
358 386 #define NT_STATUS_INVALID_ID_AUTHORITY 0xC0000084
359 387 #define NT_STATUS_AGENTS_EXHAUSTED 0xC0000085
360 388 #define NT_STATUS_INVALID_VOLUME_LABEL 0xC0000086
361 389 #define NT_STATUS_SECTION_NOT_EXTENDED 0xC0000087
362 390 #define NT_STATUS_NOT_MAPPED_DATA 0xC0000088
363 391 #define NT_STATUS_RESOURCE_DATA_NOT_FOUND 0xC0000089
364 392 #define NT_STATUS_RESOURCE_TYPE_NOT_FOUND 0xC000008A
365 393 #define NT_STATUS_RESOURCE_NAME_NOT_FOUND 0xC000008B
366 394 #define NT_STATUS_ARRAY_BOUNDS_EXCEEDED 0xC000008C
367 395 #define NT_STATUS_FLOAT_DENORMAL_OPERAND 0xC000008D
368 396 #define NT_STATUS_FLOAT_DIVIDE_BY_ZERO 0xC000008E
369 397 #define NT_STATUS_FLOAT_INEXACT_RESULT 0xC000008F
370 398 #define NT_STATUS_FLOAT_INVALID_OPERATION 0xC0000090
371 399 #define NT_STATUS_FLOAT_OVERFLOW 0xC0000091
372 400 #define NT_STATUS_FLOAT_STACK_CHECK 0xC0000092
373 401 #define NT_STATUS_FLOAT_UNDERFLOW 0xC0000093
374 402 #define NT_STATUS_INTEGER_DIVIDE_BY_ZERO 0xC0000094
375 403 #define NT_STATUS_INTEGER_OVERFLOW 0xC0000095
376 404 #define NT_STATUS_PRIVILEGED_INSTRUCTION 0xC0000096
377 405 #define NT_STATUS_TOO_MANY_PAGING_FILES 0xC0000097
378 406 #define NT_STATUS_FILE_INVALID 0xC0000098
379 407 #define NT_STATUS_ALLOTTED_SPACE_EXCEEDED 0xC0000099
380 408 #define NT_STATUS_INSUFFICIENT_RESOURCES 0xC000009A
381 409 #define NT_STATUS_DFS_EXIT_PATH_FOUND 0xC000009B
382 410 #define NT_STATUS_DEVICE_DATA_ERROR 0xC000009C
383 411 #define NT_STATUS_DEVICE_NOT_CONNECTED 0xC000009D
384 412 #define NT_STATUS_DEVICE_POWER_FAILURE 0xC000009E
385 413 #define NT_STATUS_FREE_VM_NOT_AT_BASE 0xC000009F
386 414 #define NT_STATUS_MEMORY_NOT_ALLOCATED 0xC00000A0
387 415 #define NT_STATUS_WORKING_SET_QUOTA 0xC00000A1
388 416 #define NT_STATUS_MEDIA_WRITE_PROTECTED 0xC00000A2
389 417 #define NT_STATUS_DEVICE_NOT_READY 0xC00000A3
390 418 #define NT_STATUS_INVALID_GROUP_ATTRIBUTES 0xC00000A4
391 419 #define NT_STATUS_BAD_IMPERSONATION_LEVEL 0xC00000A5
392 420 #define NT_STATUS_CANT_OPEN_ANONYMOUS 0xC00000A6
393 421 #define NT_STATUS_BAD_VALIDATION_CLASS 0xC00000A7
394 422 #define NT_STATUS_BAD_TOKEN_TYPE 0xC00000A8
395 423 #define NT_STATUS_BAD_MASTER_BOOT_RECORD 0xC00000A9
396 424 #define NT_STATUS_INSTRUCTION_MISALIGNMENT 0xC00000AA
397 425 #define NT_STATUS_INSTANCE_NOT_AVAILABLE 0xC00000AB
398 426 #define NT_STATUS_PIPE_NOT_AVAILABLE 0xC00000AC
399 427 #define NT_STATUS_INVALID_PIPE_STATE 0xC00000AD
400 428 #define NT_STATUS_PIPE_BUSY 0xC00000AE
401 429 #define NT_STATUS_ILLEGAL_FUNCTION 0xC00000AF
402 430 #define NT_STATUS_PIPE_DISCONNECTED 0xC00000B0
403 431 #define NT_STATUS_PIPE_CLOSING 0xC00000B1
404 432 #define NT_STATUS_PIPE_CONNECTED 0xC00000B2
405 433 #define NT_STATUS_PIPE_LISTENING 0xC00000B3
406 434 #define NT_STATUS_INVALID_READ_MODE 0xC00000B4
407 435 #define NT_STATUS_IO_TIMEOUT 0xC00000B5
408 436 #define NT_STATUS_FILE_FORCED_CLOSED 0xC00000B6
409 437 #define NT_STATUS_PROFILING_NOT_STARTED 0xC00000B7
410 438 #define NT_STATUS_PROFILING_NOT_STOPPED 0xC00000B8
411 439 #define NT_STATUS_COULD_NOT_INTERPRET 0xC00000B9
412 440 #define NT_STATUS_FILE_IS_A_DIRECTORY 0xC00000BA
413 441 #define NT_STATUS_NOT_SUPPORTED 0xC00000BB
414 442 #define NT_STATUS_REMOTE_NOT_LISTENING 0xC00000BC
415 443 #define NT_STATUS_DUPLICATE_NAME 0xC00000BD
416 444 #define NT_STATUS_BAD_NETWORK_PATH 0xC00000BE
417 445 #define NT_STATUS_NETWORK_BUSY 0xC00000BF
418 446 #define NT_STATUS_DEVICE_DOES_NOT_EXIST 0xC00000C0
419 447 #define NT_STATUS_TOO_MANY_COMMANDS 0xC00000C1
420 448 #define NT_STATUS_ADAPTER_HARDWARE_ERROR 0xC00000C2
421 449 #define NT_STATUS_INVALID_NETWORK_RESPONSE 0xC00000C3
422 450 #define NT_STATUS_UNEXPECTED_NETWORK_ERROR 0xC00000C4
423 451 #define NT_STATUS_BAD_REMOTE_ADAPTER 0xC00000C5
424 452 #define NT_STATUS_PRINT_QUEUE_FULL 0xC00000C6
425 453 #define NT_STATUS_NO_SPOOL_SPACE 0xC00000C7
426 454 #define NT_STATUS_PRINT_CANCELLED 0xC00000C8
427 455 #define NT_STATUS_NETWORK_NAME_DELETED 0xC00000C9
428 456 #define NT_STATUS_NETWORK_ACCESS_DENIED 0xC00000CA
429 457 #define NT_STATUS_BAD_DEVICE_TYPE 0xC00000CB
430 458 #define NT_STATUS_BAD_NETWORK_NAME 0xC00000CC
431 459 #define NT_STATUS_TOO_MANY_NAMES 0xC00000CD
432 460 #define NT_STATUS_TOO_MANY_SESSIONS 0xC00000CE
433 461 #define NT_STATUS_SHARING_PAUSED 0xC00000CF
434 462 #define NT_STATUS_REQUEST_NOT_ACCEPTED 0xC00000D0
435 463 #define NT_STATUS_REDIRECTOR_PAUSED 0xC00000D1
436 464 #define NT_STATUS_NET_WRITE_FAULT 0xC00000D2
437 465 #define NT_STATUS_PROFILING_AT_LIMIT 0xC00000D3
438 466 #define NT_STATUS_NOT_SAME_DEVICE 0xC00000D4
439 467 #define NT_STATUS_FILE_RENAMED 0xC00000D5
440 468 #define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED 0xC00000D6
441 469 #define NT_STATUS_NO_SECURITY_ON_OBJECT 0xC00000D7
442 470 #define NT_STATUS_CANT_WAIT 0xC00000D8
443 471 #define NT_STATUS_PIPE_EMPTY 0xC00000D9
444 472 #define NT_STATUS_CANT_ACCESS_DOMAIN_INFO 0xC00000DA
445 473 #define NT_STATUS_CANT_TERMINATE_SELF 0xC00000DB
446 474 #define NT_STATUS_INVALID_SERVER_STATE 0xC00000DC
447 475 #define NT_STATUS_INVALID_DOMAIN_STATE 0xC00000DD
448 476 #define NT_STATUS_INVALID_DOMAIN_ROLE 0xC00000DE
449 477 #define NT_STATUS_NO_SUCH_DOMAIN 0xC00000DF
450 478 #define NT_STATUS_DOMAIN_EXISTS 0xC00000E0
451 479 #define NT_STATUS_DOMAIN_LIMIT_EXCEEDED 0xC00000E1
452 480 #define NT_STATUS_OPLOCK_NOT_GRANTED 0xC00000E2
453 481 #define NT_STATUS_INVALID_OPLOCK_PROTOCOL 0xC00000E3
454 482 #define NT_STATUS_INTERNAL_DB_CORRUPTION 0xC00000E4
455 483 #define NT_STATUS_INTERNAL_ERROR 0xC00000E5
456 484 #define NT_STATUS_GENERIC_NOT_MAPPED 0xC00000E6
457 485 #define NT_STATUS_BAD_DESCRIPTOR_FORMAT 0xC00000E7
458 486 #define NT_STATUS_INVALID_USER_BUFFER 0xC00000E8
459 487 #define NT_STATUS_UNEXPECTED_IO_ERROR 0xC00000E9
460 488 #define NT_STATUS_UNEXPECTED_MM_CREATE_ERR 0xC00000EA
461 489 #define NT_STATUS_UNEXPECTED_MM_MAP_ERROR 0xC00000EB
462 490 #define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR 0xC00000EC
463 491 #define NT_STATUS_NOT_LOGON_PROCESS 0xC00000ED
464 492 #define NT_STATUS_LOGON_SESSION_EXISTS 0xC00000EE
465 493 #define NT_STATUS_INVALID_PARAMETER_1 0xC00000EF
466 494 #define NT_STATUS_INVALID_PARAMETER_2 0xC00000F0
467 495 #define NT_STATUS_INVALID_PARAMETER_3 0xC00000F1
468 496 #define NT_STATUS_INVALID_PARAMETER_4 0xC00000F2
469 497 #define NT_STATUS_INVALID_PARAMETER_5 0xC00000F3
470 498 #define NT_STATUS_INVALID_PARAMETER_6 0xC00000F4
471 499 #define NT_STATUS_INVALID_PARAMETER_7 0xC00000F5
472 500 #define NT_STATUS_INVALID_PARAMETER_8 0xC00000F6
473 501 #define NT_STATUS_INVALID_PARAMETER_9 0xC00000F7
474 502 #define NT_STATUS_INVALID_PARAMETER_10 0xC00000F8
475 503 #define NT_STATUS_INVALID_PARAMETER_11 0xC00000F9
476 504 #define NT_STATUS_INVALID_PARAMETER_12 0xC00000FA
477 505 #define NT_STATUS_REDIRECTOR_NOT_STARTED 0xC00000FB
478 506 #define NT_STATUS_REDIRECTOR_STARTED 0xC00000FC
479 507 #define NT_STATUS_STACK_OVERFLOW 0xC00000FD
480 508 #define NT_STATUS_NO_SUCH_PACKAGE 0xC00000FE
481 509 #define NT_STATUS_BAD_FUNCTION_TABLE 0xC00000FF
482 510 #define NT_STATUS_VARIABLE_NOT_FOUND 0xC0000100
483 511 #define NT_STATUS_DIRECTORY_NOT_EMPTY 0xC0000101
484 512 #define NT_STATUS_FILE_CORRUPT_ERROR 0xC0000102
485 513 #define NT_STATUS_NOT_A_DIRECTORY 0xC0000103
486 514 #define NT_STATUS_BAD_LOGON_SESSION_STATE 0xC0000104
|
↓ open down ↓ |
249 lines elided |
↑ open up ↑ |
487 515 #define NT_STATUS_LOGON_SESSION_COLLISION 0xC0000105
488 516 #define NT_STATUS_NAME_TOO_LONG 0xC0000106
489 517 #define NT_STATUS_FILES_OPEN 0xC0000107
490 518 #define NT_STATUS_CONNECTION_IN_USE 0xC0000108
491 519 #define NT_STATUS_MESSAGE_NOT_FOUND 0xC0000109
492 520 #define NT_STATUS_PROCESS_IS_TERMINATING 0xC000010A
493 521 #define NT_STATUS_INVALID_LOGON_TYPE 0xC000010B
494 522 #define NT_STATUS_NO_GUID_TRANSLATION 0xC000010C
495 523 #define NT_STATUS_CANNOT_IMPERSONATE 0xC000010D
496 524 #define NT_STATUS_IMAGE_ALREADY_LOADED 0xC000010E
497 -#define NT_STATUS_ABIOS_NOT_PRESENT 0xC000010F
498 -#define NT_STATUS_ABIOS_LID_NOT_EXIST 0xC0000110
499 -#define NT_STATUS_ABIOS_LID_ALREADY_OWNED 0xC0000111
500 -#define NT_STATUS_ABIOS_NOT_LID_OWNER 0xC0000112
501 -#define NT_STATUS_ABIOS_INVALID_COMMAND 0xC0000113
502 -#define NT_STATUS_ABIOS_INVALID_LID 0xC0000114
503 -#define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE 0xC0000115
504 -#define NT_STATUS_ABIOS_INVALID_SELECTOR 0xC0000116
525 +/* Old: NT_STATUS_ABIOS_... 0xC000010F - 0xC0000116 */
505 526 #define NT_STATUS_NO_LDT 0xC0000117
506 527 #define NT_STATUS_INVALID_LDT_SIZE 0xC0000118
507 528 #define NT_STATUS_INVALID_LDT_OFFSET 0xC0000119
508 529 #define NT_STATUS_INVALID_LDT_DESCRIPTOR 0xC000011A
509 530 #define NT_STATUS_INVALID_IMAGE_NE_FORMAT 0xC000011B
510 531 #define NT_STATUS_RXACT_INVALID_STATE 0xC000011C
511 532 #define NT_STATUS_RXACT_COMMIT_FAILURE 0xC000011D
512 533 #define NT_STATUS_MAPPED_FILE_SIZE_ZERO 0xC000011E
513 534 #define NT_STATUS_TOO_MANY_OPENED_FILES 0xC000011F
514 535 #define NT_STATUS_CANCELLED 0xC0000120
515 536 #define NT_STATUS_CANNOT_DELETE 0xC0000121
516 537 #define NT_STATUS_INVALID_COMPUTER_NAME 0xC0000122
517 538 #define NT_STATUS_FILE_DELETED 0xC0000123
518 539 #define NT_STATUS_SPECIAL_ACCOUNT 0xC0000124
519 540 #define NT_STATUS_SPECIAL_GROUP 0xC0000125
520 541 #define NT_STATUS_SPECIAL_USER 0xC0000126
521 542 #define NT_STATUS_MEMBERS_PRIMARY_GROUP 0xC0000127
522 543 #define NT_STATUS_FILE_CLOSED 0xC0000128
523 544 #define NT_STATUS_TOO_MANY_THREADS 0xC0000129
524 545 #define NT_STATUS_THREAD_NOT_IN_PROCESS 0xC000012A
525 546 #define NT_STATUS_TOKEN_ALREADY_IN_USE 0xC000012B
526 547 #define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED 0xC000012C
527 548 #define NT_STATUS_COMMITMENT_LIMIT 0xC000012D
528 549 #define NT_STATUS_INVALID_IMAGE_LE_FORMAT 0xC000012E
529 550 #define NT_STATUS_INVALID_IMAGE_NOT_MZ 0xC000012F
530 551 #define NT_STATUS_INVALID_IMAGE_PROTECT 0xC0000130
531 552 #define NT_STATUS_INVALID_IMAGE_WIN_16 0xC0000131
532 553 #define NT_STATUS_LOGON_SERVER_CONFLICT 0xC0000132
533 554 #define NT_STATUS_TIME_DIFFERENCE_AT_DC 0xC0000133
534 555 #define NT_STATUS_SYNCHRONIZATION_REQUIRED 0xC0000134
535 556 #define NT_STATUS_DLL_NOT_FOUND 0xC0000135
536 557 #define NT_STATUS_OPEN_FAILED 0xC0000136
537 558 #define NT_STATUS_IO_PRIVILEGE_FAILED 0xC0000137
538 559 #define NT_STATUS_ORDINAL_NOT_FOUND 0xC0000138
539 560 #define NT_STATUS_ENTRYPOINT_NOT_FOUND 0xC0000139
540 561 #define NT_STATUS_CONTROL_C_EXIT 0xC000013A
541 562 #define NT_STATUS_LOCAL_DISCONNECT 0xC000013B
542 563 #define NT_STATUS_REMOTE_DISCONNECT 0xC000013C
543 564 #define NT_STATUS_REMOTE_RESOURCES 0xC000013D
544 565 #define NT_STATUS_LINK_FAILED 0xC000013E
545 566 #define NT_STATUS_LINK_TIMEOUT 0xC000013F
546 567 #define NT_STATUS_INVALID_CONNECTION 0xC0000140
547 568 #define NT_STATUS_INVALID_ADDRESS 0xC0000141
548 569 #define NT_STATUS_DLL_INIT_FAILED 0xC0000142
549 570 #define NT_STATUS_MISSING_SYSTEMFILE 0xC0000143
550 571 #define NT_STATUS_UNHANDLED_EXCEPTION 0xC0000144
551 572 #define NT_STATUS_APP_INIT_FAILURE 0xC0000145
552 573 #define NT_STATUS_PAGEFILE_CREATE_FAILED 0xC0000146
553 574 #define NT_STATUS_NO_PAGEFILE 0xC0000147
554 575 #define NT_STATUS_INVALID_LEVEL 0xC0000148
555 576 #define NT_STATUS_WRONG_PASSWORD_CORE 0xC0000149
556 577 #define NT_STATUS_ILLEGAL_FLOAT_CONTEXT 0xC000014A
557 578 #define NT_STATUS_PIPE_BROKEN 0xC000014B
558 579 #define NT_STATUS_REGISTRY_CORRUPT 0xC000014C
559 580 #define NT_STATUS_REGISTRY_IO_FAILED 0xC000014D
560 581 #define NT_STATUS_NO_EVENT_PAIR 0xC000014E
561 582 #define NT_STATUS_UNRECOGNIZED_VOLUME 0xC000014F
562 583 #define NT_STATUS_SERIAL_NO_DEVICE_INITED 0xC0000150
563 584 #define NT_STATUS_NO_SUCH_ALIAS 0xC0000151
564 585 #define NT_STATUS_MEMBER_NOT_IN_ALIAS 0xC0000152
565 586 #define NT_STATUS_MEMBER_IN_ALIAS 0xC0000153
566 587 #define NT_STATUS_ALIAS_EXISTS 0xC0000154
567 588 #define NT_STATUS_LOGON_NOT_GRANTED 0xC0000155
568 589 #define NT_STATUS_TOO_MANY_SECRETS 0xC0000156
569 590 #define NT_STATUS_SECRET_TOO_LONG 0xC0000157
570 591 #define NT_STATUS_INTERNAL_DB_ERROR 0xC0000158
571 592 #define NT_STATUS_FULLSCREEN_MODE 0xC0000159
572 593 #define NT_STATUS_TOO_MANY_CONTEXT_IDS 0xC000015A
573 594 #define NT_STATUS_LOGON_TYPE_NOT_GRANTED 0xC000015B
574 595 #define NT_STATUS_NOT_REGISTRY_FILE 0xC000015C
575 596 #define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED 0xC000015D
576 597 #define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR 0xC000015E
577 598 #define NT_STATUS_FT_MISSING_MEMBER 0xC000015F
578 599 #define NT_STATUS_ILL_FORMED_SERVICE_ENTRY 0xC0000160
579 600 #define NT_STATUS_ILLEGAL_CHARACTER 0xC0000161
580 601 #define NT_STATUS_UNMAPPABLE_CHARACTER 0xC0000162
581 602 #define NT_STATUS_UNDEFINED_CHARACTER 0xC0000163
582 603 #define NT_STATUS_FLOPPY_VOLUME 0xC0000164
583 604 #define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND 0xC0000165
584 605 #define NT_STATUS_FLOPPY_WRONG_CYLINDER 0xC0000166
585 606 #define NT_STATUS_FLOPPY_UNKNOWN_ERROR 0xC0000167
586 607 #define NT_STATUS_FLOPPY_BAD_REGISTERS 0xC0000168
587 608 #define NT_STATUS_DISK_RECALIBRATE_FAILED 0xC0000169
588 609 #define NT_STATUS_DISK_OPERATION_FAILED 0xC000016A
589 610 #define NT_STATUS_DISK_RESET_FAILED 0xC000016B
590 611 #define NT_STATUS_SHARED_IRQ_BUSY 0xC000016C
591 612 #define NT_STATUS_FT_ORPHANING 0xC000016D
592 613 #define NT_STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT 0xC000016E
593 614 #define NT_STATUS_PARTITION_FAILURE 0xC0000172
594 615 #define NT_STATUS_INVALID_BLOCK_LENGTH 0xC0000173
595 616 #define NT_STATUS_DEVICE_NOT_PARTITIONED 0xC0000174
596 617 #define NT_STATUS_UNABLE_TO_LOCK_MEDIA 0xC0000175
597 618 #define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA 0xC0000176
598 619 #define NT_STATUS_EOM_OVERFLOW 0xC0000177
599 620 #define NT_STATUS_NO_MEDIA 0xC0000178
600 621 #define NT_STATUS_NO_SUCH_MEMBER 0xC000017A
601 622 #define NT_STATUS_INVALID_MEMBER 0xC000017B
602 623 #define NT_STATUS_KEY_DELETED 0xC000017C
603 624 #define NT_STATUS_NO_LOG_SPACE 0xC000017D
604 625 #define NT_STATUS_TOO_MANY_SIDS 0xC000017E
605 626 #define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED 0xC000017F
606 627 #define NT_STATUS_KEY_HAS_CHILDREN 0xC0000180
607 628 #define NT_STATUS_CHILD_MUST_BE_VOLATILE 0xC0000181
608 629 #define NT_STATUS_DEVICE_CONFIGURATION_ERROR 0xC0000182
609 630 #define NT_STATUS_DRIVER_INTERNAL_ERROR 0xC0000183
610 631 #define NT_STATUS_INVALID_DEVICE_STATE 0xC0000184
611 632 #define NT_STATUS_IO_DEVICE_ERROR 0xC0000185
612 633 #define NT_STATUS_DEVICE_PROTOCOL_ERROR 0xC0000186
613 634 #define NT_STATUS_BACKUP_CONTROLLER 0xC0000187
614 635 #define NT_STATUS_LOG_FILE_FULL 0xC0000188
615 636 #define NT_STATUS_TOO_LATE 0xC0000189
616 637 #define NT_STATUS_NO_TRUST_LSA_SECRET 0xC000018A
617 638 #define NT_STATUS_NO_TRUST_SAM_ACCOUNT 0xC000018B
618 639 #define NT_STATUS_TRUSTED_DOMAIN_FAILURE 0xC000018C
619 640 #define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE 0xC000018D
620 641 #define NT_STATUS_EVENTLOG_FILE_CORRUPT 0xC000018E
621 642 #define NT_STATUS_EVENTLOG_CANT_START 0xC000018F
622 643 #define NT_STATUS_TRUST_FAILURE 0xC0000190
623 644 #define NT_STATUS_MUTANT_LIMIT_EXCEEDED 0xC0000191
624 645 #define NT_STATUS_NETLOGON_NOT_STARTED 0xC0000192
|
↓ open down ↓ |
110 lines elided |
↑ open up ↑ |
625 646 #define NT_STATUS_ACCOUNT_EXPIRED 0xC0000193
626 647 #define NT_STATUS_POSSIBLE_DEADLOCK 0xC0000194
627 648 #define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT 0xC0000195
628 649 #define NT_STATUS_REMOTE_SESSION_LIMIT 0xC0000196
629 650 #define NT_STATUS_EVENTLOG_FILE_CHANGED 0xC0000197
630 651 #define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 0xC0000198
631 652 #define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT 0xC0000199
632 653 #define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT 0xC000019A
633 654 #define NT_STATUS_DOMAIN_TRUST_INCONSISTENT 0xC000019B
634 655 #define NT_STATUS_FS_DRIVER_REQUIRED 0xC000019C
656 +#define NT_STATUS_IMAGE_ALREADY_LOADED_AS_DLL 0xC000019D
657 +/* Was: NT_STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING */
658 +#define NT_STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_SETTING 0xC000019E
635 659 #define NT_STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME 0xC000019F
660 +#define NT_STATUS_SECURITY_STREAM_IS_INCONSISTENT 0xC00001A0
661 +#define NT_STATUS_INVALID_LOCK_RANGE 0xC00001A1
662 +#define NT_STATUS_INVALID_ACE_CONDITION 0xC00001A2
663 +#define NT_STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT 0xC00001A3
664 +#define NT_STATUS_NOTIFICATION_GUID_ALREADY_DEFINED 0xC00001A4
665 +#define NT_STATUS_NETWORK_OPEN_RESTRICTION 0xC0000201
636 666 #define NT_STATUS_NO_USER_SESSION_KEY 0xC0000202
637 667 #define NT_STATUS_USER_SESSION_DELETED 0xC0000203
638 668 #define NT_STATUS_RESOURCE_LANG_NOT_FOUND 0xC0000204
639 669 #define NT_STATUS_INSUFF_SERVER_RESOURCES 0xC0000205
640 670 #define NT_STATUS_INVALID_BUFFER_SIZE 0xC0000206
641 671 #define NT_STATUS_INVALID_ADDRESS_COMPONENT 0xC0000207
642 672 #define NT_STATUS_INVALID_ADDRESS_WILDCARD 0xC0000208
643 673 #define NT_STATUS_TOO_MANY_ADDRESSES 0xC0000209
644 674 #define NT_STATUS_ADDRESS_ALREADY_EXISTS 0xC000020A
645 675 #define NT_STATUS_ADDRESS_CLOSED 0xC000020B
646 676 #define NT_STATUS_CONNECTION_DISCONNECTED 0xC000020C
647 677 #define NT_STATUS_CONNECTION_RESET 0xC000020D
648 678 #define NT_STATUS_TOO_MANY_NODES 0xC000020E
649 679 #define NT_STATUS_TRANSACTION_ABORTED 0xC000020F
650 680 #define NT_STATUS_TRANSACTION_TIMED_OUT 0xC0000210
651 681 #define NT_STATUS_TRANSACTION_NO_RELEASE 0xC0000211
652 682 #define NT_STATUS_TRANSACTION_NO_MATCH 0xC0000212
653 683 #define NT_STATUS_TRANSACTION_RESPONDED 0xC0000213
654 684 #define NT_STATUS_TRANSACTION_INVALID_ID 0xC0000214
655 685 #define NT_STATUS_TRANSACTION_INVALID_TYPE 0xC0000215
656 686 #define NT_STATUS_NOT_SERVER_SESSION 0xC0000216
657 687 #define NT_STATUS_NOT_CLIENT_SESSION 0xC0000217
658 688 #define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE 0xC0000218
659 689 #define NT_STATUS_DEBUG_ATTACH_FAILED 0xC0000219
660 690 #define NT_STATUS_SYSTEM_PROCESS_TERMINATED 0xC000021A
661 691 #define NT_STATUS_DATA_NOT_ACCEPTED 0xC000021B
662 692 #define NT_STATUS_NO_BROWSER_SERVERS_FOUND 0xC000021C
663 693 #define NT_STATUS_VDM_HARD_ERROR 0xC000021D
664 694 #define NT_STATUS_DRIVER_CANCEL_TIMEOUT 0xC000021E
665 695 #define NT_STATUS_REPLY_MESSAGE_MISMATCH 0xC000021F
666 696 #define NT_STATUS_MAPPED_ALIGNMENT 0xC0000220
667 697 #define NT_STATUS_IMAGE_CHECKSUM_MISMATCH 0xC0000221
668 698 #define NT_STATUS_LOST_WRITEBEHIND_DATA 0xC0000222
669 699 #define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID 0xC0000223
670 700 #define NT_STATUS_PASSWORD_MUST_CHANGE 0xC0000224
671 701 #define NT_STATUS_NOT_FOUND 0xC0000225
672 702 #define NT_STATUS_NOT_TINY_STREAM 0xC0000226
673 703 #define NT_STATUS_RECOVERY_FAILURE 0xC0000227
674 704 #define NT_STATUS_STACK_OVERFLOW_READ 0xC0000228
675 705 #define NT_STATUS_FAIL_CHECK 0xC0000229
676 706 #define NT_STATUS_DUPLICATE_OBJECTID 0xC000022A
677 707 #define NT_STATUS_OBJECTID_EXISTS 0xC000022B
678 708 #define NT_STATUS_CONVERT_TO_LARGE 0xC000022C
679 709 #define NT_STATUS_RETRY 0xC000022D
680 710 #define NT_STATUS_FOUND_OUT_OF_SCOPE 0xC000022E
681 711 #define NT_STATUS_ALLOCATE_BUCKET 0xC000022F
682 712 #define NT_STATUS_PROPSET_NOT_FOUND 0xC0000230
683 713 #define NT_STATUS_MARSHALL_OVERFLOW 0xC0000231
684 714 #define NT_STATUS_INVALID_VARIANT 0xC0000232
685 715 #define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND 0xC0000233
686 716 #define NT_STATUS_ACCOUNT_LOCKED_OUT 0xC0000234
687 717 #define NT_STATUS_HANDLE_NOT_CLOSABLE 0xC0000235
688 718 #define NT_STATUS_CONNECTION_REFUSED 0xC0000236
689 719 #define NT_STATUS_GRACEFUL_DISCONNECT 0xC0000237
690 720 #define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED 0xC0000238
691 721 #define NT_STATUS_ADDRESS_NOT_ASSOCIATED 0xC0000239
692 722 #define NT_STATUS_CONNECTION_INVALID 0xC000023A
693 723 #define NT_STATUS_CONNECTION_ACTIVE 0xC000023B
694 724 #define NT_STATUS_NETWORK_UNREACHABLE 0xC000023C
695 725 #define NT_STATUS_HOST_UNREACHABLE 0xC000023D
696 726 #define NT_STATUS_PROTOCOL_UNREACHABLE 0xC000023E
697 727 #define NT_STATUS_PORT_UNREACHABLE 0xC000023F
698 728 #define NT_STATUS_REQUEST_ABORTED 0xC0000240
699 729 #define NT_STATUS_CONNECTION_ABORTED 0xC0000241
700 730 #define NT_STATUS_BAD_COMPRESSION_BUFFER 0xC0000242
701 731 #define NT_STATUS_USER_MAPPED_FILE 0xC0000243
702 732 #define NT_STATUS_AUDIT_FAILED 0xC0000244
703 733 #define NT_STATUS_TIMER_RESOLUTION_NOT_SET 0xC0000245
704 734 #define NT_STATUS_CONNECTION_COUNT_LIMIT 0xC0000246
705 735 #define NT_STATUS_LOGIN_TIME_RESTRICTION 0xC0000247
706 736 #define NT_STATUS_LOGIN_WKSTA_RESTRICTION 0xC0000248
707 737 #define NT_STATUS_IMAGE_MP_UP_MISMATCH 0xC0000249
708 738 #define NT_STATUS_INSUFFICIENT_LOGON_INFO 0xC0000250
709 739 #define NT_STATUS_BAD_DLL_ENTRYPOINT 0xC0000251
710 740 #define NT_STATUS_BAD_SERVICE_ENTRYPOINT 0xC0000252
711 741 #define NT_STATUS_LPC_REPLY_LOST 0xC0000253
712 742 #define NT_STATUS_IP_ADDRESS_CONFLICT1 0xC0000254
713 743 #define NT_STATUS_IP_ADDRESS_CONFLICT2 0xC0000255
714 744 #define NT_STATUS_REGISTRY_QUOTA_LIMIT 0xC0000256
715 745 #define NT_STATUS_PATH_NOT_COVERED 0xC0000257
716 746 #define NT_STATUS_NO_CALLBACK_ACTIVE 0xC0000258
717 747 #define NT_STATUS_LICENSE_QUOTA_EXCEEDED 0xC0000259
718 748 #define NT_STATUS_PWD_TOO_SHORT 0xC000025A
719 749 #define NT_STATUS_PWD_TOO_RECENT 0xC000025B
720 750 #define NT_STATUS_PWD_HISTORY_CONFLICT 0xC000025C
721 751 #define NT_STATUS_PLUGPLAY_NO_DEVICE 0xC000025E
722 752 #define NT_STATUS_UNSUPPORTED_COMPRESSION 0xC000025F
723 753 #define NT_STATUS_INVALID_HW_PROFILE 0xC0000260
724 754 #define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH 0xC0000261
725 755 #define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND 0xC0000262
726 756 #define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND 0xC0000263
727 757 #define NT_STATUS_RESOURCE_NOT_OWNED 0xC0000264
728 758 #define NT_STATUS_TOO_MANY_LINKS 0xC0000265
729 759 #define NT_STATUS_QUOTA_LIST_INCONSISTENT 0xC0000266
730 760 #define NT_STATUS_FILE_IS_OFFLINE 0xC0000267
731 761 #define NT_STATUS_EVALUATION_EXPIRATION 0xC0000268
732 762 #define NT_STATUS_ILLEGAL_DLL_RELOCATION 0xC0000269
733 763 #define NT_STATUS_LICENSE_VIOLATION 0xC000026A
734 764 #define NT_STATUS_DLL_INIT_FAILED_LOGOFF 0xC000026B
735 765 #define NT_STATUS_DRIVER_UNABLE_TO_LOAD 0xC000026C
736 766 #define NT_STATUS_DFS_UNAVAILABLE 0xC000026D
737 767 #define NT_STATUS_VOLUME_DISMOUNTED 0xC000026E
738 768 #define NT_STATUS_WX86_INTERNAL_ERROR 0xC000026F
739 769 #define NT_STATUS_WX86_FLOAT_STACK_CHECK 0xC0000270
740 770 #define NT_STATUS_VALIDATE_CONTINUE 0xC0000271
741 771 #define NT_STATUS_NO_MATCH 0xC0000272
742 772 #define NT_STATUS_NO_MORE_MATCHES 0xC0000273
743 773 #define NT_STATUS_NOT_A_REPARSE_POINT 0xC0000275
744 774 #define NT_STATUS_IO_REPARSE_TAG_INVALID 0xC0000276
745 775 #define NT_STATUS_IO_REPARSE_TAG_MISMATCH 0xC0000277
|
↓ open down ↓ |
100 lines elided |
↑ open up ↑ |
746 776 #define NT_STATUS_IO_REPARSE_DATA_INVALID 0xC0000278
747 777 #define NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED 0xC0000279
748 778 #define NT_STATUS_REPARSE_POINT_NOT_RESOLVED 0xC0000280
749 779 #define NT_STATUS_DIRECTORY_IS_A_REPARSE_POINT 0xC0000281
750 780 #define NT_STATUS_RANGE_LIST_CONFLICT 0xC0000282
751 781 #define NT_STATUS_SOURCE_ELEMENT_EMPTY 0xC0000283
752 782 #define NT_STATUS_DESTINATION_ELEMENT_FULL 0xC0000284
753 783 #define NT_STATUS_ILLEGAL_ELEMENT_ADDRESS 0xC0000285
754 784 #define NT_STATUS_MAGAZINE_NOT_PRESENT 0xC0000286
755 785 #define NT_STATUS_REINITIALIZATION_NEEDED 0xC0000287
756 -#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288
757 -#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000289
786 +/* NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288 */
787 +/* NT_STATUS_DEVICE_DOOR_OPEN 0x80000289 */
758 788 #define NT_STATUS_ENCRYPTION_FAILED 0xC000028A
759 789 #define NT_STATUS_DECRYPTION_FAILED 0xC000028B
760 790 #define NT_STATUS_RANGE_NOT_FOUND 0xC000028C
761 791 #define NT_STATUS_NO_RECOVERY_POLICY 0xC000028D
762 792 #define NT_STATUS_NO_EFS 0xC000028E
763 793 #define NT_STATUS_WRONG_EFS 0xC000028F
764 794 #define NT_STATUS_NO_USER_KEYS 0xC0000290
765 795 #define NT_STATUS_FILE_NOT_ENCRYPTED 0xC0000291
766 796 #define NT_STATUS_NOT_EXPORT_FORMAT 0xC0000292
767 797 #define NT_STATUS_FILE_ENCRYPTED 0xC0000293
768 -#define NT_STATUS_WAKE_SYSTEM 0x40000294
798 +/* NT_STATUS_WAKE_SYSTEM 0x40000294 */
769 799 #define NT_STATUS_WMI_GUID_NOT_FOUND 0xC0000295
770 800 #define NT_STATUS_WMI_INSTANCE_NOT_FOUND 0xC0000296
771 801 #define NT_STATUS_WMI_ITEMID_NOT_FOUND 0xC0000297
772 802 #define NT_STATUS_WMI_TRY_AGAIN 0xC0000298
773 803 #define NT_STATUS_SHARED_POLICY 0xC0000299
774 804 #define NT_STATUS_POLICY_OBJECT_NOT_FOUND 0xC000029A
775 805 #define NT_STATUS_POLICY_ONLY_IN_DS 0xC000029B
776 806 #define NT_STATUS_VOLUME_NOT_UPGRADED 0xC000029C
777 807 #define NT_STATUS_REMOTE_STORAGE_NOT_ACTIVE 0xC000029D
778 808 #define NT_STATUS_REMOTE_STORAGE_MEDIA_ERROR 0xC000029E
779 809 #define NT_STATUS_NO_TRACKING_SERVICE 0xC000029F
780 810 #define NT_STATUS_SERVER_SID_MISMATCH 0xC00002A0
781 811 #define NT_STATUS_DS_NO_ATTRIBUTE_OR_VALUE 0xC00002A1
782 812 #define NT_STATUS_DS_INVALID_ATTRIBUTE_SYNTAX 0xC00002A2
783 813 #define NT_STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED 0xC00002A3
784 814 #define NT_STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS 0xC00002A4
785 815 #define NT_STATUS_DS_BUSY 0xC00002A5
786 816 #define NT_STATUS_DS_UNAVAILABLE 0xC00002A6
787 817 #define NT_STATUS_DS_NO_RIDS_ALLOCATED 0xC00002A7
788 818 #define NT_STATUS_DS_NO_MORE_RIDS 0xC00002A8
789 819 #define NT_STATUS_DS_INCORRECT_ROLE_OWNER 0xC00002A9
790 820 #define NT_STATUS_DS_RIDMGR_INIT_ERROR 0xC00002AA
791 821 #define NT_STATUS_DS_OBJ_CLASS_VIOLATION 0xC00002AB
792 822 #define NT_STATUS_DS_CANT_ON_NON_LEAF 0xC00002AC
793 823 #define NT_STATUS_DS_CANT_ON_RDN 0xC00002AD
794 824 #define NT_STATUS_DS_CANT_MOD_OBJ_CLASS 0xC00002AE
795 825 #define NT_STATUS_DS_CROSS_DOM_MOVE_FAILED 0xC00002AF
796 826 #define NT_STATUS_DS_GC_NOT_AVAILABLE 0xC00002B0
797 827 #define NT_STATUS_DIRECTORY_SERVICE_REQUIRED 0xC00002B1
798 828 #define NT_STATUS_REPARSE_ATTRIBUTE_CONFLICT 0xC00002B2
799 829 #define NT_STATUS_CANT_ENABLE_DENY_ONLY 0xC00002B3
800 830 #define NT_STATUS_FLOAT_MULTIPLE_FAULTS 0xC00002B4
801 831 #define NT_STATUS_FLOAT_MULTIPLE_TRAPS 0xC00002B5
802 832 #define NT_STATUS_DEVICE_REMOVED 0xC00002B6
803 833 #define NT_STATUS_JOURNAL_DELETE_IN_PROGRESS 0xC00002B7
804 834 #define NT_STATUS_JOURNAL_NOT_ACTIVE 0xC00002B8
805 835 #define NT_STATUS_NOINTERFACE 0xC00002B9
806 836 #define NT_STATUS_DS_ADMIN_LIMIT_EXCEEDED 0xC00002C1
807 837 #define NT_STATUS_DRIVER_FAILED_SLEEP 0xC00002C2
808 838 #define NT_STATUS_MUTUAL_AUTHENTICATION_FAILED 0xC00002C3
809 839 #define NT_STATUS_CORRUPT_SYSTEM_FILE 0xC00002C4
810 840 #define NT_STATUS_DATATYPE_MISALIGNMENT_ERROR 0xC00002C5
811 841 #define NT_STATUS_WMI_READ_ONLY 0xC00002C6
812 842 #define NT_STATUS_WMI_SET_FAILURE 0xC00002C7
813 843 #define NT_STATUS_COMMITMENT_MINIMUM 0xC00002C8
814 844 #define NT_STATUS_REG_NAT_CONSUMPTION 0xC00002C9
815 845 #define NT_STATUS_TRANSPORT_FULL 0xC00002CA
816 846 #define NT_STATUS_DS_SAM_INIT_FAILURE 0xC00002CB
817 847 #define NT_STATUS_ONLY_IF_CONNECTED 0xC00002CC
818 848 #define NT_STATUS_DS_SENSITIVE_GROUP_VIOLATION 0xC00002CD
819 849 #define NT_STATUS_PNP_RESTART_ENUMERATION 0xC00002CE
820 850 #define NT_STATUS_JOURNAL_ENTRY_DELETED 0xC00002CF
821 851 #define NT_STATUS_DS_CANT_MOD_PRIMARYGROUPID 0xC00002D0
822 852 #define NT_STATUS_SYSTEM_IMAGE_BAD_SIGNATURE 0xC00002D1
823 853 #define NT_STATUS_PNP_REBOOT_REQUIRED 0xC00002D2
824 854 #define NT_STATUS_POWER_STATE_INVALID 0xC00002D3
825 855 #define NT_STATUS_DS_INVALID_GROUP_TYPE 0xC00002D4
826 856 #define NT_STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN 0xC00002D5
827 857 #define NT_STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN 0xC00002D6
828 858 #define NT_STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER 0xC00002D7
829 859 #define NT_STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER 0xC00002D8
830 860 #define NT_STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER 0xC00002D9
831 861 #define NT_STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER 0xC00002DA
832 862 #define NT_STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER 0xC00002DB
833 863 #define NT_STATUS_DS_HAVE_PRIMARY_MEMBERS 0xC00002DC
834 864 #define NT_STATUS_WMI_NOT_SUPPORTED 0xC00002DD
835 865 #define NT_STATUS_INSUFFICIENT_POWER 0xC00002DE
836 866 #define NT_STATUS_SAM_NEED_BOOTKEY_PASSWORD 0xC00002DF
837 867 #define NT_STATUS_SAM_NEED_BOOTKEY_FLOPPY 0xC00002E0
838 868 #define NT_STATUS_DS_CANT_START 0xC00002E1
839 869 #define NT_STATUS_DS_INIT_FAILURE 0xC00002E2
840 870 #define NT_STATUS_SAM_INIT_FAILURE 0xC00002E3
841 871 #define NT_STATUS_DS_GC_REQUIRED 0xC00002E4
842 872 #define NT_STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY 0xC00002E5
843 873 #define NT_STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS 0xC00002E6
844 874 #define NT_STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED 0xC00002E7
845 875 #define NT_STATUS_MULTIPLE_FAULT_VIOLATION 0xC00002E8
846 876 #define NT_STATUS_CURRENT_DOMAIN_NOT_ALLOWED 0xC00002E9
847 877 #define NT_STATUS_CANNOT_MAKE 0xC00002EA
848 878 #define NT_STATUS_SYSTEM_SHUTDOWN 0xC00002EB
849 879 #define NT_STATUS_DS_INIT_FAILURE_CONSOLE 0xC00002EC
850 880 #define NT_STATUS_DS_SAM_INIT_FAILURE_CONSOLE 0xC00002ED
851 881 #define NT_STATUS_UNFINISHED_CONTEXT_DELETED 0xC00002EE
852 882 #define NT_STATUS_NO_TGT_REPLY 0xC00002EF
853 883 #define NT_STATUS_OBJECTID_NOT_FOUND 0xC00002F0
854 884 #define NT_STATUS_NO_IP_ADDRESSES 0xC00002F1
855 885 #define NT_STATUS_WRONG_CREDENTIAL_HANDLE 0xC00002F2
856 886 #define NT_STATUS_CRYPTO_SYSTEM_INVALID 0xC00002F3
857 887 #define NT_STATUS_MAX_REFERRALS_EXCEEDED 0xC00002F4
858 888 #define NT_STATUS_MUST_BE_KDC 0xC00002F5
859 889 #define NT_STATUS_STRONG_CRYPTO_NOT_SUPPORTED 0xC00002F6
860 890 #define NT_STATUS_TOO_MANY_PRINCIPALS 0xC00002F7
861 891 #define NT_STATUS_NO_PA_DATA 0xC00002F8
862 892 #define NT_STATUS_PKINIT_NAME_MISMATCH 0xC00002F9
863 893 #define NT_STATUS_SMARTCARD_LOGON_REQUIRED 0xC00002FA
864 894 #define NT_STATUS_KDC_INVALID_REQUEST 0xC00002FB
865 895 #define NT_STATUS_KDC_UNABLE_TO_REFER 0xC00002FC
866 896 #define NT_STATUS_KDC_UNKNOWN_ETYPE 0xC00002FD
867 897 #define NT_STATUS_SHUTDOWN_IN_PROGRESS 0xC00002FE
868 898 #define NT_STATUS_SERVER_SHUTDOWN_IN_PROGRESS 0xC00002FF
869 899 #define NT_STATUS_NOT_SUPPORTED_ON_SBS 0xC0000300
870 900 #define NT_STATUS_WMI_GUID_DISCONNECTED 0xC0000301
871 901 #define NT_STATUS_WMI_ALREADY_DISABLED 0xC0000302
872 902 #define NT_STATUS_WMI_ALREADY_ENABLED 0xC0000303
873 903 #define NT_STATUS_MFT_TOO_FRAGMENTED 0xC0000304
874 904 #define NT_STATUS_COPY_PROTECTION_FAILURE 0xC0000305
875 905 #define NT_STATUS_CSS_AUTHENTICATION_FAILURE 0xC0000306
876 906 #define NT_STATUS_CSS_KEY_NOT_PRESENT 0xC0000307
877 907 #define NT_STATUS_CSS_KEY_NOT_ESTABLISHED 0xC0000308
878 908 #define NT_STATUS_CSS_SCRAMBLED_SECTOR 0xC0000309
879 909 #define NT_STATUS_CSS_REGION_MISMATCH 0xC000030A
880 910 #define NT_STATUS_CSS_RESETS_EXHAUSTED 0xC000030B
881 911 #define NT_STATUS_PKINIT_FAILURE 0xC0000320
882 912 #define NT_STATUS_SMARTCARD_SUBSYSTEM_FAILURE 0xC0000321
883 913 #define NT_STATUS_NO_KERB_KEY 0xC0000322
884 914 #define NT_STATUS_HOST_DOWN 0xC0000350
885 915 #define NT_STATUS_UNSUPPORTED_PREAUTH 0xC0000351
886 916 #define NT_STATUS_EFS_ALG_BLOB_TOO_BIG 0xC0000352
887 917 #define NT_STATUS_PORT_NOT_SET 0xC0000353
888 918 #define NT_STATUS_DEBUGGER_INACTIVE 0xC0000354
889 919 #define NT_STATUS_DS_VERSION_CHECK_FAILURE 0xC0000355
890 920 #define NT_STATUS_AUDITING_DISABLED 0xC0000356
891 921 #define NT_STATUS_PRENT4_MACHINE_ACCOUNT 0xC0000357
892 922 #define NT_STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER 0xC0000358
893 923 #define NT_STATUS_INVALID_IMAGE_WIN_32 0xC0000359
894 924 #define NT_STATUS_INVALID_IMAGE_WIN_64 0xC000035A
895 925 #define NT_STATUS_BAD_BINDINGS 0xC000035B
|
↓ open down ↓ |
117 lines elided |
↑ open up ↑ |
896 926 #define NT_STATUS_NETWORK_SESSION_EXPIRED 0xC000035C
897 927 #define NT_STATUS_APPHELP_BLOCK 0xC000035D
898 928 #define NT_STATUS_ALL_SIDS_FILTERED 0xC000035E
899 929 #define NT_STATUS_NOT_SAFE_MODE_DRIVER 0xC000035F
900 930 #define NT_STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT 0xC0000361
901 931 #define NT_STATUS_ACCESS_DISABLED_BY_POLICY_PATH 0xC0000362
902 932 #define NT_STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER 0xC0000363
903 933 #define NT_STATUS_ACCESS_DISABLED_BY_POLICY_OTHER 0xC0000364
904 934 #define NT_STATUS_FAILED_DRIVER_ENTRY 0xC0000365
905 935 #define NT_STATUS_DEVICE_ENUMERATION_ERROR 0xC0000366
906 -#define NT_STATUS_WAIT_FOR_OPLOCK 0x00000367
936 +/* NT_STATUS_WAIT_FOR_OPLOCK 0x00000367 */
907 937 #define NT_STATUS_MOUNT_POINT_NOT_RESOLVED 0xC0000368
908 938 #define NT_STATUS_INVALID_DEVICE_OBJECT_PARAMETER 0xC0000369
909 939 #define NT_STATUS_MCA_OCCURED 0xC000036A
910 940 #define NT_STATUS_DRIVER_BLOCKED_CRITICAL 0xC000036B
911 941 #define NT_STATUS_DRIVER_BLOCKED 0xC000036C
912 942 #define NT_STATUS_DRIVER_DATABASE_ERROR 0xC000036D
913 943 #define NT_STATUS_SYSTEM_HIVE_TOO_LARGE 0xC000036E
914 944 #define NT_STATUS_INVALID_IMPORT_OF_NON_DLL 0xC000036F
915 -#define NT_STATUS_DS_SHUTTING_DOWN 0x40000370
945 +/* NT_STATUS_DS_SHUTTING_DOWN 0x40000370 */
946 +#define NT_STATUS_NO_SECRETS 0xC0000371
947 +#define NT_STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY 0xC0000372
948 +#define NT_STATUS_FAILED_STACK_SWITCH 0xC0000373
949 +#define NT_STATUS_HEAP_CORRUPTION 0xC0000374
916 950 #define NT_STATUS_SMARTCARD_WRONG_PIN 0xC0000380
917 951 #define NT_STATUS_SMARTCARD_CARD_BLOCKED 0xC0000381
918 952 #define NT_STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED 0xC0000382
919 953 #define NT_STATUS_SMARTCARD_NO_CARD 0xC0000383
920 954 #define NT_STATUS_SMARTCARD_NO_KEY_CONTAINER 0xC0000384
921 955 #define NT_STATUS_SMARTCARD_NO_CERTIFICATE 0xC0000385
922 956 #define NT_STATUS_SMARTCARD_NO_KEYSET 0xC0000386
923 957 #define NT_STATUS_SMARTCARD_IO_ERROR 0xC0000387
924 958 #define NT_STATUS_DOWNGRADE_DETECTED 0xC0000388
925 959 #define NT_STATUS_SMARTCARD_CERT_REVOKED 0xC0000389
926 960 #define NT_STATUS_ISSUING_CA_UNTRUSTED 0xC000038A
927 961 #define NT_STATUS_REVOCATION_OFFLINE_C 0xC000038B
928 962 #define NT_STATUS_PKINIT_CLIENT_FAILURE 0xC000038C
929 963 #define NT_STATUS_SMARTCARD_CERT_EXPIRED 0xC000038D
930 964 #define NT_STATUS_DRIVER_FAILED_PRIOR_UNLOAD 0xC000038E
965 +#define NT_STATUS_SMARTCARD_SILENT_CONTEXT 0xC000038F
966 +#define NT_STATUS_PER_USER_TRUST_QUOTA_EXCEEDED 0xC0000401
967 +#define NT_STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED 0xC0000402
968 +#define NT_STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED 0xC0000403
969 +#define NT_STATUS_DS_NAME_NOT_UNIQUE 0xC0000404
970 +#define NT_STATUS_DS_DUPLICATE_ID_FOUND 0xC0000405
971 +#define NT_STATUS_DS_GROUP_CONVERSION_ERROR 0xC0000406
972 +#define NT_STATUS_VOLSNAP_PREPARE_HIBERNATE 0xC0000407
973 +#define NT_STATUS_USER2USER_REQUIRED 0xC0000408
974 +#define NT_STATUS_STACK_BUFFER_OVERRUN 0xC0000409
975 +#define NT_STATUS_NO_S4U_PROT_SUPPORT 0xC000040A
976 +#define NT_STATUS_CROSSREALM_DELEGATION_FAILURE 0xC000040B
977 +#define NT_STATUS_REVOCATION_OFFLINE_KDC 0xC000040C
978 +#define NT_STATUS_ISSUING_CA_UNTRUSTED_KDC 0xC000040D
979 +#define NT_STATUS_KDC_CERT_EXPIRED 0xC000040E
980 +#define NT_STATUS_KDC_CERT_REVOKED 0xC000040F
981 +#define NT_STATUS_PARAMETER_QUOTA_EXCEEDED 0xC0000410
982 +#define NT_STATUS_HIBERNATION_FAILURE 0xC0000411
983 +#define NT_STATUS_DELAY_LOAD_FAILED 0xC0000412
984 +#define NT_STATUS_AUTHENTICATION_FIREWALL_FAILED 0xC0000413
985 +#define NT_STATUS_VDM_DISALLOWED 0xC0000414
986 +#define NT_STATUS_HUNG_DISPLAY_DRIVER_THREAD 0xC0000415
987 +/* Was: NT_STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE */
988 +#define NT_STATUS_INSUFFICIENT_RESOURCE_FOR_SHARED_SECTION_SIZE 0xC0000416
989 +#define NT_STATUS_INVALID_CRUNTIME_PARAMETER 0xC0000417
990 +#define NT_STATUS_NTLM_BLOCKED 0xC0000418
991 +#define NT_STATUS_DS_SRC_SID_EXISTS_IN_FOREST 0xC0000419
992 +#define NT_STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST 0xC000041A
993 +#define NT_STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST 0xC000041B
994 +#define NT_STATUS_INVALID_USER_PRINCIPAL_NAME 0xC000041C
995 +#define NT_STATUS_ASSERTION_FAILURE 0xC0000420
996 +#define NT_STATUS_VERIFIER_STOP 0xC0000421
997 +#define NT_STATUS_CALLBACK_POP_STACK 0xC0000423
998 +#define NT_STATUS_INCOMPATIBLE_DRIVER_BLOCKED 0xC0000424
999 +#define NT_STATUS_HIVE_UNLOADED 0xC0000425
1000 +#define NT_STATUS_COMPRESSION_DISABLED 0xC0000426
1001 +#define NT_STATUS_FILE_SYSTEM_LIMITATION 0xC0000427
1002 +#define NT_STATUS_INVALID_IMAGE_HASH 0xC0000428
1003 +#define NT_STATUS_NOT_CAPABLE 0xC0000429
1004 +#define NT_STATUS_REQUEST_OUT_OF_SEQUENCE 0xC000042A
1005 +#define NT_STATUS_IMPLEMENTATION_LIMIT 0xC000042B
1006 +#define NT_STATUS_ELEVATION_REQUIRED 0xC000042C
1007 +#define NT_STATUS_NO_SECURITY_CONTEXT 0xC000042D
1008 +#define NT_STATUS_PKU2U_CERT_FAILURE 0xC000042E
1009 +#define NT_STATUS_BEYOND_VDL 0xC0000432
1010 +#define NT_STATUS_ENCOUNTERED_WRITE_IN_PROGRESS 0xC0000433
1011 +#define NT_STATUS_PTE_CHANGED 0xC0000434
1012 +#define NT_STATUS_PURGE_FAILED 0xC0000435
1013 +#define NT_STATUS_CRED_REQUIRES_CONFIRMATION 0xC0000440
1014 +#define NT_STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE 0xC0000441
1015 +#define NT_STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER 0xC0000442
1016 +#define NT_STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE 0xC0000443
1017 +#define NT_STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE 0xC0000444
1018 +#define NT_STATUS_CS_ENCRYPTION_FILE_NOT_CSE 0xC0000445
1019 +#define NT_STATUS_INVALID_LABEL 0xC0000446
1020 +#define NT_STATUS_DRIVER_PROCESS_TERMINATED 0xC0000450
1021 +#define NT_STATUS_AMBIGUOUS_SYSTEM_DEVICE 0xC0000451
1022 +#define NT_STATUS_SYSTEM_DEVICE_NOT_FOUND 0xC0000452
1023 +#define NT_STATUS_RESTART_BOOT_APPLICATION 0xC0000453
1024 +#define NT_STATUS_INSUFFICIENT_NVRAM_RESOURCES 0xC0000454
1025 +#define NT_STATUS_NO_RANGES_PROCESSED 0xC0000460
1026 +#define NT_STATUS_DEVICE_FEATURE_NOT_SUPPORTED 0xC0000463
1027 +#define NT_STATUS_DEVICE_UNREACHABLE 0xC0000464
1028 +#define NT_STATUS_INVALID_TOKEN 0xC0000465
1029 +#define NT_STATUS_SERVER_UNAVAILABLE 0xC0000466
1030 +#define NT_STATUS_FILE_NOT_AVAILABLE 0xC0000467
1031 +
1032 +#define NT_STATUS_INVALID_TASK_NAME 0xC0000500
1033 +#define NT_STATUS_INVALID_TASK_INDEX 0xC0000501
1034 +#define NT_STATUS_THREAD_ALREADY_IN_TASK 0xC0000502
1035 +#define NT_STATUS_CALLBACK_BYPASS 0xC0000503
1036 +#define NT_STATUS_FAIL_FAST_EXCEPTION 0xC0000602
1037 +#define NT_STATUS_IMAGE_CERT_REVOKED 0xC0000603
1038 +#define NT_STATUS_PORT_CLOSED 0xC0000700
1039 +#define NT_STATUS_MESSAGE_LOST 0xC0000701
1040 +#define NT_STATUS_INVALID_MESSAGE 0xC0000702
1041 +#define NT_STATUS_REQUEST_CANCELED 0xC0000703
1042 +#define NT_STATUS_RECURSIVE_DISPATCH 0xC0000704
1043 +#define NT_STATUS_LPC_RECEIVE_BUFFER_EXPECTED 0xC0000705
1044 +#define NT_STATUS_LPC_INVALID_CONNECTION_USAGE 0xC0000706
1045 +#define NT_STATUS_LPC_REQUESTS_NOT_ALLOWED 0xC0000707
1046 +#define NT_STATUS_RESOURCE_IN_USE 0xC0000708
1047 +#define NT_STATUS_HARDWARE_MEMORY_ERROR 0xC0000709
1048 +#define NT_STATUS_THREADPOOL_HANDLE_EXCEPTION 0xC000070A
1049 +#define NT_STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED 0xC000070B
1050 +#define NT_STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED 0xC000070C
1051 +#define NT_STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED 0xC000070D
1052 +#define NT_STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED 0xC000070E
1053 +#define NT_STATUS_THREADPOOL_RELEASED_DURING_OPERATION 0xC000070F
1054 +#define NT_STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING 0xC0000710
1055 +#define NT_STATUS_APC_RETURNED_WHILE_IMPERSONATING 0xC0000711
1056 +#define NT_STATUS_PROCESS_IS_PROTECTED 0xC0000712
1057 +#define NT_STATUS_MCA_EXCEPTION 0xC0000713
1058 +#define NT_STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE 0xC0000714
1059 +#define NT_STATUS_SYMLINK_CLASS_DISABLED 0xC0000715
1060 +#define NT_STATUS_INVALID_IDN_NORMALIZATION 0xC0000716
1061 +#define NT_STATUS_NO_UNICODE_TRANSLATION 0xC0000717
1062 +#define NT_STATUS_ALREADY_REGISTERED 0xC0000718
1063 +#define NT_STATUS_CONTEXT_MISMATCH 0xC0000719
1064 +#define NT_STATUS_PORT_ALREADY_HAS_COMPLETION_LIST 0xC000071A
1065 +#define NT_STATUS_CALLBACK_RETURNED_THREAD_PRIORITY 0xC000071B
1066 +#define NT_STATUS_INVALID_THREAD 0xC000071C
1067 +#define NT_STATUS_CALLBACK_RETURNED_TRANSACTION 0xC000071D
1068 +#define NT_STATUS_CALLBACK_RETURNED_LDR_LOCK 0xC000071E
1069 +#define NT_STATUS_CALLBACK_RETURNED_LANG 0xC000071F
1070 +#define NT_STATUS_CALLBACK_RETURNED_PRI_BACK 0xC0000720
1071 +#define NT_STATUS_CALLBACK_RETURNED_THREAD_AFFINITY 0xC0000721
1072 +#define NT_STATUS_DISK_REPAIR_DISABLED 0xC0000800
1073 +#define NT_STATUS_DS_DOMAIN_RENAME_IN_PROGRESS 0xC0000801
1074 +#define NT_STATUS_DISK_QUOTA_EXCEEDED 0xC0000802
1075 +#define NT_STATUS_CONTENT_BLOCKED 0xC0000804
1076 +#define NT_STATUS_BAD_CLUSTERS 0xC0000805
1077 +#define NT_STATUS_VOLUME_DIRTY 0xC0000806
1078 +#define NT_STATUS_FILE_CHECKED_OUT 0xC0000901
1079 +#define NT_STATUS_CHECKOUT_REQUIRED 0xC0000902
1080 +#define NT_STATUS_BAD_FILE_TYPE 0xC0000903
1081 +#define NT_STATUS_FILE_TOO_LARGE 0xC0000904
1082 +#define NT_STATUS_FORMS_AUTH_REQUIRED 0xC0000905
1083 +#define NT_STATUS_VIRUS_INFECTED 0xC0000906
1084 +#define NT_STATUS_VIRUS_DELETED 0xC0000907
1085 +#define NT_STATUS_BAD_MCFG_TABLE 0xC0000908
1086 +#define NT_STATUS_CANNOT_BREAK_OPLOCK 0xC0000909
1087 +
931 1088 #define NT_STATUS_WOW_ASSERTION 0xC0009898
932 1089
1090 +#define NT_STATUS_INVALID_SIGNATURE 0xC000A000
1091 +#define NT_STATUS_HMAC_NOT_SUPPORTED 0xC000A001
1092 +#define NT_STATUS_IPSEC_QUEUE_OVERFLOW 0xC000A010
1093 +#define NT_STATUS_ND_QUEUE_OVERFLOW 0xC000A011
1094 +#define NT_STATUS_HOPLIMIT_EXCEEDED 0xC000A012
1095 +#define NT_STATUS_PROTOCOL_NOT_SUPPORTED 0xC000A013
1096 +#define NT_STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED 0xC000A080
1097 +#define NT_STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR 0xC000A081
1098 +#define NT_STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR 0xC000A082
1099 +#define NT_STATUS_XML_PARSE_ERROR 0xC000A083
1100 +#define NT_STATUS_XMLDSIG_ERROR 0xC000A084
1101 +#define NT_STATUS_WRONG_COMPARTMENT 0xC000A085
1102 +#define NT_STATUS_AUTHIP_FAILURE 0xC000A086
1103 +#define NT_STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS 0xC000A087
1104 +#define NT_STATUS_DS_OID_NOT_FOUND 0xC000A088
1105 +#define NT_STATUS_HASH_NOT_SUPPORTED 0xC000A100
1106 +#define NT_STATUS_HASH_NOT_PRESENT 0xC000A101
1107 +#define NT_STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED 0xC000A2A1
1108 +#define NT_STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED 0xC000A2A2
1109 +#define NT_STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED 0xC000A2A3
1110 +#define NT_STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED 0xC000A2A4
1111 +
933 1112 /* Facility Debugger (0x..01....) not used */
934 1113
935 1114 /* Facility RPC Runtime (0x..02....) */
936 1115 #define RPC_NT_INVALID_STRING_BINDING 0xC0020001
937 1116 #define RPC_NT_WRONG_KIND_OF_BINDING 0xC0020002
938 1117 #define RPC_NT_INVALID_BINDING 0xC0020003
939 1118 #define RPC_NT_PROTSEQ_NOT_SUPPORTED 0xC0020004
940 1119 #define RPC_NT_INVALID_RPC_PROTSEQ 0xC0020005
941 1120 #define RPC_NT_INVALID_STRING_UUID 0xC0020006
942 1121 #define RPC_NT_INVALID_ENDPOINT_FORMAT 0xC0020007
943 1122 #define RPC_NT_INVALID_NET_ADDR 0xC0020008
944 1123 #define RPC_NT_NO_ENDPOINT_FOUND 0xC0020009
945 1124 #define RPC_NT_INVALID_TIMEOUT 0xC002000A
946 1125 #define RPC_NT_OBJECT_NOT_FOUND 0xC002000B
947 1126 #define RPC_NT_ALREADY_REGISTERED 0xC002000C
948 1127 #define RPC_NT_TYPE_ALREADY_REGISTERED 0xC002000D
949 1128 #define RPC_NT_ALREADY_LISTENING 0xC002000E
950 1129 #define RPC_NT_NO_PROTSEQS_REGISTERED 0xC002000F
951 1130 #define RPC_NT_NOT_LISTENING 0xC0020010
952 1131 #define RPC_NT_UNKNOWN_MGR_TYPE 0xC0020011
953 1132 #define RPC_NT_UNKNOWN_IF 0xC0020012
954 1133 #define RPC_NT_NO_BINDINGS 0xC0020013
955 1134 #define RPC_NT_NO_PROTSEQS 0xC0020014
956 1135 #define RPC_NT_CANT_CREATE_ENDPOINT 0xC0020015
957 1136 #define RPC_NT_OUT_OF_RESOURCES 0xC0020016
958 1137 #define RPC_NT_SERVER_UNAVAILABLE 0xC0020017
959 1138 #define RPC_NT_SERVER_TOO_BUSY 0xC0020018
960 1139 #define RPC_NT_INVALID_NETWORK_OPTIONS 0xC0020019
961 1140 #define RPC_NT_NO_CALL_ACTIVE 0xC002001A
962 1141 #define RPC_NT_CALL_FAILED 0xC002001B
963 1142 #define RPC_NT_CALL_FAILED_DNE 0xC002001C
964 1143 #define RPC_NT_PROTOCOL_ERROR 0xC002001D
965 1144 #define RPC_NT_UNSUPPORTED_TRANS_SYN 0xC002001F
966 1145 #define RPC_NT_UNSUPPORTED_TYPE 0xC0020021
967 1146 #define RPC_NT_INVALID_TAG 0xC0020022
968 1147 #define RPC_NT_INVALID_BOUND 0xC0020023
969 1148 #define RPC_NT_NO_ENTRY_NAME 0xC0020024
970 1149 #define RPC_NT_INVALID_NAME_SYNTAX 0xC0020025
971 1150 #define RPC_NT_UNSUPPORTED_NAME_SYNTAX 0xC0020026
972 1151 #define RPC_NT_UUID_NO_ADDRESS 0xC0020028
973 1152 #define RPC_NT_DUPLICATE_ENDPOINT 0xC0020029
974 1153 #define RPC_NT_UNKNOWN_AUTHN_TYPE 0xC002002A
975 1154 #define RPC_NT_MAX_CALLS_TOO_SMALL 0xC002002B
976 1155 #define RPC_NT_STRING_TOO_LONG 0xC002002C
977 1156 #define RPC_NT_PROTSEQ_NOT_FOUND 0xC002002D
978 1157 #define RPC_NT_PROCNUM_OUT_OF_RANGE 0xC002002E
979 1158 #define RPC_NT_BINDING_HAS_NO_AUTH 0xC002002F
980 1159 #define RPC_NT_UNKNOWN_AUTHN_SERVICE 0xC0020030
981 1160 #define RPC_NT_UNKNOWN_AUTHN_LEVEL 0xC0020031
982 1161 #define RPC_NT_INVALID_AUTH_IDENTITY 0xC0020032
983 1162 #define RPC_NT_UNKNOWN_AUTHZ_SERVICE 0xC0020033
984 1163 #define EPT_NT_INVALID_ENTRY 0xC0020034
985 1164 #define EPT_NT_CANT_PERFORM_OP 0xC0020035
986 1165 #define EPT_NT_NOT_REGISTERED 0xC0020036
987 1166 #define RPC_NT_NOTHING_TO_EXPORT 0xC0020037
988 1167 #define RPC_NT_INCOMPLETE_NAME 0xC0020038
989 1168 #define RPC_NT_INVALID_VERS_OPTION 0xC0020039
990 1169 #define RPC_NT_NO_MORE_MEMBERS 0xC002003A
991 1170 #define RPC_NT_NOT_ALL_OBJS_UNEXPORTED 0xC002003B
992 1171 #define RPC_NT_INTERFACE_NOT_FOUND 0xC002003C
993 1172 #define RPC_NT_ENTRY_ALREADY_EXISTS 0xC002003D
994 1173 #define RPC_NT_ENTRY_NOT_FOUND 0xC002003E
995 1174 #define RPC_NT_NAME_SERVICE_UNAVAILABLE 0xC002003F
996 1175 #define RPC_NT_INVALID_NAF_ID 0xC0020040
997 1176 #define RPC_NT_CANNOT_SUPPORT 0xC0020041
998 1177 #define RPC_NT_NO_CONTEXT_AVAILABLE 0xC0020042
999 1178 #define RPC_NT_INTERNAL_ERROR 0xC0020043
1000 1179 #define RPC_NT_ZERO_DIVIDE 0xC0020044
1001 1180 #define RPC_NT_ADDRESS_ERROR 0xC0020045
1002 1181 #define RPC_NT_FP_DIV_ZERO 0xC0020046
1003 1182 #define RPC_NT_FP_UNDERFLOW 0xC0020047
1004 1183 #define RPC_NT_FP_OVERFLOW 0xC0020048
1005 1184 #define RPC_NT_CALL_IN_PROGRESS 0xC0020049
1006 1185 #define RPC_NT_NO_MORE_BINDINGS 0xC002004A
|
↓ open down ↓ |
64 lines elided |
↑ open up ↑ |
1007 1186 #define RPC_NT_GROUP_MEMBER_NOT_FOUND 0xC002004B
1008 1187 #define EPT_NT_CANT_CREATE 0xC002004C
1009 1188 #define RPC_NT_INVALID_OBJECT 0xC002004D
1010 1189 #define RPC_NT_NO_INTERFACES 0xC002004F
1011 1190 #define RPC_NT_CALL_CANCELLED 0xC0020050
1012 1191 #define RPC_NT_BINDING_INCOMPLETE 0xC0020051
1013 1192 #define RPC_NT_COMM_FAILURE 0xC0020052
1014 1193 #define RPC_NT_UNSUPPORTED_AUTHN_LEVEL 0xC0020053
1015 1194 #define RPC_NT_NO_PRINC_NAME 0xC0020054
1016 1195 #define RPC_NT_NOT_RPC_ERROR 0xC0020055
1017 -#define RPC_NT_UUID_LOCAL_ONLY 0x40020056
1196 +/* RPC_NT_UUID_LOCAL_ONLY 0x40020056 */
1018 1197 #define RPC_NT_SEC_PKG_ERROR 0xC0020057
1019 1198 #define RPC_NT_NOT_CANCELLED 0xC0020058
1020 1199 #define RPC_NT_INVALID_ASYNC_HANDLE 0xC0020062
1021 1200 #define RPC_NT_INVALID_ASYNC_CALL 0xC0020063
1022 1201 #define RPC_NT_PROXY_ACCESS_DENIED 0xC0020064
1023 -#define RPC_NT_SEND_INCOMPLETE 0x400200AF
1202 +/* RPC_NT_SEND_INCOMPLETE 0x400200AF */
1024 1203
1025 1204 /* Facility RPC Stubs (0x..03....) */
1026 1205 #define RPC_NT_NO_MORE_ENTRIES 0xC0030001
1027 1206 #define RPC_NT_SS_CHAR_TRANS_OPEN_FAIL 0xC0030002
1028 1207 #define RPC_NT_SS_CHAR_TRANS_SHORT_FILE 0xC0030003
1029 1208 #define RPC_NT_SS_IN_NULL_CONTEXT 0xC0030004
1030 1209 #define RPC_NT_SS_CONTEXT_MISMATCH 0xC0030005
1031 1210 #define RPC_NT_SS_CONTEXT_DAMAGED 0xC0030006
1032 1211 #define RPC_NT_SS_HANDLES_MISMATCH 0xC0030007
1033 1212 #define RPC_NT_SS_CANNOT_GET_CALL_HANDLE 0xC0030008
1034 1213 #define RPC_NT_NULL_REF_POINTER 0xC0030009
1035 1214 #define RPC_NT_ENUM_VALUE_OUT_OF_RANGE 0xC003000A
1036 1215 #define RPC_NT_BYTE_COUNT_TOO_SMALL 0xC003000B
1037 1216 #define RPC_NT_BAD_STUB_DATA 0xC003000C
1038 1217 #define RPC_NT_INVALID_ES_ACTION 0xC0030059
1039 1218 #define RPC_NT_WRONG_ES_VERSION 0xC003005A
1040 1219 #define RPC_NT_WRONG_STUB_VERSION 0xC003005B
1041 1220 #define RPC_NT_INVALID_PIPE_OBJECT 0xC003005C
1042 1221 #define RPC_NT_INVALID_PIPE_OPERATION 0xC003005D
1043 1222 #define RPC_NT_WRONG_PIPE_VERSION 0xC003005E
1044 1223 #define RPC_NT_PIPE_CLOSED 0xC003005F
1045 1224 #define RPC_NT_PIPE_DISCIPLINE_ERROR 0xC0030060
1046 1225 #define RPC_NT_PIPE_EMPTY 0xC0030061
1047 1226
1048 1227 /*
1049 1228 * Status codes from higher numbered facilities are not used.
1050 1229 */
1051 1230
1052 1231 #ifdef __cplusplus
1053 1232 }
1054 1233 #endif
1055 1234
1056 1235 #endif /* _SMB_NTSTATUS_H */
|
↓ open down ↓ |
23 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX