1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 27 #ifndef _SMBSRV_NTERROR_H 28 #define _SMBSRV_NTERROR_H 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 /* 33 * This file defines the list of Win32 error codes. If you need an 34 * error code that is defined in the Win32 Error Codes document but 35 * is not listed here, please add it to the file. There is a list 36 * of Win32 error codes on: 37 * 38 * http://msdn.microsoft.com/library/psdk/psdkref/errlist_9usz.htm 39 * 40 * Be careful not to confuse status codes with error codes. The status 41 * codes are listed in ntstatus.h. Some mappings between NT status 42 * codes and Win32 error codes is provided in the Microsoft knowledge 43 * base article Q113996. 44 * 45 * Win32 error codes are 32-bit values with the following format 46 * (winerror.h): 47 * 48 * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 49 * 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 50 * +---+-+-+-----------------------+-------------------------------+ 51 * |Sev|C|R| Facility | Code | 52 * +---+-+-+-----------------------+-------------------------------+ 53 * 54 * Sev severity code 55 * 00 - Success 56 * 01 - Informational 57 * 10 - Warning 58 * 11 - Error 59 * 60 * C customer/client flag (set to 1 for user defined codes). 61 * R reserved (set to zero) 62 * Facility facility code 63 * Code facility's status code 64 */ 65 66 67 #ifdef __cplusplus 68 extern "C" { 69 #endif 70 71 72 /* 73 * Facility codes 74 */ 75 #define FACILITY_NULL 0 76 #define FACILITY_RPC 1 77 #define FACILITY_DISPATCH 2 78 #define FACILITY_STORAGE 3 79 #define FACILITY_ITF 4 80 /* 5 */ 81 /* 6 */ 82 #define FACILITY_WIN32 7 83 #define FACILITY_WINDOWS 8 84 #define FACILITY_SSPI 9 85 #define FACILITY_CONTROL 10 86 #define FACILITY_CERT 11 87 #define FACILITY_INTERNET 12 88 #define FACILITY_MEDIASERVER 13 89 #define FACILITY_MSMQ 14 90 #define FACILITY_SETUPAPI 15 91 92 93 /* 94 * Complete list of Win32 error codes. For error description 95 * you can look at MS-KB articles 155011 and 155012 96 */ 97 98 #define ERROR_SUCCESS 0 99 #define NO_ERROR 0 100 #define ERROR_INVALID_FUNCTION 1 101 #define ERROR_FILE_NOT_FOUND 2 102 #define ERROR_PATH_NOT_FOUND 3 103 #define ERROR_TOO_MANY_OPEN_FILES 4 104 #define ERROR_ACCESS_DENIED 5 105 #define ERROR_INVALID_HANDLE 6 106 #define ERROR_ARENA_TRASHED 7 107 #define ERROR_NOT_ENOUGH_MEMORY 8 108 #define ERROR_INVALID_BLOCK 9 109 #define ERROR_BAD_ENVIRONMENT 10 110 #define ERROR_BAD_FORMAT 11 111 #define ERROR_INVALID_ACCESS 12 112 #define ERROR_INVALID_DATA 13 113 #define ERROR_OUTOFMEMORY 14 114 #define ERROR_INVALID_DRIVE 15 115 #define ERROR_CURRENT_DIRECTORY 16 116 #define ERROR_NOT_SAME_DEVICE 17 117 #define ERROR_NO_MORE_FILES 18 118 #define ERROR_WRITE_PROTECT 19 119 #define ERROR_BAD_UNIT 20 120 #define ERROR_NOT_READY 21 121 #define ERROR_BAD_COMMAND 22 122 #define ERROR_CRC 23 123 #define ERROR_BAD_LENGTH 24 124 #define ERROR_SEEK 25 125 #define ERROR_NOT_DOS_DISK 26 126 #define ERROR_SECTOR_NOT_FOUND 27 127 #define ERROR_OUT_OF_PAPER 28 128 #define ERROR_WRITE_FAULT 29 129 #define ERROR_READ_FAULT 30 130 #define ERROR_GEN_FAILURE 31 131 #define ERROR_SHARING_VIOLATION 32 132 #define ERROR_LOCK_VIOLATION 33 133 #define ERROR_WRONG_DISK 34 134 #define ERROR_SHARING_BUFFER_EXCEEDED 36 135 #define ERROR_HANDLE_EOF 38 136 #define ERROR_HANDLE_DISK_FULL 39 137 #define ERROR_NOT_SUPPORTED 50 138 #define ERROR_REM_NOT_LIST 51 139 #define ERROR_DUP_NAME 52 140 #define ERROR_BAD_NETPATH 53 141 #define ERROR_NETWORK_BUSY 54 142 #define ERROR_DEV_NOT_EXIST 55 143 #define ERROR_TOO_MANY_CMDS 56 144 #define ERROR_ADAP_HDW_ERR 57 145 #define ERROR_BAD_NET_RESP 58 146 #define ERROR_UNEXP_NET_ERR 59 147 #define ERROR_BAD_REM_ADAP 60 148 #define ERROR_PRINTQ_FULL 61 149 #define ERROR_NO_SPOOL_SPACE 62 150 #define ERROR_PRINT_CANCELLED 63 151 #define ERROR_NETNAME_DELETED 64 152 #define ERROR_NETWORK_ACCESS_DENIED 65 153 #define ERROR_BAD_DEV_TYPE 66 154 #define ERROR_BAD_NET_NAME 67 155 #define ERROR_TOO_MANY_NAMES 68 156 #define ERROR_TOO_MANY_SESS 69 157 #define ERROR_SHARING_PAUSED 70 158 #define ERROR_REQ_NOT_ACCEP 71 159 #define ERROR_REDIR_PAUSED 72 160 #define ERROR_FILE_EXISTS 80 161 #define ERROR_CANNOT_MAKE 82 162 #define ERROR_FAIL_I24 83 163 #define ERROR_OUT_OF_STRUCTURES 84 164 #define ERROR_ALREADY_ASSIGNED 85 165 #define ERROR_INVALID_PASSWORD 86 166 #define ERROR_INVALID_PARAMETER 87 167 #define ERROR_NET_WRITE_FAULT 88 168 #define ERROR_NO_PROC_SLOTS 89 169 #define ERROR_TOO_MANY_SEMAPHORES 100 170 #define ERROR_EXCL_SEM_ALREADY_OWNED 101 171 #define ERROR_SEM_IS_SET 102 172 #define ERROR_TOO_MANY_SEM_REQUESTS 103 173 #define ERROR_INVALID_AT_INTERRUPT_TIME 104 174 #define ERROR_SEM_OWNER_DIED 105 175 #define ERROR_SEM_USER_LIMIT 106 176 #define ERROR_DISK_CHANGE 107 177 #define ERROR_DRIVE_LOCKED 108 178 #define ERROR_BROKEN_PIPE 109 179 #define ERROR_OPEN_FAILED 110 180 #define ERROR_BUFFER_OVERFLOW 111 181 #define ERROR_DISK_FULL 112 182 #define ERROR_NO_MORE_SEARCH_HANDLES 113 183 #define ERROR_INVALID_TARGET_HANDLE 114 184 #define ERROR_INVALID_CATEGORY 117 185 #define ERROR_INVALID_VERIFY_SWITCH 118 186 #define ERROR_BAD_DRIVER_LEVEL 119 187 #define ERROR_CALL_NOT_IMPLEMENTED 120 188 #define ERROR_SEM_TIMEOUT 121 189 #define ERROR_INSUFFICIENT_BUFFER 122 190 #define ERROR_INVALID_NAME 123 191 #define ERROR_INVALID_LEVEL 124 192 #define ERROR_NO_VOLUME_LABEL 125 193 #define ERROR_MOD_NOT_FOUND 126 194 #define ERROR_PROC_NOT_FOUND 127 195 #define ERROR_WAIT_NO_CHILDREN 128 196 #define ERROR_CHILD_NOT_COMPLETE 129 197 #define ERROR_DIRECT_ACCESS_HANDLE 130 198 #define ERROR_NEGATIVE_SEEK 131 199 #define ERROR_SEEK_ON_DEVICE 132 200 #define ERROR_IS_JOIN_TARGET 133 201 #define ERROR_IS_JOINED 134 202 #define ERROR_IS_SUBSTED 135 203 #define ERROR_NOT_JOINED 136 204 #define ERROR_NOT_SUBSTED 137 205 #define ERROR_JOIN_TO_JOIN 138 206 #define ERROR_SUBST_TO_SUBST 139 207 #define ERROR_JOIN_TO_SUBST 140 208 #define ERROR_SUBST_TO_JOIN 141 209 #define ERROR_BUSY_DRIVE 142 210 #define ERROR_SAME_DRIVE 143 211 #define ERROR_DIR_NOT_ROOT 144 212 #define ERROR_DIR_NOT_EMPTY 145 213 #define ERROR_IS_SUBST_PATH 146 214 #define ERROR_IS_JOIN_PATH 147 215 #define ERROR_PATH_BUSY 148 216 #define ERROR_IS_SUBST_TARGET 149 217 #define ERROR_SYSTEM_TRACE 150 218 #define ERROR_INVALID_EVENT_COUNT 151 219 #define ERROR_TOO_MANY_MUXWAITERS 152 220 #define ERROR_INVALID_LIST_FORMAT 153 221 #define ERROR_LABEL_TOO_LONG 154 222 #define ERROR_TOO_MANY_TCBS 155 223 #define ERROR_SIGNAL_REFUSED 156 224 #define ERROR_DISCARDED 157 225 #define ERROR_NOT_LOCKED 158 226 #define ERROR_BAD_THREADID_ADDR 159 227 #define ERROR_BAD_ARGUMENTS 160 228 #define ERROR_BAD_PATHNAME 161 229 #define ERROR_SIGNAL_PENDING 162 230 #define ERROR_MAX_THRDS_REACHED 164 231 #define ERROR_LOCK_FAILED 167 232 #define ERROR_BUSY 170 233 #define ERROR_CANCEL_VIOLATION 173 234 #define ERROR_ATOMIC_LOCKS_NOT_SUPPORTED 174 235 #define ERROR_INVALID_SEGMENT_NUMBER 180 236 #define ERROR_INVALID_ORDINAL 182 237 #define ERROR_ALREADY_EXISTS 183 238 #define ERROR_INVALID_FLAG_NUMBER 186 239 #define ERROR_SEM_NOT_FOUND 187 240 #define ERROR_INVALID_STARTING_CODESEG 188 241 #define ERROR_INVALID_STACKSEG 189 242 #define ERROR_INVALID_MODULETYPE 190 243 #define ERROR_INVALID_EXE_SIGNATURE 191 244 #define ERROR_EXE_MARKED_INVALID 192 245 #define ERROR_BAD_EXE_FORMAT 193 246 #define ERROR_ITERATED_DATA_EXCEEDS_64k 194 247 #define ERROR_INVALID_MINALLOCSIZE 195 248 #define ERROR_DYNLINK_FROM_INVALID_RING 196 249 #define ERROR_IOPL_NOT_ENABLED 197 250 #define ERROR_INVALID_SEGDPL 198 251 #define ERROR_AUTODATASEG_EXCEEDS_64k 199 252 #define ERROR_RING2SEG_MUST_BE_MOVABLE 200 253 #define ERROR_RELOC_CHAIN_XEEDS_SEGLIM 201 254 #define ERROR_INFLOOP_IN_RELOC_CHAIN 202 255 #define ERROR_ENVVAR_NOT_FOUND 203 256 #define ERROR_NO_SIGNAL_SENT 205 257 #define ERROR_FILENAME_EXCED_RANGE 206 258 #define ERROR_RING2_STACK_IN_USE 207 259 #define ERROR_META_EXPANSION_TOO_LONG 208 260 #define ERROR_INVALID_SIGNAL_NUMBER 209 261 #define ERROR_THREAD_1_INACTIVE 210 262 #define ERROR_LOCKED 212 263 #define ERROR_TOO_MANY_MODULES 214 264 #define ERROR_NESTING_NOT_ALLOWED 215 265 #define ERROR_EXE_MACHINE_TYPE_MISMATCH 216 266 #define ERROR_BAD_PIPE 230 267 #define ERROR_PIPE_BUSY 231 268 #define ERROR_NO_DATA 232 269 #define ERROR_PIPE_NOT_CONNECTED 233 270 #define ERROR_MORE_DATA 234 271 #define ERROR_VC_DISCONNECTED 240 272 #define ERROR_INVALID_EA_NAME 254 273 #define ERROR_EA_LIST_INCONSISTENT 255 274 #define ERROR_NO_MORE_ITEMS 259 275 #define ERROR_MORE_ENTRIES 261 276 #define ERROR_CANNOT_COPY 266 277 #define ERROR_DIRECTORY 267 278 #define ERROR_EAS_DIDNT_FIT 275 279 #define ERROR_EA_FILE_CORRUPT 276 280 #define ERROR_EA_TABLE_FULL 277 281 #define ERROR_INVALID_EA_HANDLE 278 282 #define ERROR_EAS_NOT_SUPPORTED 282 283 #define ERROR_NOT_OWNER 288 284 #define ERROR_TOO_MANY_POSTS 298 285 #define ERROR_PARTIAL_COPY 299 286 #define ERROR_OPLOCK_NOT_GRANTED 300 287 #define ERROR_INVALID_OPLOCK_PROTOCOL 301 288 #define ERROR_MR_MID_NOT_FOUND 317 289 #define ERROR_INVALID_ADDRESS 487 290 #define ERROR_ARITHMETIC_OVERFLOW 534 291 #define ERROR_PIPE_CONNECTED 535 292 #define ERROR_PIPE_LISTENING 536 293 #define ERROR_EA_ACCESS_DENIED 994 294 #define ERROR_OPERATION_ABORTED 995 295 #define ERROR_IO_INCOMPLETE 996 296 #define ERROR_IO_PENDING 997 297 #define ERROR_NOACCESS 998 298 #define ERROR_SWAPERROR 999 299 #define ERROR_STACK_OVERFLOW 1001 300 #define ERROR_INVALID_MESSAGE 1002 301 #define ERROR_CAN_NOT_COMPLETE 1003 302 #define ERROR_INVALID_FLAGS 1004 303 #define ERROR_UNRECOGNIZED_VOLUME 1005 304 #define ERROR_FILE_INVALID 1006 305 #define ERROR_FULLSCREEN_MODE 1007 306 #define ERROR_NO_TOKEN 1008 307 #define ERROR_BADDB 1009 308 #define ERROR_BADKEY 1010 309 #define ERROR_CANTOPEN 1011 310 #define ERROR_CANTREAD 1012 311 #define ERROR_CANTWRITE 1013 312 #define ERROR_REGISTRY_RECOVERED 1014 313 #define ERROR_REGISTRY_CORRUPT 1015 314 #define ERROR_REGISTRY_IO_FAILED 1016 315 #define ERROR_NOT_REGISTRY_FILE 1017 316 #define ERROR_KEY_DELETED 1018 317 #define ERROR_NO_LOG_SPACE 1019 318 #define ERROR_KEY_HAS_CHILDREN 1020 319 #define ERROR_CHILD_MUST_BE_VOLATILE 1021 320 #define ERROR_NOTIFY_ENUM_DIR 1022 321 #define ERROR_DEPENDENT_SERVICES_RUNNING 1051 322 #define ERROR_INVALID_SERVICE_CONTROL 1052 323 #define ERROR_SERVICE_REQUEST_TIMEOUT 1053 324 #define ERROR_SERVICE_NO_THREAD 1054 325 #define ERROR_SERVICE_DATABASE_LOCKED 1055 326 #define ERROR_SERVICE_ALREADY_RUNNING 1056 327 #define ERROR_INVALID_SERVICE_ACCOUNT 1057 328 #define ERROR_SERVICE_DISABLED 1058 329 #define ERROR_CIRCULAR_DEPENDENCY 1059 330 #define ERROR_SERVICE_DOES_NOT_EXIST 1060 331 #define ERROR_SERVICE_CANNOT_ACCEPT_CTRL 1061 332 #define ERROR_SERVICE_NOT_ACTIVE 1062 333 #define ERROR_FAILED_SERVICE_CONTROLLER_CONNECT 1063 334 #define ERROR_EXCEPTION_IN_SERVICE 1064 335 #define ERROR_DATABASE_DOES_NOT_EXIST 1065 336 #define ERROR_SERVICE_SPECIFIC_ERROR 1066 337 #define ERROR_PROCESS_ABORTED 1067 338 #define ERROR_SERVICE_DEPENDENCY_FAIL 1068 339 #define ERROR_SERVICE_LOGON_FAILED 1069 340 #define ERROR_SERVICE_START_HANG 1070 341 #define ERROR_INVALID_SERVICE_LOCK 1071 342 #define ERROR_SERVICE_MARKED_FOR_DELETE 1072 343 #define ERROR_SERVICE_EXISTS 1073 344 #define ERROR_ALREADY_RUNNING_LKG 1074 345 #define ERROR_SERVICE_DEPENDENCY_DELETED 1075 346 #define ERROR_BOOT_ALREADY_ACCEPTED 1076 347 #define ERROR_SERVICE_NEVER_STARTED 1077 348 #define ERROR_DUPLICATE_SERVICE_NAME 1078 349 #define ERROR_DIFFERENT_SERVICE_ACCOUNT 1079 350 #define ERROR_CANNOT_DETECT_DRIVER_FAILURE 1080 351 #define ERROR_CANNOT_DETECT_PROCESS_ABORT 1081 352 #define ERROR_NO_RECOVERY_PROGRAM 1082 353 #define ERROR_END_OF_MEDIA 1100 354 #define ERROR_FILEMARK_DETECTED 1101 355 #define ERROR_BEGINNING_OF_MEDIA 1102 356 #define ERROR_SETMARK_DETECTED 1103 357 #define ERROR_NO_DATA_DETECTED 1104 358 #define ERROR_PARTITION_FAILURE 1105 359 #define ERROR_INVALID_BLOCK_LENGTH 1106 360 #define ERROR_DEVICE_NOT_PARTITIONED 1107 361 #define ERROR_UNABLE_TO_LOCK_MEDIA 1108 362 #define ERROR_UNABLE_TO_UNLOAD_MEDIA 1109 363 #define ERROR_MEDIA_CHANGED 1110 364 #define ERROR_BUS_RESET 1111 365 #define ERROR_NO_MEDIA_IN_DRIVE 1112 366 #define ERROR_NO_UNICODE_TRANSLATION 1113 367 #define ERROR_DLL_INIT_FAILED 1114 368 #define ERROR_SHUTDOWN_IN_PROGRESS 1115 369 #define ERROR_NO_SHUTDOWN_IN_PROGRESS 1116 370 #define ERROR_IO_DEVICE 1117 371 #define ERROR_SERIAL_NO_DEVICE 1118 372 #define ERROR_IRQ_BUSY 1119 373 #define ERROR_MORE_WRITES 1120 374 #define ERROR_COUNTER_TIMEOUT 1121 375 #define ERROR_FLOPPY_ID_MARK_NOT_FOUND 1122 376 #define ERROR_FLOPPY_WRONG_CYLINDER 1123 377 #define ERROR_FLOPPY_UNKNOWN_ERROR 1124 378 #define ERROR_FLOPPY_BAD_REGISTERS 1125 379 #define ERROR_DISK_RECALIBRATE_FAILED 1126 380 #define ERROR_DISK_OPERATION_FAILED 1127 381 #define ERROR_DISK_RESET_FAILED 1128 382 #define ERROR_EOM_OVERFLOW 1129 383 #define ERROR_NOT_ENOUGH_SERVER_MEMORY 1130 384 #define ERROR_POSSIBLE_DEADLOCK 1131 385 #define ERROR_MAPPED_ALIGNMENT 1132 386 #define ERROR_SET_POWER_STATE_VETOED 1140 387 #define ERROR_SET_POWER_STATE_FAILED 1141 388 #define ERROR_TOO_MANY_LINKS 1142 389 #define ERROR_OLD_WIN_VERSION 1150 390 #define ERROR_APP_WRONG_OS 1151 391 #define ERROR_SINGLE_INSTANCE_APP 1152 392 #define ERROR_RMODE_APP 1153 393 #define ERROR_INVALID_DLL 1154 394 #define ERROR_NO_ASSOCIATION 1155 395 #define ERROR_DDE_FAIL 1156 396 #define ERROR_DLL_NOT_FOUND 1157 397 #define ERROR_NO_MORE_USER_HANDLES 1158 398 #define ERROR_MESSAGE_SYNC_ONLY 1159 399 #define ERROR_SOURCE_ELEMENT_EMPTY 1160 400 #define ERROR_DESTINATION_ELEMENT_FULL 1161 401 #define ERROR_ILLEGAL_ELEMENT_ADDRESS 1162 402 #define ERROR_MAGAZINE_NOT_PRESENT 1163 403 #define ERROR_DEVICE_REINITIALIZATION_NEEDED 1164 404 #define ERROR_DEVICE_REQUIRES_CLEANING 1165 405 #define ERROR_DEVICE_DOOR_OPEN 1166 406 #define ERROR_DEVICE_NOT_CONNECTED 1167 407 #define ERROR_NOT_FOUND 1168 408 #define ERROR_NO_MATCH 1169 409 #define ERROR_SET_NOT_FOUND 1170 410 #define ERROR_POINT_NOT_FOUND 1171 411 #define ERROR_NO_TRACKING_SERVICE 1172 412 #define ERROR_NO_VOLUME_ID 1173 413 #define ERROR_CONNECTED_OTHER_PASSWORD 2108 414 #define ERROR_BAD_USERNAME 2202 415 #define ERROR_NOT_CONNECTED 2250 416 #define ERROR_OPEN_FILES 2401 417 #define ERROR_ACTIVE_CONNECTIONS 2402 418 #define ERROR_DEVICE_IN_USE 2404 419 #define ERROR_BAD_DEVICE 1200 420 #define ERROR_CONNECTION_UNAVAIL 1201 421 #define ERROR_DEVICE_ALREADY_REMEMBERED 1202 422 #define ERROR_NO_NET_OR_BAD_PATH 1203 423 #define ERROR_BAD_PROVIDER 1204 424 #define ERROR_CANNOT_OPEN_PROFILE 1205 425 #define ERROR_BAD_PROFILE 1206 426 #define ERROR_NOT_CONTAINER 1207 427 #define ERROR_EXTENDED_ERROR 1208 428 #define ERROR_INVALID_GROUPNAME 1209 429 #define ERROR_INVALID_COMPUTERNAME 1210 430 #define ERROR_INVALID_EVENTNAME 1211 431 #define ERROR_INVALID_DOMAINNAME 1212 432 #define ERROR_INVALID_SERVICENAME 1213 433 #define ERROR_INVALID_NETNAME 1214 434 #define ERROR_INVALID_SHARENAME 1215 435 #define ERROR_INVALID_PASSWORDNAME 1216 436 #define ERROR_INVALID_MESSAGENAME 1217 437 #define ERROR_INVALID_MESSAGEDEST 1218 438 #define ERROR_SESSION_CREDENTIAL_CONFLICT 1219 439 #define ERROR_REMOTE_SESSION_LIMIT_EXCEEDED 1220 440 #define ERROR_DUP_DOMAINNAME 1221 441 #define ERROR_NO_NETWORK 1222 442 #define ERROR_CANCELLED 1223 443 #define ERROR_USER_MAPPED_FILE 1224 444 #define ERROR_CONNECTION_REFUSED 1225 445 #define ERROR_GRACEFUL_DISCONNECT 1226 446 #define ERROR_ADDRESS_ALREADY_ASSOCIATED 1227 447 #define ERROR_ADDRESS_NOT_ASSOCIATED 1228 448 #define ERROR_CONNECTION_INVALID 1229 449 #define ERROR_CONNECTION_ACTIVE 1230 450 #define ERROR_NETWORK_UNREACHABLE 1231 451 #define ERROR_HOST_UNREACHABLE 1232 452 #define ERROR_PROTOCOL_UNREACHABLE 1233 453 #define ERROR_PORT_UNREACHABLE 1234 454 #define ERROR_REQUEST_ABORTED 1235 455 #define ERROR_CONNECTION_ABORTED 1236 456 #define ERROR_RETRY 1237 457 #define ERROR_CONNECTION_COUNT_LIMIT 1238 458 #define ERROR_LOGIN_TIME_RESTRICTION 1239 459 #define ERROR_LOGIN_WKSTA_RESTRICTION 1240 460 #define ERROR_INCORRECT_ADDRESS 1241 461 #define ERROR_ALREADY_REGISTERED 1242 462 #define ERROR_SERVICE_NOT_FOUND 1243 463 #define ERROR_NOT_AUTHENTICATED 1244 464 #define ERROR_NOT_LOGGED_ON 1245 465 #define ERROR_CONTINUE 1246 466 #define ERROR_ALREADY_INITIALIZED 1247 467 #define ERROR_NO_MORE_DEVICES 1248 468 #define ERROR_NO_SUCH_SITE 1249 469 #define ERROR_DOMAIN_CONTROLLER_EXISTS 1250 470 #define ERROR_DS_NOT_INSTALLED 1251 471 #define ERROR_NOT_ALL_ASSIGNED 1300 472 #define ERROR_SOME_NOT_MAPPED 1301 473 #define ERROR_NO_QUOTAS_FOR_ACCOUNT 1302 474 #define ERROR_LOCAL_USER_SESSION_KEY 1303 475 #define ERROR_NULL_LM_PASSWORD 1304 476 #define ERROR_UNKNOWN_REVISION 1305 477 #define ERROR_REVISION_MISMATCH 1306 478 #define ERROR_INVALID_OWNER 1307 479 #define ERROR_INVALID_PRIMARY_GROUP 1308 480 #define ERROR_NO_IMPERSONATION_TOKEN 1309 481 #define ERROR_CANT_DISABLE_MANDATORY 1310 482 #define ERROR_NO_LOGON_SERVERS 1311 483 #define ERROR_NO_SUCH_LOGON_SESSION 1312 484 #define ERROR_NO_SUCH_PRIVILEGE 1313 485 #define ERROR_PRIVILEGE_NOT_HELD 1314 486 #define ERROR_INVALID_ACCOUNT_NAME 1315 487 #define ERROR_USER_EXISTS 1316 488 #define ERROR_NO_SUCH_USER 1317 489 #define ERROR_GROUP_EXISTS 1318 490 #define ERROR_NO_SUCH_GROUP 1319 491 #define ERROR_MEMBER_IN_GROUP 1320 492 #define ERROR_MEMBER_NOT_IN_GROUP 1321 493 #define ERROR_LAST_ADMIN 1322 494 #define ERROR_WRONG_PASSWORD 1323 495 #define ERROR_ILL_FORMED_PASSWORD 1324 496 #define ERROR_PASSWORD_RESTRICTION 1325 497 #define ERROR_LOGON_FAILURE 1326 498 #define ERROR_ACCOUNT_RESTRICTION 1327 499 #define ERROR_INVALID_LOGON_HOURS 1328 500 #define ERROR_INVALID_WORKSTATION 1329 501 #define ERROR_PASSWORD_EXPIRED 1330 502 #define ERROR_ACCOUNT_DISABLED 1331 503 #define ERROR_NONE_MAPPED 1332 504 #define ERROR_TOO_MANY_LUIDS_REQUESTED 1333 505 #define ERROR_LUIDS_EXHAUSTED 1334 506 #define ERROR_INVALID_SUB_AUTHORITY 1335 507 #define ERROR_INVALID_ACL 1336 508 #define ERROR_INVALID_SID 1337 509 #define ERROR_INVALID_SECURITY_DESCR 1338 510 #define ERROR_BAD_INHERITANCE_ACL 1340 511 #define ERROR_SERVER_DISABLED 1341 512 #define ERROR_SERVER_NOT_DISABLED 1342 513 #define ERROR_INVALID_ID_AUTHORITY 1343 514 #define ERROR_ALLOTTED_SPACE_EXCEEDED 1344 515 #define ERROR_INVALID_GROUP_ATTRIBUTES 1345 516 #define ERROR_BAD_IMPERSONATION_LEVEL 1346 517 #define ERROR_CANT_OPEN_ANONYMOUS 1347 518 #define ERROR_BAD_VALIDATION_CLASS 1348 519 #define ERROR_BAD_TOKEN_TYPE 1349 520 #define ERROR_NO_SECURITY_ON_OBJECT 1350 521 #define ERROR_CANT_ACCESS_DOMAIN_INFO 1351 522 #define ERROR_INVALID_SERVER_STATE 1352 523 #define ERROR_INVALID_DOMAIN_STATE 1353 524 #define ERROR_INVALID_DOMAIN_ROLE 1354 525 #define ERROR_NO_SUCH_DOMAIN 1355 526 #define ERROR_DOMAIN_EXISTS 1356 527 #define ERROR_DOMAIN_LIMIT_EXCEEDED 1357 528 #define ERROR_INTERNAL_DB_CORRUPTION 1358 529 #define ERROR_INTERNAL_ERROR 1359 530 #define ERROR_GENERIC_NOT_MAPPED 1360 531 #define ERROR_BAD_DESCRIPTOR_FORMAT 1361 532 #define ERROR_NOT_LOGON_PROCESS 1362 533 #define ERROR_LOGON_SESSION_EXISTS 1363 534 #define ERROR_NO_SUCH_PACKAGE 1364 535 #define ERROR_BAD_LOGON_SESSION_STATE 1365 536 #define ERROR_LOGON_SESSION_COLLISION 1366 537 #define ERROR_INVALID_LOGON_TYPE 1367 538 #define ERROR_CANNOT_IMPERSONATE 1368 539 #define ERROR_RXACT_INVALID_STATE 1369 540 #define ERROR_RXACT_COMMIT_FAILURE 1370 541 #define ERROR_SPECIAL_ACCOUNT 1371 542 #define ERROR_SPECIAL_GROUP 1372 543 #define ERROR_SPECIAL_USER 1373 544 #define ERROR_MEMBERS_PRIMARY_GROUP 1374 545 #define ERROR_TOKEN_ALREADY_IN_USE 1375 546 #define ERROR_NO_SUCH_ALIAS 1376 547 #define ERROR_MEMBER_NOT_IN_ALIAS 1377 548 #define ERROR_MEMBER_IN_ALIAS 1378 549 #define ERROR_ALIAS_EXISTS 1379 550 #define ERROR_LOGON_NOT_GRANTED 1380 551 #define ERROR_TOO_MANY_SECRETS 1381 552 #define ERROR_SECRET_TOO_LONG 1382 553 #define ERROR_INTERNAL_DB_ERROR 1383 554 #define ERROR_TOO_MANY_CONTEXT_IDS 1384 555 #define ERROR_LOGON_TYPE_NOT_GRANTED 1385 556 #define ERROR_NT_CROSS_ENCRYPTION_REQUIRED 1386 557 #define ERROR_NO_SUCH_MEMBER 1387 558 #define ERROR_INVALID_MEMBER 1388 559 #define ERROR_TOO_MANY_SIDS 1389 560 #define ERROR_LM_CROSS_ENCRYPTION_REQUIRED 1390 561 #define ERROR_NO_INHERITANCE 1391 562 #define ERROR_FILE_CORRUPT 1392 563 #define ERROR_DISK_CORRUPT 1393 564 #define ERROR_NO_USER_SESSION_KEY 1394 565 #define ERROR_LICENSE_QUOTA_EXCEEDED 1395 566 #define ERROR_INVALID_WINDOW_HANDLE 1400 567 #define ERROR_INVALID_MENU_HANDLE 1401 568 #define ERROR_INVALID_CURSOR_HANDLE 1402 569 #define ERROR_INVALID_ACCEL_HANDLE 1403 570 #define ERROR_INVALID_HOOK_HANDLE 1404 571 #define ERROR_INVALID_DWP_HANDLE 1405 572 #define ERROR_TLW_WITH_WSCHILD 1406 573 #define ERROR_CANNOT_FIND_WND_CLASS 1407 574 #define ERROR_WINDOW_OF_OTHER_THREAD 1408 575 #define ERROR_HOTKEY_ALREADY_REGISTERED 1409 576 #define ERROR_CLASS_ALREADY_EXISTS 1410 577 #define ERROR_CLASS_DOES_NOT_EXIST 1411 578 #define ERROR_CLASS_HAS_WINDOWS 1412 579 #define ERROR_INVALID_INDEX 1413 580 #define ERROR_INVALID_ICON_HANDLE 1414 581 #define ERROR_PRIVATE_DIALOG_INDEX 1415 582 #define ERROR_LISTBOX_ID_NOT_FOUND 1416 583 #define ERROR_NO_WILDCARD_CHARACTERS 1417 584 #define ERROR_CLIPBOARD_NOT_OPEN 1418 585 #define ERROR_HOTKEY_NOT_REGISTERED 1419 586 #define ERROR_WINDOW_NOT_DIALOG 1420 587 #define ERROR_CONTROL_ID_NOT_FOUND 1421 588 #define ERROR_INVALID_COMBOBOX_MESSAGE 1422 589 #define ERROR_WINDOW_NOT_COMBOBOX 1423 590 #define ERROR_INVALID_EDIT_HEIGHT 1424 591 #define ERROR_DC_NOT_FOUND 1425 592 #define ERROR_INVALID_HOOK_FILTER 1426 593 #define ERROR_INVALID_FILTER_PROC 1427 594 #define ERROR_HOOK_NEEDS_HMOD 1428 595 #define ERROR_GLOBAL_ONLY_HOOK 1429 596 #define ERROR_JOURNAL_HOOK_SET 1430 597 #define ERROR_HOOK_NOT_INSTALLED 1431 598 #define ERROR_INVALID_LB_MESSAGE 1432 599 #define ERROR_SETCOUNT_ON_BAD_LB 1433 600 #define ERROR_LB_WITHOUT_TABSTOPS 1434 601 #define ERROR_DESTROY_OBJECT_OF_OTHER_THREAD 1435 602 #define ERROR_CHILD_WINDOW_MENU 1436 603 #define ERROR_NO_SYSTEM_MENU 1437 604 #define ERROR_INVALID_MSGBOX_STYLE 1438 605 #define ERROR_INVALID_SPI_VALUE 1439 606 #define ERROR_SCREEN_ALREADY_LOCKED 1440 607 #define ERROR_HWNDS_HAVE_DIFF_PARENT 1441 608 #define ERROR_NOT_CHILD_WINDOW 1442 609 #define ERROR_INVALID_GW_COMMAND 1443 610 #define ERROR_INVALID_THREAD_ID 1444 611 #define ERROR_NON_MDICHILD_WINDOW 1445 612 #define ERROR_POPUP_ALREADY_ACTIVE 1446 613 #define ERROR_NO_SCROLLBARS 1447 614 #define ERROR_INVALID_SCROLLBAR_RANGE 1448 615 #define ERROR_INVALID_SHOWWIN_COMMAND 1449 616 #define ERROR_NO_SYSTEM_RESOURCES 1450 617 #define ERROR_NONPAGED_SYSTEM_RESOURCES 1451 618 #define ERROR_PAGED_SYSTEM_RESOURCES 1452 619 #define ERROR_WORKING_SET_QUOTA 1453 620 #define ERROR_PAGEFILE_QUOTA 1454 621 #define ERROR_COMMITMENT_LIMIT 1455 622 #define ERROR_MENU_ITEM_NOT_FOUND 1456 623 #define ERROR_INVALID_KEYBOARD_HANDLE 1457 624 #define ERROR_HOOK_TYPE_NOT_ALLOWED 1458 625 #define ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION 1459 626 #define ERROR_TIMEOUT 1460 627 #define ERROR_INVALID_MONITOR_HANDLE 1461 628 #define ERROR_EVENTLOG_FILE_CORRUPT 1500 629 #define ERROR_EVENTLOG_CANT_START 1501 630 #define ERROR_LOG_FILE_FULL 1502 631 #define ERROR_EVENTLOG_FILE_CHANGED 1503 632 #define ERROR_INSTALL_SERVICE 1601 633 #define ERROR_INSTALL_USEREXIT 1602 634 #define ERROR_INSTALL_FAILURE 1603 635 #define ERROR_INSTALL_SUSPEND 1604 636 #define ERROR_UNKNOWN_PRODUCT 1605 637 #define ERROR_UNKNOWN_FEATURE 1606 638 #define ERROR_UNKNOWN_COMPONENT 1607 639 #define ERROR_UNKNOWN_PROPERTY 1608 640 #define ERROR_INVALID_HANDLE_STATE 1609 641 #define ERROR_BAD_CONFIGURATION 1610 642 #define ERROR_INDEX_ABSENT 1611 643 #define ERROR_INSTALL_SOURCE_ABSENT 1612 644 #define ERROR_BAD_DATABASE_VERSION 1613 645 #define ERROR_PRODUCT_UNINSTALLED 1614 646 #define ERROR_BAD_QUERY_SYNTAX 1615 647 #define ERROR_INVALID_FIELD 1616 648 #define RPC_S_INVALID_STRING_BINDING 1700 649 #define RPC_S_WRONG_KIND_OF_BINDING 1701 650 #define RPC_S_INVALID_BINDING 1702 651 #define RPC_S_PROTSEQ_NOT_SUPPORTED 1703 652 #define RPC_S_INVALID_RPC_PROTSEQ 1704 653 #define RPC_S_INVALID_STRING_UUID 1705 654 #define RPC_S_INVALID_ENDPOINT_FORMAT 1706 655 #define RPC_S_INVALID_NET_ADDR 1707 656 #define RPC_S_NO_ENDPOINT_FOUND 1708 657 #define RPC_S_INVALID_TIMEOUT 1709 658 #define RPC_S_OBJECT_NOT_FOUND 1710 659 #define RPC_S_ALREADY_REGISTERED 1711 660 #define RPC_S_TYPE_ALREADY_REGISTERED 1712 661 #define RPC_S_ALREADY_LISTENING 1713