18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci Unix SMB/Netbios implementation. 48c2ecf20Sopenharmony_ci Version 1.9. 58c2ecf20Sopenharmony_ci NT error code constants 68c2ecf20Sopenharmony_ci Copyright (C) Andrew Tridgell 1992-2000 78c2ecf20Sopenharmony_ci Copyright (C) John H Terpstra 1996-2000 88c2ecf20Sopenharmony_ci Copyright (C) Luke Kenneth Casson Leighton 1996-2000 98c2ecf20Sopenharmony_ci Copyright (C) Paul Ashton 1998-2000 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci*/ 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci#ifndef _NTERR_H 168c2ecf20Sopenharmony_ci#define _NTERR_H 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_cistruct nt_err_code_struct { 198c2ecf20Sopenharmony_ci char *nt_errstr; 208c2ecf20Sopenharmony_ci __u32 nt_errcode; 218c2ecf20Sopenharmony_ci}; 228c2ecf20Sopenharmony_ci 238c2ecf20Sopenharmony_ciextern const struct nt_err_code_struct nt_errs[]; 248c2ecf20Sopenharmony_ci 258c2ecf20Sopenharmony_ci/* Win32 Status codes. */ 268c2ecf20Sopenharmony_ci#define NT_STATUS_MORE_ENTRIES 0x0105 278c2ecf20Sopenharmony_ci#define NT_ERROR_INVALID_PARAMETER 0x0057 288c2ecf20Sopenharmony_ci#define NT_ERROR_INSUFFICIENT_BUFFER 0x007a 298c2ecf20Sopenharmony_ci#define NT_STATUS_1804 0x070c 308c2ecf20Sopenharmony_ci#define NT_STATUS_NOTIFY_ENUM_DIR 0x010c 318c2ecf20Sopenharmony_ci 328c2ecf20Sopenharmony_ci/* 338c2ecf20Sopenharmony_ci * Win32 Error codes extracted using a loop in smbclient then printing a netmon 348c2ecf20Sopenharmony_ci * sniff to a file. 358c2ecf20Sopenharmony_ci */ 368c2ecf20Sopenharmony_ci 378c2ecf20Sopenharmony_ci#define NT_STATUS_OK 0x0000 388c2ecf20Sopenharmony_ci#define NT_STATUS_SOME_UNMAPPED 0x0107 398c2ecf20Sopenharmony_ci#define NT_STATUS_BUFFER_OVERFLOW 0x80000005 408c2ecf20Sopenharmony_ci#define NT_STATUS_NO_MORE_ENTRIES 0x8000001a 418c2ecf20Sopenharmony_ci#define NT_STATUS_MEDIA_CHANGED 0x8000001c 428c2ecf20Sopenharmony_ci#define NT_STATUS_END_OF_MEDIA 0x8000001e 438c2ecf20Sopenharmony_ci#define NT_STATUS_MEDIA_CHECK 0x80000020 448c2ecf20Sopenharmony_ci#define NT_STATUS_NO_DATA_DETECTED 0x8000001c 458c2ecf20Sopenharmony_ci#define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d 468c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288 478c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000288 488c2ecf20Sopenharmony_ci#define NT_STATUS_UNSUCCESSFUL 0xC0000000 | 0x0001 498c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_IMPLEMENTED 0xC0000000 | 0x0002 508c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_INFO_CLASS 0xC0000000 | 0x0003 518c2ecf20Sopenharmony_ci#define NT_STATUS_INFO_LENGTH_MISMATCH 0xC0000000 | 0x0004 528c2ecf20Sopenharmony_ci#define NT_STATUS_ACCESS_VIOLATION 0xC0000000 | 0x0005 538c2ecf20Sopenharmony_ci#define NT_STATUS_IN_PAGE_ERROR 0xC0000000 | 0x0006 548c2ecf20Sopenharmony_ci#define NT_STATUS_PAGEFILE_QUOTA 0xC0000000 | 0x0007 558c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_HANDLE 0xC0000000 | 0x0008 568c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_INITIAL_STACK 0xC0000000 | 0x0009 578c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_INITIAL_PC 0xC0000000 | 0x000a 588c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_CID 0xC0000000 | 0x000b 598c2ecf20Sopenharmony_ci#define NT_STATUS_TIMER_NOT_CANCELED 0xC0000000 | 0x000c 608c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER 0xC0000000 | 0x000d 618c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_DEVICE 0xC0000000 | 0x000e 628c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_FILE 0xC0000000 | 0x000f 638c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_DEVICE_REQUEST 0xC0000000 | 0x0010 648c2ecf20Sopenharmony_ci#define NT_STATUS_END_OF_FILE 0xC0000000 | 0x0011 658c2ecf20Sopenharmony_ci#define NT_STATUS_WRONG_VOLUME 0xC0000000 | 0x0012 668c2ecf20Sopenharmony_ci#define NT_STATUS_NO_MEDIA_IN_DEVICE 0xC0000000 | 0x0013 678c2ecf20Sopenharmony_ci#define NT_STATUS_UNRECOGNIZED_MEDIA 0xC0000000 | 0x0014 688c2ecf20Sopenharmony_ci#define NT_STATUS_NONEXISTENT_SECTOR 0xC0000000 | 0x0015 698c2ecf20Sopenharmony_ci#define NT_STATUS_MORE_PROCESSING_REQUIRED 0xC0000000 | 0x0016 708c2ecf20Sopenharmony_ci#define NT_STATUS_NO_MEMORY 0xC0000000 | 0x0017 718c2ecf20Sopenharmony_ci#define NT_STATUS_CONFLICTING_ADDRESSES 0xC0000000 | 0x0018 728c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_MAPPED_VIEW 0xC0000000 | 0x0019 738c2ecf20Sopenharmony_ci#define NT_STATUS_UNABLE_TO_FREE_VM 0x80000000 | 0x001a 748c2ecf20Sopenharmony_ci#define NT_STATUS_UNABLE_TO_DELETE_SECTION 0xC0000000 | 0x001b 758c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_SYSTEM_SERVICE 0xC0000000 | 0x001c 768c2ecf20Sopenharmony_ci#define NT_STATUS_ILLEGAL_INSTRUCTION 0xC0000000 | 0x001d 778c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LOCK_SEQUENCE 0xC0000000 | 0x001e 788c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_VIEW_SIZE 0xC0000000 | 0x001f 798c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_FILE_FOR_SECTION 0xC0000000 | 0x0020 808c2ecf20Sopenharmony_ci#define NT_STATUS_ALREADY_COMMITTED 0xC0000000 | 0x0021 818c2ecf20Sopenharmony_ci#define NT_STATUS_ACCESS_DENIED 0xC0000000 | 0x0022 828c2ecf20Sopenharmony_ci#define NT_STATUS_BUFFER_TOO_SMALL 0xC0000000 | 0x0023 838c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_TYPE_MISMATCH 0xC0000000 | 0x0024 848c2ecf20Sopenharmony_ci#define NT_STATUS_NONCONTINUABLE_EXCEPTION 0xC0000000 | 0x0025 858c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_DISPOSITION 0xC0000000 | 0x0026 868c2ecf20Sopenharmony_ci#define NT_STATUS_UNWIND 0xC0000000 | 0x0027 878c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_STACK 0xC0000000 | 0x0028 888c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_UNWIND_TARGET 0xC0000000 | 0x0029 898c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_LOCKED 0xC0000000 | 0x002a 908c2ecf20Sopenharmony_ci#define NT_STATUS_PARITY_ERROR 0xC0000000 | 0x002b 918c2ecf20Sopenharmony_ci#define NT_STATUS_UNABLE_TO_DECOMMIT_VM 0xC0000000 | 0x002c 928c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_COMMITTED 0xC0000000 | 0x002d 938c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PORT_ATTRIBUTES 0xC0000000 | 0x002e 948c2ecf20Sopenharmony_ci#define NT_STATUS_PORT_MESSAGE_TOO_LONG 0xC0000000 | 0x002f 958c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_MIX 0xC0000000 | 0x0030 968c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_QUOTA_LOWER 0xC0000000 | 0x0031 978c2ecf20Sopenharmony_ci#define NT_STATUS_DISK_CORRUPT_ERROR 0xC0000000 | 0x0032 988c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_NAME_INVALID 0xC0000000 | 0x0033 998c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_NAME_NOT_FOUND 0xC0000000 | 0x0034 1008c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_NAME_COLLISION 0xC0000000 | 0x0035 1018c2ecf20Sopenharmony_ci#define NT_STATUS_HANDLE_NOT_WAITABLE 0xC0000000 | 0x0036 1028c2ecf20Sopenharmony_ci#define NT_STATUS_PORT_DISCONNECTED 0xC0000000 | 0x0037 1038c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_ALREADY_ATTACHED 0xC0000000 | 0x0038 1048c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_PATH_INVALID 0xC0000000 | 0x0039 1058c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_PATH_NOT_FOUND 0xC0000000 | 0x003a 1068c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECT_PATH_SYNTAX_BAD 0xC0000000 | 0x003b 1078c2ecf20Sopenharmony_ci#define NT_STATUS_DATA_OVERRUN 0xC0000000 | 0x003c 1088c2ecf20Sopenharmony_ci#define NT_STATUS_DATA_LATE_ERROR 0xC0000000 | 0x003d 1098c2ecf20Sopenharmony_ci#define NT_STATUS_DATA_ERROR 0xC0000000 | 0x003e 1108c2ecf20Sopenharmony_ci#define NT_STATUS_CRC_ERROR 0xC0000000 | 0x003f 1118c2ecf20Sopenharmony_ci#define NT_STATUS_SECTION_TOO_BIG 0xC0000000 | 0x0040 1128c2ecf20Sopenharmony_ci#define NT_STATUS_PORT_CONNECTION_REFUSED 0xC0000000 | 0x0041 1138c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PORT_HANDLE 0xC0000000 | 0x0042 1148c2ecf20Sopenharmony_ci#define NT_STATUS_SHARING_VIOLATION 0xC0000000 | 0x0043 1158c2ecf20Sopenharmony_ci#define NT_STATUS_QUOTA_EXCEEDED 0xC0000000 | 0x0044 1168c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PAGE_PROTECTION 0xC0000000 | 0x0045 1178c2ecf20Sopenharmony_ci#define NT_STATUS_MUTANT_NOT_OWNED 0xC0000000 | 0x0046 1188c2ecf20Sopenharmony_ci#define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED 0xC0000000 | 0x0047 1198c2ecf20Sopenharmony_ci#define NT_STATUS_PORT_ALREADY_SET 0xC0000000 | 0x0048 1208c2ecf20Sopenharmony_ci#define NT_STATUS_SECTION_NOT_IMAGE 0xC0000000 | 0x0049 1218c2ecf20Sopenharmony_ci#define NT_STATUS_SUSPEND_COUNT_EXCEEDED 0xC0000000 | 0x004a 1228c2ecf20Sopenharmony_ci#define NT_STATUS_THREAD_IS_TERMINATING 0xC0000000 | 0x004b 1238c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_WORKING_SET_LIMIT 0xC0000000 | 0x004c 1248c2ecf20Sopenharmony_ci#define NT_STATUS_INCOMPATIBLE_FILE_MAP 0xC0000000 | 0x004d 1258c2ecf20Sopenharmony_ci#define NT_STATUS_SECTION_PROTECTION 0xC0000000 | 0x004e 1268c2ecf20Sopenharmony_ci#define NT_STATUS_EAS_NOT_SUPPORTED 0xC0000000 | 0x004f 1278c2ecf20Sopenharmony_ci#define NT_STATUS_EA_TOO_LARGE 0xC0000000 | 0x0050 1288c2ecf20Sopenharmony_ci#define NT_STATUS_NONEXISTENT_EA_ENTRY 0xC0000000 | 0x0051 1298c2ecf20Sopenharmony_ci#define NT_STATUS_NO_EAS_ON_FILE 0xC0000000 | 0x0052 1308c2ecf20Sopenharmony_ci#define NT_STATUS_EA_CORRUPT_ERROR 0xC0000000 | 0x0053 1318c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_LOCK_CONFLICT 0xC0000000 | 0x0054 1328c2ecf20Sopenharmony_ci#define NT_STATUS_LOCK_NOT_GRANTED 0xC0000000 | 0x0055 1338c2ecf20Sopenharmony_ci#define NT_STATUS_DELETE_PENDING 0xC0000000 | 0x0056 1348c2ecf20Sopenharmony_ci#define NT_STATUS_CTL_FILE_NOT_SUPPORTED 0xC0000000 | 0x0057 1358c2ecf20Sopenharmony_ci#define NT_STATUS_UNKNOWN_REVISION 0xC0000000 | 0x0058 1368c2ecf20Sopenharmony_ci#define NT_STATUS_REVISION_MISMATCH 0xC0000000 | 0x0059 1378c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_OWNER 0xC0000000 | 0x005a 1388c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PRIMARY_GROUP 0xC0000000 | 0x005b 1398c2ecf20Sopenharmony_ci#define NT_STATUS_NO_IMPERSONATION_TOKEN 0xC0000000 | 0x005c 1408c2ecf20Sopenharmony_ci#define NT_STATUS_CANT_DISABLE_MANDATORY 0xC0000000 | 0x005d 1418c2ecf20Sopenharmony_ci#define NT_STATUS_NO_LOGON_SERVERS 0xC0000000 | 0x005e 1428c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_LOGON_SESSION 0xC0000000 | 0x005f 1438c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_PRIVILEGE 0xC0000000 | 0x0060 1448c2ecf20Sopenharmony_ci#define NT_STATUS_PRIVILEGE_NOT_HELD 0xC0000000 | 0x0061 1458c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_ACCOUNT_NAME 0xC0000000 | 0x0062 1468c2ecf20Sopenharmony_ci#define NT_STATUS_USER_EXISTS 0xC0000000 | 0x0063 1478c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_USER 0xC0000000 | 0x0064 1488c2ecf20Sopenharmony_ci#define NT_STATUS_GROUP_EXISTS 0xC0000000 | 0x0065 1498c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_GROUP 0xC0000000 | 0x0066 1508c2ecf20Sopenharmony_ci#define NT_STATUS_MEMBER_IN_GROUP 0xC0000000 | 0x0067 1518c2ecf20Sopenharmony_ci#define NT_STATUS_MEMBER_NOT_IN_GROUP 0xC0000000 | 0x0068 1528c2ecf20Sopenharmony_ci#define NT_STATUS_LAST_ADMIN 0xC0000000 | 0x0069 1538c2ecf20Sopenharmony_ci#define NT_STATUS_WRONG_PASSWORD 0xC0000000 | 0x006a 1548c2ecf20Sopenharmony_ci#define NT_STATUS_ILL_FORMED_PASSWORD 0xC0000000 | 0x006b 1558c2ecf20Sopenharmony_ci#define NT_STATUS_PASSWORD_RESTRICTION 0xC0000000 | 0x006c 1568c2ecf20Sopenharmony_ci#define NT_STATUS_LOGON_FAILURE 0xC0000000 | 0x006d 1578c2ecf20Sopenharmony_ci#define NT_STATUS_ACCOUNT_RESTRICTION 0xC0000000 | 0x006e 1588c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LOGON_HOURS 0xC0000000 | 0x006f 1598c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_WORKSTATION 0xC0000000 | 0x0070 1608c2ecf20Sopenharmony_ci#define NT_STATUS_PASSWORD_EXPIRED 0xC0000000 | 0x0071 1618c2ecf20Sopenharmony_ci#define NT_STATUS_ACCOUNT_DISABLED 0xC0000000 | 0x0072 1628c2ecf20Sopenharmony_ci#define NT_STATUS_NONE_MAPPED 0xC0000000 | 0x0073 1638c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_LUIDS_REQUESTED 0xC0000000 | 0x0074 1648c2ecf20Sopenharmony_ci#define NT_STATUS_LUIDS_EXHAUSTED 0xC0000000 | 0x0075 1658c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_SUB_AUTHORITY 0xC0000000 | 0x0076 1668c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_ACL 0xC0000000 | 0x0077 1678c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_SID 0xC0000000 | 0x0078 1688c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_SECURITY_DESCR 0xC0000000 | 0x0079 1698c2ecf20Sopenharmony_ci#define NT_STATUS_PROCEDURE_NOT_FOUND 0xC0000000 | 0x007a 1708c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_IMAGE_FORMAT 0xC0000000 | 0x007b 1718c2ecf20Sopenharmony_ci#define NT_STATUS_NO_TOKEN 0xC0000000 | 0x007c 1728c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_INHERITANCE_ACL 0xC0000000 | 0x007d 1738c2ecf20Sopenharmony_ci#define NT_STATUS_RANGE_NOT_LOCKED 0xC0000000 | 0x007e 1748c2ecf20Sopenharmony_ci#define NT_STATUS_DISK_FULL 0xC0000000 | 0x007f 1758c2ecf20Sopenharmony_ci#define NT_STATUS_SERVER_DISABLED 0xC0000000 | 0x0080 1768c2ecf20Sopenharmony_ci#define NT_STATUS_SERVER_NOT_DISABLED 0xC0000000 | 0x0081 1778c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_GUIDS_REQUESTED 0xC0000000 | 0x0082 1788c2ecf20Sopenharmony_ci#define NT_STATUS_GUIDS_EXHAUSTED 0xC0000000 | 0x0083 1798c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_ID_AUTHORITY 0xC0000000 | 0x0084 1808c2ecf20Sopenharmony_ci#define NT_STATUS_AGENTS_EXHAUSTED 0xC0000000 | 0x0085 1818c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_VOLUME_LABEL 0xC0000000 | 0x0086 1828c2ecf20Sopenharmony_ci#define NT_STATUS_SECTION_NOT_EXTENDED 0xC0000000 | 0x0087 1838c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_MAPPED_DATA 0xC0000000 | 0x0088 1848c2ecf20Sopenharmony_ci#define NT_STATUS_RESOURCE_DATA_NOT_FOUND 0xC0000000 | 0x0089 1858c2ecf20Sopenharmony_ci#define NT_STATUS_RESOURCE_TYPE_NOT_FOUND 0xC0000000 | 0x008a 1868c2ecf20Sopenharmony_ci#define NT_STATUS_RESOURCE_NAME_NOT_FOUND 0xC0000000 | 0x008b 1878c2ecf20Sopenharmony_ci#define NT_STATUS_ARRAY_BOUNDS_EXCEEDED 0xC0000000 | 0x008c 1888c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_DENORMAL_OPERAND 0xC0000000 | 0x008d 1898c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_DIVIDE_BY_ZERO 0xC0000000 | 0x008e 1908c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_INEXACT_RESULT 0xC0000000 | 0x008f 1918c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_INVALID_OPERATION 0xC0000000 | 0x0090 1928c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_OVERFLOW 0xC0000000 | 0x0091 1938c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_STACK_CHECK 0xC0000000 | 0x0092 1948c2ecf20Sopenharmony_ci#define NT_STATUS_FLOAT_UNDERFLOW 0xC0000000 | 0x0093 1958c2ecf20Sopenharmony_ci#define NT_STATUS_INTEGER_DIVIDE_BY_ZERO 0xC0000000 | 0x0094 1968c2ecf20Sopenharmony_ci#define NT_STATUS_INTEGER_OVERFLOW 0xC0000000 | 0x0095 1978c2ecf20Sopenharmony_ci#define NT_STATUS_PRIVILEGED_INSTRUCTION 0xC0000000 | 0x0096 1988c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_PAGING_FILES 0xC0000000 | 0x0097 1998c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_INVALID 0xC0000000 | 0x0098 2008c2ecf20Sopenharmony_ci#define NT_STATUS_ALLOTTED_SPACE_EXCEEDED 0xC0000000 | 0x0099 2018c2ecf20Sopenharmony_ci#define NT_STATUS_INSUFFICIENT_RESOURCES 0xC0000000 | 0x009a 2028c2ecf20Sopenharmony_ci#define NT_STATUS_DFS_EXIT_PATH_FOUND 0xC0000000 | 0x009b 2038c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_DATA_ERROR 0xC0000000 | 0x009c 2048c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_NOT_CONNECTED 0xC0000000 | 0x009d 2058c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_POWER_FAILURE 0xC0000000 | 0x009e 2068c2ecf20Sopenharmony_ci#define NT_STATUS_FREE_VM_NOT_AT_BASE 0xC0000000 | 0x009f 2078c2ecf20Sopenharmony_ci#define NT_STATUS_MEMORY_NOT_ALLOCATED 0xC0000000 | 0x00a0 2088c2ecf20Sopenharmony_ci#define NT_STATUS_WORKING_SET_QUOTA 0xC0000000 | 0x00a1 2098c2ecf20Sopenharmony_ci#define NT_STATUS_MEDIA_WRITE_PROTECTED 0xC0000000 | 0x00a2 2108c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_NOT_READY 0xC0000000 | 0x00a3 2118c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_GROUP_ATTRIBUTES 0xC0000000 | 0x00a4 2128c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_IMPERSONATION_LEVEL 0xC0000000 | 0x00a5 2138c2ecf20Sopenharmony_ci#define NT_STATUS_CANT_OPEN_ANONYMOUS 0xC0000000 | 0x00a6 2148c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_VALIDATION_CLASS 0xC0000000 | 0x00a7 2158c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_TOKEN_TYPE 0xC0000000 | 0x00a8 2168c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_MASTER_BOOT_RECORD 0xC0000000 | 0x00a9 2178c2ecf20Sopenharmony_ci#define NT_STATUS_INSTRUCTION_MISALIGNMENT 0xC0000000 | 0x00aa 2188c2ecf20Sopenharmony_ci#define NT_STATUS_INSTANCE_NOT_AVAILABLE 0xC0000000 | 0x00ab 2198c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_NOT_AVAILABLE 0xC0000000 | 0x00ac 2208c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PIPE_STATE 0xC0000000 | 0x00ad 2218c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_BUSY 0xC0000000 | 0x00ae 2228c2ecf20Sopenharmony_ci#define NT_STATUS_ILLEGAL_FUNCTION 0xC0000000 | 0x00af 2238c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_DISCONNECTED 0xC0000000 | 0x00b0 2248c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_CLOSING 0xC0000000 | 0x00b1 2258c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_CONNECTED 0xC0000000 | 0x00b2 2268c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_LISTENING 0xC0000000 | 0x00b3 2278c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_READ_MODE 0xC0000000 | 0x00b4 2288c2ecf20Sopenharmony_ci#define NT_STATUS_IO_TIMEOUT 0xC0000000 | 0x00b5 2298c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_FORCED_CLOSED 0xC0000000 | 0x00b6 2308c2ecf20Sopenharmony_ci#define NT_STATUS_PROFILING_NOT_STARTED 0xC0000000 | 0x00b7 2318c2ecf20Sopenharmony_ci#define NT_STATUS_PROFILING_NOT_STOPPED 0xC0000000 | 0x00b8 2328c2ecf20Sopenharmony_ci#define NT_STATUS_COULD_NOT_INTERPRET 0xC0000000 | 0x00b9 2338c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_IS_A_DIRECTORY 0xC0000000 | 0x00ba 2348c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_SUPPORTED 0xC0000000 | 0x00bb 2358c2ecf20Sopenharmony_ci#define NT_STATUS_REMOTE_NOT_LISTENING 0xC0000000 | 0x00bc 2368c2ecf20Sopenharmony_ci#define NT_STATUS_DUPLICATE_NAME 0xC0000000 | 0x00bd 2378c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_NETWORK_PATH 0xC0000000 | 0x00be 2388c2ecf20Sopenharmony_ci#define NT_STATUS_NETWORK_BUSY 0xC0000000 | 0x00bf 2398c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_DOES_NOT_EXIST 0xC0000000 | 0x00c0 2408c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_COMMANDS 0xC0000000 | 0x00c1 2418c2ecf20Sopenharmony_ci#define NT_STATUS_ADAPTER_HARDWARE_ERROR 0xC0000000 | 0x00c2 2428c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_NETWORK_RESPONSE 0xC0000000 | 0x00c3 2438c2ecf20Sopenharmony_ci#define NT_STATUS_UNEXPECTED_NETWORK_ERROR 0xC0000000 | 0x00c4 2448c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_REMOTE_ADAPTER 0xC0000000 | 0x00c5 2458c2ecf20Sopenharmony_ci#define NT_STATUS_PRINT_QUEUE_FULL 0xC0000000 | 0x00c6 2468c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SPOOL_SPACE 0xC0000000 | 0x00c7 2478c2ecf20Sopenharmony_ci#define NT_STATUS_PRINT_CANCELLED 0xC0000000 | 0x00c8 2488c2ecf20Sopenharmony_ci#define NT_STATUS_NETWORK_NAME_DELETED 0xC0000000 | 0x00c9 2498c2ecf20Sopenharmony_ci#define NT_STATUS_NETWORK_ACCESS_DENIED 0xC0000000 | 0x00ca 2508c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_DEVICE_TYPE 0xC0000000 | 0x00cb 2518c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_NETWORK_NAME 0xC0000000 | 0x00cc 2528c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_NAMES 0xC0000000 | 0x00cd 2538c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_SESSIONS 0xC0000000 | 0x00ce 2548c2ecf20Sopenharmony_ci#define NT_STATUS_SHARING_PAUSED 0xC0000000 | 0x00cf 2558c2ecf20Sopenharmony_ci#define NT_STATUS_REQUEST_NOT_ACCEPTED 0xC0000000 | 0x00d0 2568c2ecf20Sopenharmony_ci#define NT_STATUS_REDIRECTOR_PAUSED 0xC0000000 | 0x00d1 2578c2ecf20Sopenharmony_ci#define NT_STATUS_NET_WRITE_FAULT 0xC0000000 | 0x00d2 2588c2ecf20Sopenharmony_ci#define NT_STATUS_PROFILING_AT_LIMIT 0xC0000000 | 0x00d3 2598c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_SAME_DEVICE 0xC0000000 | 0x00d4 2608c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_RENAMED 0xC0000000 | 0x00d5 2618c2ecf20Sopenharmony_ci#define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED 0xC0000000 | 0x00d6 2628c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SECURITY_ON_OBJECT 0xC0000000 | 0x00d7 2638c2ecf20Sopenharmony_ci#define NT_STATUS_CANT_WAIT 0xC0000000 | 0x00d8 2648c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_EMPTY 0xC0000000 | 0x00d9 2658c2ecf20Sopenharmony_ci#define NT_STATUS_CANT_ACCESS_DOMAIN_INFO 0xC0000000 | 0x00da 2668c2ecf20Sopenharmony_ci#define NT_STATUS_CANT_TERMINATE_SELF 0xC0000000 | 0x00db 2678c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_SERVER_STATE 0xC0000000 | 0x00dc 2688c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_DOMAIN_STATE 0xC0000000 | 0x00dd 2698c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_DOMAIN_ROLE 0xC0000000 | 0x00de 2708c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_DOMAIN 0xC0000000 | 0x00df 2718c2ecf20Sopenharmony_ci#define NT_STATUS_DOMAIN_EXISTS 0xC0000000 | 0x00e0 2728c2ecf20Sopenharmony_ci#define NT_STATUS_DOMAIN_LIMIT_EXCEEDED 0xC0000000 | 0x00e1 2738c2ecf20Sopenharmony_ci#define NT_STATUS_OPLOCK_NOT_GRANTED 0xC0000000 | 0x00e2 2748c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_OPLOCK_PROTOCOL 0xC0000000 | 0x00e3 2758c2ecf20Sopenharmony_ci#define NT_STATUS_INTERNAL_DB_CORRUPTION 0xC0000000 | 0x00e4 2768c2ecf20Sopenharmony_ci#define NT_STATUS_INTERNAL_ERROR 0xC0000000 | 0x00e5 2778c2ecf20Sopenharmony_ci#define NT_STATUS_GENERIC_NOT_MAPPED 0xC0000000 | 0x00e6 2788c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_DESCRIPTOR_FORMAT 0xC0000000 | 0x00e7 2798c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_USER_BUFFER 0xC0000000 | 0x00e8 2808c2ecf20Sopenharmony_ci#define NT_STATUS_UNEXPECTED_IO_ERROR 0xC0000000 | 0x00e9 2818c2ecf20Sopenharmony_ci#define NT_STATUS_UNEXPECTED_MM_CREATE_ERR 0xC0000000 | 0x00ea 2828c2ecf20Sopenharmony_ci#define NT_STATUS_UNEXPECTED_MM_MAP_ERROR 0xC0000000 | 0x00eb 2838c2ecf20Sopenharmony_ci#define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR 0xC0000000 | 0x00ec 2848c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_LOGON_PROCESS 0xC0000000 | 0x00ed 2858c2ecf20Sopenharmony_ci#define NT_STATUS_LOGON_SESSION_EXISTS 0xC0000000 | 0x00ee 2868c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_1 0xC0000000 | 0x00ef 2878c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_2 0xC0000000 | 0x00f0 2888c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_3 0xC0000000 | 0x00f1 2898c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_4 0xC0000000 | 0x00f2 2908c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_5 0xC0000000 | 0x00f3 2918c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_6 0xC0000000 | 0x00f4 2928c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_7 0xC0000000 | 0x00f5 2938c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_8 0xC0000000 | 0x00f6 2948c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_9 0xC0000000 | 0x00f7 2958c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_10 0xC0000000 | 0x00f8 2968c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_11 0xC0000000 | 0x00f9 2978c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PARAMETER_12 0xC0000000 | 0x00fa 2988c2ecf20Sopenharmony_ci#define NT_STATUS_REDIRECTOR_NOT_STARTED 0xC0000000 | 0x00fb 2998c2ecf20Sopenharmony_ci#define NT_STATUS_REDIRECTOR_STARTED 0xC0000000 | 0x00fc 3008c2ecf20Sopenharmony_ci#define NT_STATUS_STACK_OVERFLOW 0xC0000000 | 0x00fd 3018c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_PACKAGE 0xC0000000 | 0x00fe 3028c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_FUNCTION_TABLE 0xC0000000 | 0x00ff 3038c2ecf20Sopenharmony_ci#define NT_STATUS_DIRECTORY_NOT_EMPTY 0xC0000000 | 0x0101 3048c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_CORRUPT_ERROR 0xC0000000 | 0x0102 3058c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_A_DIRECTORY 0xC0000000 | 0x0103 3068c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_LOGON_SESSION_STATE 0xC0000000 | 0x0104 3078c2ecf20Sopenharmony_ci#define NT_STATUS_LOGON_SESSION_COLLISION 0xC0000000 | 0x0105 3088c2ecf20Sopenharmony_ci#define NT_STATUS_NAME_TOO_LONG 0xC0000000 | 0x0106 3098c2ecf20Sopenharmony_ci#define NT_STATUS_FILES_OPEN 0xC0000000 | 0x0107 3108c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_IN_USE 0xC0000000 | 0x0108 3118c2ecf20Sopenharmony_ci#define NT_STATUS_MESSAGE_NOT_FOUND 0xC0000000 | 0x0109 3128c2ecf20Sopenharmony_ci#define NT_STATUS_PROCESS_IS_TERMINATING 0xC0000000 | 0x010a 3138c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LOGON_TYPE 0xC0000000 | 0x010b 3148c2ecf20Sopenharmony_ci#define NT_STATUS_NO_GUID_TRANSLATION 0xC0000000 | 0x010c 3158c2ecf20Sopenharmony_ci#define NT_STATUS_CANNOT_IMPERSONATE 0xC0000000 | 0x010d 3168c2ecf20Sopenharmony_ci#define NT_STATUS_IMAGE_ALREADY_LOADED 0xC0000000 | 0x010e 3178c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_NOT_PRESENT 0xC0000000 | 0x010f 3188c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_LID_NOT_EXIST 0xC0000000 | 0x0110 3198c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_LID_ALREADY_OWNED 0xC0000000 | 0x0111 3208c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_NOT_LID_OWNER 0xC0000000 | 0x0112 3218c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_INVALID_COMMAND 0xC0000000 | 0x0113 3228c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_INVALID_LID 0xC0000000 | 0x0114 3238c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE 0xC0000000 | 0x0115 3248c2ecf20Sopenharmony_ci#define NT_STATUS_ABIOS_INVALID_SELECTOR 0xC0000000 | 0x0116 3258c2ecf20Sopenharmony_ci#define NT_STATUS_NO_LDT 0xC0000000 | 0x0117 3268c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LDT_SIZE 0xC0000000 | 0x0118 3278c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LDT_OFFSET 0xC0000000 | 0x0119 3288c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LDT_DESCRIPTOR 0xC0000000 | 0x011a 3298c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_IMAGE_NE_FORMAT 0xC0000000 | 0x011b 3308c2ecf20Sopenharmony_ci#define NT_STATUS_RXACT_INVALID_STATE 0xC0000000 | 0x011c 3318c2ecf20Sopenharmony_ci#define NT_STATUS_RXACT_COMMIT_FAILURE 0xC0000000 | 0x011d 3328c2ecf20Sopenharmony_ci#define NT_STATUS_MAPPED_FILE_SIZE_ZERO 0xC0000000 | 0x011e 3338c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_OPENED_FILES 0xC0000000 | 0x011f 3348c2ecf20Sopenharmony_ci#define NT_STATUS_CANCELLED 0xC0000000 | 0x0120 3358c2ecf20Sopenharmony_ci#define NT_STATUS_CANNOT_DELETE 0xC0000000 | 0x0121 3368c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_COMPUTER_NAME 0xC0000000 | 0x0122 3378c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_DELETED 0xC0000000 | 0x0123 3388c2ecf20Sopenharmony_ci#define NT_STATUS_SPECIAL_ACCOUNT 0xC0000000 | 0x0124 3398c2ecf20Sopenharmony_ci#define NT_STATUS_SPECIAL_GROUP 0xC0000000 | 0x0125 3408c2ecf20Sopenharmony_ci#define NT_STATUS_SPECIAL_USER 0xC0000000 | 0x0126 3418c2ecf20Sopenharmony_ci#define NT_STATUS_MEMBERS_PRIMARY_GROUP 0xC0000000 | 0x0127 3428c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_CLOSED 0xC0000000 | 0x0128 3438c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_THREADS 0xC0000000 | 0x0129 3448c2ecf20Sopenharmony_ci#define NT_STATUS_THREAD_NOT_IN_PROCESS 0xC0000000 | 0x012a 3458c2ecf20Sopenharmony_ci#define NT_STATUS_TOKEN_ALREADY_IN_USE 0xC0000000 | 0x012b 3468c2ecf20Sopenharmony_ci#define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED 0xC0000000 | 0x012c 3478c2ecf20Sopenharmony_ci#define NT_STATUS_COMMITMENT_LIMIT 0xC0000000 | 0x012d 3488c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_IMAGE_LE_FORMAT 0xC0000000 | 0x012e 3498c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_IMAGE_NOT_MZ 0xC0000000 | 0x012f 3508c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_IMAGE_PROTECT 0xC0000000 | 0x0130 3518c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_IMAGE_WIN_16 0xC0000000 | 0x0131 3528c2ecf20Sopenharmony_ci#define NT_STATUS_LOGON_SERVER_CONFLICT 0xC0000000 | 0x0132 3538c2ecf20Sopenharmony_ci#define NT_STATUS_TIME_DIFFERENCE_AT_DC 0xC0000000 | 0x0133 3548c2ecf20Sopenharmony_ci#define NT_STATUS_SYNCHRONIZATION_REQUIRED 0xC0000000 | 0x0134 3558c2ecf20Sopenharmony_ci#define NT_STATUS_DLL_NOT_FOUND 0xC0000000 | 0x0135 3568c2ecf20Sopenharmony_ci#define NT_STATUS_OPEN_FAILED 0xC0000000 | 0x0136 3578c2ecf20Sopenharmony_ci#define NT_STATUS_IO_PRIVILEGE_FAILED 0xC0000000 | 0x0137 3588c2ecf20Sopenharmony_ci#define NT_STATUS_ORDINAL_NOT_FOUND 0xC0000000 | 0x0138 3598c2ecf20Sopenharmony_ci#define NT_STATUS_ENTRYPOINT_NOT_FOUND 0xC0000000 | 0x0139 3608c2ecf20Sopenharmony_ci#define NT_STATUS_CONTROL_C_EXIT 0xC0000000 | 0x013a 3618c2ecf20Sopenharmony_ci#define NT_STATUS_LOCAL_DISCONNECT 0xC0000000 | 0x013b 3628c2ecf20Sopenharmony_ci#define NT_STATUS_REMOTE_DISCONNECT 0xC0000000 | 0x013c 3638c2ecf20Sopenharmony_ci#define NT_STATUS_REMOTE_RESOURCES 0xC0000000 | 0x013d 3648c2ecf20Sopenharmony_ci#define NT_STATUS_LINK_FAILED 0xC0000000 | 0x013e 3658c2ecf20Sopenharmony_ci#define NT_STATUS_LINK_TIMEOUT 0xC0000000 | 0x013f 3668c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_CONNECTION 0xC0000000 | 0x0140 3678c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_ADDRESS 0xC0000000 | 0x0141 3688c2ecf20Sopenharmony_ci#define NT_STATUS_DLL_INIT_FAILED 0xC0000000 | 0x0142 3698c2ecf20Sopenharmony_ci#define NT_STATUS_MISSING_SYSTEMFILE 0xC0000000 | 0x0143 3708c2ecf20Sopenharmony_ci#define NT_STATUS_UNHANDLED_EXCEPTION 0xC0000000 | 0x0144 3718c2ecf20Sopenharmony_ci#define NT_STATUS_APP_INIT_FAILURE 0xC0000000 | 0x0145 3728c2ecf20Sopenharmony_ci#define NT_STATUS_PAGEFILE_CREATE_FAILED 0xC0000000 | 0x0146 3738c2ecf20Sopenharmony_ci#define NT_STATUS_NO_PAGEFILE 0xC0000000 | 0x0147 3748c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_LEVEL 0xC0000000 | 0x0148 3758c2ecf20Sopenharmony_ci#define NT_STATUS_WRONG_PASSWORD_CORE 0xC0000000 | 0x0149 3768c2ecf20Sopenharmony_ci#define NT_STATUS_ILLEGAL_FLOAT_CONTEXT 0xC0000000 | 0x014a 3778c2ecf20Sopenharmony_ci#define NT_STATUS_PIPE_BROKEN 0xC0000000 | 0x014b 3788c2ecf20Sopenharmony_ci#define NT_STATUS_REGISTRY_CORRUPT 0xC0000000 | 0x014c 3798c2ecf20Sopenharmony_ci#define NT_STATUS_REGISTRY_IO_FAILED 0xC0000000 | 0x014d 3808c2ecf20Sopenharmony_ci#define NT_STATUS_NO_EVENT_PAIR 0xC0000000 | 0x014e 3818c2ecf20Sopenharmony_ci#define NT_STATUS_UNRECOGNIZED_VOLUME 0xC0000000 | 0x014f 3828c2ecf20Sopenharmony_ci#define NT_STATUS_SERIAL_NO_DEVICE_INITED 0xC0000000 | 0x0150 3838c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_ALIAS 0xC0000000 | 0x0151 3848c2ecf20Sopenharmony_ci#define NT_STATUS_MEMBER_NOT_IN_ALIAS 0xC0000000 | 0x0152 3858c2ecf20Sopenharmony_ci#define NT_STATUS_MEMBER_IN_ALIAS 0xC0000000 | 0x0153 3868c2ecf20Sopenharmony_ci#define NT_STATUS_ALIAS_EXISTS 0xC0000000 | 0x0154 3878c2ecf20Sopenharmony_ci#define NT_STATUS_LOGON_NOT_GRANTED 0xC0000000 | 0x0155 3888c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_SECRETS 0xC0000000 | 0x0156 3898c2ecf20Sopenharmony_ci#define NT_STATUS_SECRET_TOO_LONG 0xC0000000 | 0x0157 3908c2ecf20Sopenharmony_ci#define NT_STATUS_INTERNAL_DB_ERROR 0xC0000000 | 0x0158 3918c2ecf20Sopenharmony_ci#define NT_STATUS_FULLSCREEN_MODE 0xC0000000 | 0x0159 3928c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_CONTEXT_IDS 0xC0000000 | 0x015a 3938c2ecf20Sopenharmony_ci#define NT_STATUS_LOGON_TYPE_NOT_GRANTED 0xC0000000 | 0x015b 3948c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_REGISTRY_FILE 0xC0000000 | 0x015c 3958c2ecf20Sopenharmony_ci#define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED 0xC0000000 | 0x015d 3968c2ecf20Sopenharmony_ci#define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR 0xC0000000 | 0x015e 3978c2ecf20Sopenharmony_ci#define NT_STATUS_FT_MISSING_MEMBER 0xC0000000 | 0x015f 3988c2ecf20Sopenharmony_ci#define NT_STATUS_ILL_FORMED_SERVICE_ENTRY 0xC0000000 | 0x0160 3998c2ecf20Sopenharmony_ci#define NT_STATUS_ILLEGAL_CHARACTER 0xC0000000 | 0x0161 4008c2ecf20Sopenharmony_ci#define NT_STATUS_UNMAPPABLE_CHARACTER 0xC0000000 | 0x0162 4018c2ecf20Sopenharmony_ci#define NT_STATUS_UNDEFINED_CHARACTER 0xC0000000 | 0x0163 4028c2ecf20Sopenharmony_ci#define NT_STATUS_FLOPPY_VOLUME 0xC0000000 | 0x0164 4038c2ecf20Sopenharmony_ci#define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND 0xC0000000 | 0x0165 4048c2ecf20Sopenharmony_ci#define NT_STATUS_FLOPPY_WRONG_CYLINDER 0xC0000000 | 0x0166 4058c2ecf20Sopenharmony_ci#define NT_STATUS_FLOPPY_UNKNOWN_ERROR 0xC0000000 | 0x0167 4068c2ecf20Sopenharmony_ci#define NT_STATUS_FLOPPY_BAD_REGISTERS 0xC0000000 | 0x0168 4078c2ecf20Sopenharmony_ci#define NT_STATUS_DISK_RECALIBRATE_FAILED 0xC0000000 | 0x0169 4088c2ecf20Sopenharmony_ci#define NT_STATUS_DISK_OPERATION_FAILED 0xC0000000 | 0x016a 4098c2ecf20Sopenharmony_ci#define NT_STATUS_DISK_RESET_FAILED 0xC0000000 | 0x016b 4108c2ecf20Sopenharmony_ci#define NT_STATUS_SHARED_IRQ_BUSY 0xC0000000 | 0x016c 4118c2ecf20Sopenharmony_ci#define NT_STATUS_FT_ORPHANING 0xC0000000 | 0x016d 4128c2ecf20Sopenharmony_ci#define NT_STATUS_PARTITION_FAILURE 0xC0000000 | 0x0172 4138c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_BLOCK_LENGTH 0xC0000000 | 0x0173 4148c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_NOT_PARTITIONED 0xC0000000 | 0x0174 4158c2ecf20Sopenharmony_ci#define NT_STATUS_UNABLE_TO_LOCK_MEDIA 0xC0000000 | 0x0175 4168c2ecf20Sopenharmony_ci#define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA 0xC0000000 | 0x0176 4178c2ecf20Sopenharmony_ci#define NT_STATUS_EOM_OVERFLOW 0xC0000000 | 0x0177 4188c2ecf20Sopenharmony_ci#define NT_STATUS_NO_MEDIA 0xC0000000 | 0x0178 4198c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_MEMBER 0xC0000000 | 0x017a 4208c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_MEMBER 0xC0000000 | 0x017b 4218c2ecf20Sopenharmony_ci#define NT_STATUS_KEY_DELETED 0xC0000000 | 0x017c 4228c2ecf20Sopenharmony_ci#define NT_STATUS_NO_LOG_SPACE 0xC0000000 | 0x017d 4238c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_SIDS 0xC0000000 | 0x017e 4248c2ecf20Sopenharmony_ci#define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED 0xC0000000 | 0x017f 4258c2ecf20Sopenharmony_ci#define NT_STATUS_KEY_HAS_CHILDREN 0xC0000000 | 0x0180 4268c2ecf20Sopenharmony_ci#define NT_STATUS_CHILD_MUST_BE_VOLATILE 0xC0000000 | 0x0181 4278c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_CONFIGURATION_ERROR 0xC0000000 | 0x0182 4288c2ecf20Sopenharmony_ci#define NT_STATUS_DRIVER_INTERNAL_ERROR 0xC0000000 | 0x0183 4298c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_DEVICE_STATE 0xC0000000 | 0x0184 4308c2ecf20Sopenharmony_ci#define NT_STATUS_IO_DEVICE_ERROR 0xC0000000 | 0x0185 4318c2ecf20Sopenharmony_ci#define NT_STATUS_DEVICE_PROTOCOL_ERROR 0xC0000000 | 0x0186 4328c2ecf20Sopenharmony_ci#define NT_STATUS_BACKUP_CONTROLLER 0xC0000000 | 0x0187 4338c2ecf20Sopenharmony_ci#define NT_STATUS_LOG_FILE_FULL 0xC0000000 | 0x0188 4348c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_LATE 0xC0000000 | 0x0189 4358c2ecf20Sopenharmony_ci#define NT_STATUS_NO_TRUST_LSA_SECRET 0xC0000000 | 0x018a 4368c2ecf20Sopenharmony_ci#define NT_STATUS_NO_TRUST_SAM_ACCOUNT 0xC0000000 | 0x018b 4378c2ecf20Sopenharmony_ci#define NT_STATUS_TRUSTED_DOMAIN_FAILURE 0xC0000000 | 0x018c 4388c2ecf20Sopenharmony_ci#define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE 0xC0000000 | 0x018d 4398c2ecf20Sopenharmony_ci#define NT_STATUS_EVENTLOG_FILE_CORRUPT 0xC0000000 | 0x018e 4408c2ecf20Sopenharmony_ci#define NT_STATUS_EVENTLOG_CANT_START 0xC0000000 | 0x018f 4418c2ecf20Sopenharmony_ci#define NT_STATUS_TRUST_FAILURE 0xC0000000 | 0x0190 4428c2ecf20Sopenharmony_ci#define NT_STATUS_MUTANT_LIMIT_EXCEEDED 0xC0000000 | 0x0191 4438c2ecf20Sopenharmony_ci#define NT_STATUS_NETLOGON_NOT_STARTED 0xC0000000 | 0x0192 4448c2ecf20Sopenharmony_ci#define NT_STATUS_ACCOUNT_EXPIRED 0xC0000000 | 0x0193 4458c2ecf20Sopenharmony_ci#define NT_STATUS_POSSIBLE_DEADLOCK 0xC0000000 | 0x0194 4468c2ecf20Sopenharmony_ci#define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT 0xC0000000 | 0x0195 4478c2ecf20Sopenharmony_ci#define NT_STATUS_REMOTE_SESSION_LIMIT 0xC0000000 | 0x0196 4488c2ecf20Sopenharmony_ci#define NT_STATUS_EVENTLOG_FILE_CHANGED 0xC0000000 | 0x0197 4498c2ecf20Sopenharmony_ci#define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 0xC0000000 | 0x0198 4508c2ecf20Sopenharmony_ci#define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT 0xC0000000 | 0x0199 4518c2ecf20Sopenharmony_ci#define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT 0xC0000000 | 0x019a 4528c2ecf20Sopenharmony_ci#define NT_STATUS_DOMAIN_TRUST_INCONSISTENT 0xC0000000 | 0x019b 4538c2ecf20Sopenharmony_ci#define NT_STATUS_FS_DRIVER_REQUIRED 0xC0000000 | 0x019c 4548c2ecf20Sopenharmony_ci#define NT_STATUS_NO_USER_SESSION_KEY 0xC0000000 | 0x0202 4558c2ecf20Sopenharmony_ci#define NT_STATUS_USER_SESSION_DELETED 0xC0000000 | 0x0203 4568c2ecf20Sopenharmony_ci#define NT_STATUS_RESOURCE_LANG_NOT_FOUND 0xC0000000 | 0x0204 4578c2ecf20Sopenharmony_ci#define NT_STATUS_INSUFF_SERVER_RESOURCES 0xC0000000 | 0x0205 4588c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_BUFFER_SIZE 0xC0000000 | 0x0206 4598c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_ADDRESS_COMPONENT 0xC0000000 | 0x0207 4608c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_ADDRESS_WILDCARD 0xC0000000 | 0x0208 4618c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_ADDRESSES 0xC0000000 | 0x0209 4628c2ecf20Sopenharmony_ci#define NT_STATUS_ADDRESS_ALREADY_EXISTS 0xC0000000 | 0x020a 4638c2ecf20Sopenharmony_ci#define NT_STATUS_ADDRESS_CLOSED 0xC0000000 | 0x020b 4648c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_DISCONNECTED 0xC0000000 | 0x020c 4658c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_RESET 0xC0000000 | 0x020d 4668c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_NODES 0xC0000000 | 0x020e 4678c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_ABORTED 0xC0000000 | 0x020f 4688c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_TIMED_OUT 0xC0000000 | 0x0210 4698c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_NO_RELEASE 0xC0000000 | 0x0211 4708c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_NO_MATCH 0xC0000000 | 0x0212 4718c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_RESPONDED 0xC0000000 | 0x0213 4728c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_INVALID_ID 0xC0000000 | 0x0214 4738c2ecf20Sopenharmony_ci#define NT_STATUS_TRANSACTION_INVALID_TYPE 0xC0000000 | 0x0215 4748c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_SERVER_SESSION 0xC0000000 | 0x0216 4758c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_CLIENT_SESSION 0xC0000000 | 0x0217 4768c2ecf20Sopenharmony_ci#define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE 0xC0000000 | 0x0218 4778c2ecf20Sopenharmony_ci#define NT_STATUS_DEBUG_ATTACH_FAILED 0xC0000000 | 0x0219 4788c2ecf20Sopenharmony_ci#define NT_STATUS_SYSTEM_PROCESS_TERMINATED 0xC0000000 | 0x021a 4798c2ecf20Sopenharmony_ci#define NT_STATUS_DATA_NOT_ACCEPTED 0xC0000000 | 0x021b 4808c2ecf20Sopenharmony_ci#define NT_STATUS_NO_BROWSER_SERVERS_FOUND 0xC0000000 | 0x021c 4818c2ecf20Sopenharmony_ci#define NT_STATUS_VDM_HARD_ERROR 0xC0000000 | 0x021d 4828c2ecf20Sopenharmony_ci#define NT_STATUS_DRIVER_CANCEL_TIMEOUT 0xC0000000 | 0x021e 4838c2ecf20Sopenharmony_ci#define NT_STATUS_REPLY_MESSAGE_MISMATCH 0xC0000000 | 0x021f 4848c2ecf20Sopenharmony_ci#define NT_STATUS_MAPPED_ALIGNMENT 0xC0000000 | 0x0220 4858c2ecf20Sopenharmony_ci#define NT_STATUS_IMAGE_CHECKSUM_MISMATCH 0xC0000000 | 0x0221 4868c2ecf20Sopenharmony_ci#define NT_STATUS_LOST_WRITEBEHIND_DATA 0xC0000000 | 0x0222 4878c2ecf20Sopenharmony_ci#define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID 0xC0000000 | 0x0223 4888c2ecf20Sopenharmony_ci#define NT_STATUS_PASSWORD_MUST_CHANGE 0xC0000000 | 0x0224 4898c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_FOUND 0xC0000000 | 0x0225 4908c2ecf20Sopenharmony_ci#define NT_STATUS_NOT_TINY_STREAM 0xC0000000 | 0x0226 4918c2ecf20Sopenharmony_ci#define NT_STATUS_RECOVERY_FAILURE 0xC0000000 | 0x0227 4928c2ecf20Sopenharmony_ci#define NT_STATUS_STACK_OVERFLOW_READ 0xC0000000 | 0x0228 4938c2ecf20Sopenharmony_ci#define NT_STATUS_FAIL_CHECK 0xC0000000 | 0x0229 4948c2ecf20Sopenharmony_ci#define NT_STATUS_DUPLICATE_OBJECTID 0xC0000000 | 0x022a 4958c2ecf20Sopenharmony_ci#define NT_STATUS_OBJECTID_EXISTS 0xC0000000 | 0x022b 4968c2ecf20Sopenharmony_ci#define NT_STATUS_CONVERT_TO_LARGE 0xC0000000 | 0x022c 4978c2ecf20Sopenharmony_ci#define NT_STATUS_RETRY 0xC0000000 | 0x022d 4988c2ecf20Sopenharmony_ci#define NT_STATUS_FOUND_OUT_OF_SCOPE 0xC0000000 | 0x022e 4998c2ecf20Sopenharmony_ci#define NT_STATUS_ALLOCATE_BUCKET 0xC0000000 | 0x022f 5008c2ecf20Sopenharmony_ci#define NT_STATUS_PROPSET_NOT_FOUND 0xC0000000 | 0x0230 5018c2ecf20Sopenharmony_ci#define NT_STATUS_MARSHALL_OVERFLOW 0xC0000000 | 0x0231 5028c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_VARIANT 0xC0000000 | 0x0232 5038c2ecf20Sopenharmony_ci#define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND 0xC0000000 | 0x0233 5048c2ecf20Sopenharmony_ci#define NT_STATUS_ACCOUNT_LOCKED_OUT 0xC0000000 | 0x0234 5058c2ecf20Sopenharmony_ci#define NT_STATUS_HANDLE_NOT_CLOSABLE 0xC0000000 | 0x0235 5068c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_REFUSED 0xC0000000 | 0x0236 5078c2ecf20Sopenharmony_ci#define NT_STATUS_GRACEFUL_DISCONNECT 0xC0000000 | 0x0237 5088c2ecf20Sopenharmony_ci#define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED 0xC0000000 | 0x0238 5098c2ecf20Sopenharmony_ci#define NT_STATUS_ADDRESS_NOT_ASSOCIATED 0xC0000000 | 0x0239 5108c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_INVALID 0xC0000000 | 0x023a 5118c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_ACTIVE 0xC0000000 | 0x023b 5128c2ecf20Sopenharmony_ci#define NT_STATUS_NETWORK_UNREACHABLE 0xC0000000 | 0x023c 5138c2ecf20Sopenharmony_ci#define NT_STATUS_HOST_UNREACHABLE 0xC0000000 | 0x023d 5148c2ecf20Sopenharmony_ci#define NT_STATUS_PROTOCOL_UNREACHABLE 0xC0000000 | 0x023e 5158c2ecf20Sopenharmony_ci#define NT_STATUS_PORT_UNREACHABLE 0xC0000000 | 0x023f 5168c2ecf20Sopenharmony_ci#define NT_STATUS_REQUEST_ABORTED 0xC0000000 | 0x0240 5178c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_ABORTED 0xC0000000 | 0x0241 5188c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_COMPRESSION_BUFFER 0xC0000000 | 0x0242 5198c2ecf20Sopenharmony_ci#define NT_STATUS_USER_MAPPED_FILE 0xC0000000 | 0x0243 5208c2ecf20Sopenharmony_ci#define NT_STATUS_AUDIT_FAILED 0xC0000000 | 0x0244 5218c2ecf20Sopenharmony_ci#define NT_STATUS_TIMER_RESOLUTION_NOT_SET 0xC0000000 | 0x0245 5228c2ecf20Sopenharmony_ci#define NT_STATUS_CONNECTION_COUNT_LIMIT 0xC0000000 | 0x0246 5238c2ecf20Sopenharmony_ci#define NT_STATUS_LOGIN_TIME_RESTRICTION 0xC0000000 | 0x0247 5248c2ecf20Sopenharmony_ci#define NT_STATUS_LOGIN_WKSTA_RESTRICTION 0xC0000000 | 0x0248 5258c2ecf20Sopenharmony_ci#define NT_STATUS_IMAGE_MP_UP_MISMATCH 0xC0000000 | 0x0249 5268c2ecf20Sopenharmony_ci#define NT_STATUS_INSUFFICIENT_LOGON_INFO 0xC0000000 | 0x0250 5278c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_DLL_ENTRYPOINT 0xC0000000 | 0x0251 5288c2ecf20Sopenharmony_ci#define NT_STATUS_BAD_SERVICE_ENTRYPOINT 0xC0000000 | 0x0252 5298c2ecf20Sopenharmony_ci#define NT_STATUS_LPC_REPLY_LOST 0xC0000000 | 0x0253 5308c2ecf20Sopenharmony_ci#define NT_STATUS_IP_ADDRESS_CONFLICT1 0xC0000000 | 0x0254 5318c2ecf20Sopenharmony_ci#define NT_STATUS_IP_ADDRESS_CONFLICT2 0xC0000000 | 0x0255 5328c2ecf20Sopenharmony_ci#define NT_STATUS_REGISTRY_QUOTA_LIMIT 0xC0000000 | 0x0256 5338c2ecf20Sopenharmony_ci#define NT_STATUS_PATH_NOT_COVERED 0xC0000000 | 0x0257 5348c2ecf20Sopenharmony_ci#define NT_STATUS_NO_CALLBACK_ACTIVE 0xC0000000 | 0x0258 5358c2ecf20Sopenharmony_ci#define NT_STATUS_LICENSE_QUOTA_EXCEEDED 0xC0000000 | 0x0259 5368c2ecf20Sopenharmony_ci#define NT_STATUS_PWD_TOO_SHORT 0xC0000000 | 0x025a 5378c2ecf20Sopenharmony_ci#define NT_STATUS_PWD_TOO_RECENT 0xC0000000 | 0x025b 5388c2ecf20Sopenharmony_ci#define NT_STATUS_PWD_HISTORY_CONFLICT 0xC0000000 | 0x025c 5398c2ecf20Sopenharmony_ci#define NT_STATUS_PLUGPLAY_NO_DEVICE 0xC0000000 | 0x025e 5408c2ecf20Sopenharmony_ci#define NT_STATUS_UNSUPPORTED_COMPRESSION 0xC0000000 | 0x025f 5418c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_HW_PROFILE 0xC0000000 | 0x0260 5428c2ecf20Sopenharmony_ci#define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH 0xC0000000 | 0x0261 5438c2ecf20Sopenharmony_ci#define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND 0xC0000000 | 0x0262 5448c2ecf20Sopenharmony_ci#define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND 0xC0000000 | 0x0263 5458c2ecf20Sopenharmony_ci#define NT_STATUS_RESOURCE_NOT_OWNED 0xC0000000 | 0x0264 5468c2ecf20Sopenharmony_ci#define NT_STATUS_TOO_MANY_LINKS 0xC0000000 | 0x0265 5478c2ecf20Sopenharmony_ci#define NT_STATUS_QUOTA_LIST_INCONSISTENT 0xC0000000 | 0x0266 5488c2ecf20Sopenharmony_ci#define NT_STATUS_FILE_IS_OFFLINE 0xC0000000 | 0x0267 5498c2ecf20Sopenharmony_ci#define NT_STATUS_NO_SUCH_JOB 0xC0000000 | 0xEDE /* scheduler */ 5508c2ecf20Sopenharmony_ci 5518c2ecf20Sopenharmony_ci#endif /* _NTERR_H */ 552