[{"id":3672926,"web_url":"http://patchwork.ozlabs.org/comment/3672926/","msgid":"<CAH2r5mtWhJBg-AN-WFzHq6yYufKnGurScCDdBXED8Fjo5aCMOw@mail.gmail.com>","list_archive_url":null,"date":"2026-04-02T22:35:46","subject":"Re: [PATCH v3 01/13] smb/client: annotate nterr.h with DOS error\n codes","submitter":{"id":510,"url":"http://patchwork.ozlabs.org/api/people/510/","name":"Steve French","email":"smfrench@gmail.com"},"content":"Maybe fix the checkpatch warning by converting tab to space at end of\nthese long lines so they stay under 100 characters?\n\n/smb3-kernel$ ./scripts/checkpatch.pl 13/0*\n--------------------------------------------------------------\n13/0001-smb-client-annotate-nterr.h-with-DOS-error-codes.patch\n--------------------------------------------------------------\nWARNING: Prefer a maximum 75 chars per line (possible unwrapped commit\ndescription?)\n#46:\n            # Do not move if it's already an auto-generated mapping comment\n\nWARNING: line length of 101 exceeds 100 columns\n#1044: FILE: fs/smb/client/nterr.h:414:\n+#define NT_STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT (0xC0000000 |\n0x016e) // ERRHRD, ERRgeneral\n\nWARNING: line length of 102 exceeds 100 columns\n#1082: FILE: fs/smb/client/nterr.h:452:\n+#define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT (0xC0000000 |\n0x0198) // ERRDOS, ERRnoaccess\n\nWARNING: line length of 102 exceeds 100 columns\n#1083: FILE: fs/smb/client/nterr.h:453:\n+#define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT (0xC0000000 |\n0x0199) // ERRDOS, ERRnoaccess\n\nWARNING: line length of 101 exceeds 100 columns\n#1121: FILE: fs/smb/client/nterr.h:491:\n+#define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID (0xC0000000 |\n0x0223) // ERRHRD, ERRgeneral\n\nWARNING: line length of 101 exceeds 100 columns\n#1197: FILE: fs/smb/client/nterr.h:567:\n+#define NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP (0xC0000000 |\n0x5D0000) // ERRHRD, ERRgeneral\n\ntotal: 0 errors, 6 warnings, 1072 lines checked\n\nOn Thu, Apr 2, 2026 at 9:19 AM <huiwen.he@linux.dev> wrote:\n>\n> From: Huiwen He <hehuiwen@kylinos.cn>\n>\n> Add comments to NT_STATUS definitions in nterr.h indicating the\n> corresponding DOS error class and code.\n>\n> To ensure formatting consistency and facilitate automated processing,\n> existing human-readable comments in nterr.h were first moved to the\n> line preceding the #define statements.\n>\n> This provides the source data for generating sorted mapping tables,\n> allowing the implementation of binary search for faster error mapping\n> lookups in later commits.\n>\n> The mapping data is extracted from the existing manual\n> ntstatus_to_dos_map[] array in smb1maperror.c using the following\n> python script:\n>\n>         #!/usr/bin/env python3\n>         import re\n>         import os\n>\n>         MAP_FILE = \"fs/smb/client/smb1maperror.c\"\n>         NTERR_FILE = \"fs/smb/client/nterr.h\"\n>\n>         def move_comments(file_path):\n>             \"\"\"\n>             Moves existing inline comments (/* ... */ or // ...) to\n>             the preceding line to ensure formatting consistency.\n>             \"\"\"\n>             if not os.path.exists(file_path):\n>                 return\n>             with open(file_path, \"r\") as f:\n>                 lines = f.readlines()\n>             new_lines = []\n>             # Match #define statements with inline comments\n>             re_str = r'^(\\s*#define\\s+[A-Za-z0-9_]+\\s+.*?)\\s*(/\\*.*?\\*/|//.*)$'\n>             pattern = re.compile(re_str)\n>             for line in lines:\n>                 match = pattern.match(line.rstrip())\n>                 if match:\n>                     define_part, comment_part = match.groups()\n>\n>                     # Do not move if it's already an auto-generated mapping comment\n>                     if re.search(r'//\\s*[A-Z0-9_]+\\s*,\\s*[A-Za-z0-9_]+', comment_part):\n>                         new_lines.append(line)\n>                         continue\n>\n>                     indent = \" \" * (len(line) - len(line.lstrip()))\n>                     # Move old comment to previous line\n>                     new_lines.append(indent + comment_part + \"\\n\")\n>                     # Keep the define part\n>                     new_lines.append(define_part.rstrip() + \"\\n\")\n>                 else:\n>                     new_lines.append(line)\n>             with open(file_path, \"w\") as f:\n>                 f.writelines(new_lines)\n>\n>         def annotate_nterr():\n>             \"\"\"\n>             Extracts DOS error mappings from smb1maperror.c and appends them\n>             as comments to NT_STATUS defines in nterr.h, ensuring proper alignment.\n>             \"\"\"\n>             mapping = {}\n>             if not os.path.exists(MAP_FILE) or not os.path.exists(NTERR_FILE):\n>                 return\n>\n>             # Extract mappings from the source mapping table\n>             with open(MAP_FILE, \"r\") as f:\n>                 content = f.read()\n>\n>                 # Strip comments from source to ensure robust parsing\n>                 content = re.sub(r'/\\*.*?\\*/', '', content, flags=re.DOTALL)\n>                 content = re.sub(r'//.*', '', content)\n>\n>                 # Match [Class], [Code], [NT_STATUS] triplets using regex\n>                 map_re = r'([A-Z0-9_]+)\\s*,\\s*([A-Za-z0-9_]+)\\s*,\\s*(NT_STATUS_[A-Z0-9_]+)'\n>\n>                 matches = re.findall(map_re, content)\n>                 for m in matches:\n>                     mapping[m[2]] = (m[0], m[1])\n>\n>             with open(NTERR_FILE, \"r\") as f:\n>                 lines = f.readlines()\n>\n>             new_lines = []\n>             for line in lines:\n>                 stripped = line.strip()\n>                 if stripped.startswith(\"#define NT_STATUS_\"):\n>                     # Remove any existing // comments before re-annotating\n>                     base_line = re.sub(r'\\s*//.*$', '', line.rstrip())\n>                     parts = base_line.split()\n>                     if len(parts) >= 2:\n>                         name = parts[1]\n>                         # Append comment, ensuring proper alignment\n>                         if name == \"NT_STATUS_OK\":\n>                             line = f\"{base_line}\\t// SUCCESS, 0\\n\"\n>                         elif name in mapping:\n>                             d_class, d_code = mapping[name]\n>                             line = f\"{base_line}\\t// {d_class}, {d_code}\\n\"\n>                         else:\n>                             line = f\"{base_line}\\t// ERRHRD, ERRgeneral\\n\"\n>                 new_lines.append(line)\n>\n>             with open(NTERR_FILE, \"w\") as f:\n>                 f.writelines(new_lines)\n>\n>         if __name__ == \"__main__\":\n>             # Step 1: Clean existing inline comments and move them to separate lines\n>             move_comments(NTERR_FILE)\n>             # Step 2: Annotate with DOS codes, ensuring proper DOS codes comments\n>             annotate_nterr()\n>             print(\"Successfully processed nterr.h with DOS codes comments.\")\n>\n> Signed-off-by: Huiwen He <hehuiwen@kylinos.cn>\n> Reviewed-by: ChenXiaoSong <chenxiaosong@kylinos.cn>\n> ---\n>  fs/smb/client/nterr.h | 1067 +++++++++++++++++++++--------------------\n>  1 file changed, 534 insertions(+), 533 deletions(-)\n>\n> diff --git a/fs/smb/client/nterr.h b/fs/smb/client/nterr.h\n> index 9a4a450c6571..2141fa905e82 100644\n> --- a/fs/smb/client/nterr.h\n> +++ b/fs/smb/client/nterr.h\n> @@ -32,538 +32,539 @@ extern const struct nt_err_code_struct nt_errs[];\n>   * sniff to a file.\n>   */\n>\n> -#define NT_STATUS_OK                   0x0000\n> -#define NT_STATUS_PENDING              0x0103\n> -#define NT_STATUS_MORE_ENTRIES         0x0105\n> -#define NT_STATUS_SOME_NOT_MAPPED      0x0107\n> -#define NT_STATUS_NOTIFY_ENUM_DIR      0x010c\n> -#define NT_STATUS_BUFFER_OVERFLOW  0x80000005\n> -#define NT_STATUS_NO_MORE_ENTRIES  0x8000001a\n> -#define NT_STATUS_MEDIA_CHANGED    0x8000001c\n> -#define NT_STATUS_END_OF_MEDIA     0x8000001e\n> -#define NT_STATUS_MEDIA_CHECK      0x80000020\n> -#define NT_STATUS_NO_DATA_DETECTED 0x80000022\n> -#define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d\n> -#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288\n> -#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000289\n> -#define NT_STATUS_UNSUCCESSFUL (0xC0000000 | 0x0001)\n> -#define NT_STATUS_NOT_IMPLEMENTED (0xC0000000 | 0x0002)\n> -#define NT_STATUS_INVALID_INFO_CLASS (0xC0000000 | 0x0003)\n> -#define NT_STATUS_INFO_LENGTH_MISMATCH (0xC0000000 | 0x0004)\n> -#define NT_STATUS_ACCESS_VIOLATION (0xC0000000 | 0x0005)\n> -#define NT_STATUS_IN_PAGE_ERROR (0xC0000000 | 0x0006)\n> -#define NT_STATUS_PAGEFILE_QUOTA (0xC0000000 | 0x0007)\n> -#define NT_STATUS_INVALID_HANDLE (0xC0000000 | 0x0008)\n> -#define NT_STATUS_BAD_INITIAL_STACK (0xC0000000 | 0x0009)\n> -#define NT_STATUS_BAD_INITIAL_PC (0xC0000000 | 0x000a)\n> -#define NT_STATUS_INVALID_CID (0xC0000000 | 0x000b)\n> -#define NT_STATUS_TIMER_NOT_CANCELED (0xC0000000 | 0x000c)\n> -#define NT_STATUS_INVALID_PARAMETER (0xC0000000 | 0x000d)\n> -#define NT_STATUS_NO_SUCH_DEVICE (0xC0000000 | 0x000e)\n> -#define NT_STATUS_NO_SUCH_FILE (0xC0000000 | 0x000f)\n> -#define NT_STATUS_INVALID_DEVICE_REQUEST (0xC0000000 | 0x0010)\n> -#define NT_STATUS_END_OF_FILE (0xC0000000 | 0x0011)\n> -#define NT_STATUS_WRONG_VOLUME (0xC0000000 | 0x0012)\n> -#define NT_STATUS_NO_MEDIA_IN_DEVICE (0xC0000000 | 0x0013)\n> -#define NT_STATUS_UNRECOGNIZED_MEDIA (0xC0000000 | 0x0014)\n> -#define NT_STATUS_NONEXISTENT_SECTOR (0xC0000000 | 0x0015)\n> -#define NT_STATUS_MORE_PROCESSING_REQUIRED (0xC0000000 | 0x0016)\n> -#define NT_STATUS_NO_MEMORY (0xC0000000 | 0x0017)\n> -#define NT_STATUS_CONFLICTING_ADDRESSES (0xC0000000 | 0x0018)\n> -#define NT_STATUS_NOT_MAPPED_VIEW (0xC0000000 | 0x0019)\n> -#define NT_STATUS_UNABLE_TO_FREE_VM (0xC0000000 | 0x001a)\n> -#define NT_STATUS_UNABLE_TO_DELETE_SECTION (0xC0000000 | 0x001b)\n> -#define NT_STATUS_INVALID_SYSTEM_SERVICE (0xC0000000 | 0x001c)\n> -#define NT_STATUS_ILLEGAL_INSTRUCTION (0xC0000000 | 0x001d)\n> -#define NT_STATUS_INVALID_LOCK_SEQUENCE (0xC0000000 | 0x001e)\n> -#define NT_STATUS_INVALID_VIEW_SIZE (0xC0000000 | 0x001f)\n> -#define NT_STATUS_INVALID_FILE_FOR_SECTION (0xC0000000 | 0x0020)\n> -#define NT_STATUS_ALREADY_COMMITTED (0xC0000000 | 0x0021)\n> -#define NT_STATUS_ACCESS_DENIED (0xC0000000 | 0x0022)\n> -#define NT_STATUS_BUFFER_TOO_SMALL (0xC0000000 | 0x0023)\n> -#define NT_STATUS_OBJECT_TYPE_MISMATCH (0xC0000000 | 0x0024)\n> -#define NT_STATUS_NONCONTINUABLE_EXCEPTION (0xC0000000 | 0x0025)\n> -#define NT_STATUS_INVALID_DISPOSITION (0xC0000000 | 0x0026)\n> -#define NT_STATUS_UNWIND (0xC0000000 | 0x0027)\n> -#define NT_STATUS_BAD_STACK (0xC0000000 | 0x0028)\n> -#define NT_STATUS_INVALID_UNWIND_TARGET (0xC0000000 | 0x0029)\n> -#define NT_STATUS_NOT_LOCKED (0xC0000000 | 0x002a)\n> -#define NT_STATUS_PARITY_ERROR (0xC0000000 | 0x002b)\n> -#define NT_STATUS_UNABLE_TO_DECOMMIT_VM (0xC0000000 | 0x002c)\n> -#define NT_STATUS_NOT_COMMITTED (0xC0000000 | 0x002d)\n> -#define NT_STATUS_INVALID_PORT_ATTRIBUTES (0xC0000000 | 0x002e)\n> -#define NT_STATUS_PORT_MESSAGE_TOO_LONG (0xC0000000 | 0x002f)\n> -#define NT_STATUS_INVALID_PARAMETER_MIX (0xC0000000 | 0x0030)\n> -#define NT_STATUS_INVALID_QUOTA_LOWER (0xC0000000 | 0x0031)\n> -#define NT_STATUS_DISK_CORRUPT_ERROR (0xC0000000 | 0x0032)\n> -#define NT_STATUS_OBJECT_NAME_INVALID (0xC0000000 | 0x0033)\n> -#define NT_STATUS_OBJECT_NAME_NOT_FOUND (0xC0000000 | 0x0034)\n> -#define NT_STATUS_OBJECT_NAME_COLLISION (0xC0000000 | 0x0035)\n> -#define NT_STATUS_HANDLE_NOT_WAITABLE (0xC0000000 | 0x0036)\n> -#define NT_STATUS_PORT_DISCONNECTED (0xC0000000 | 0x0037)\n> -#define NT_STATUS_DEVICE_ALREADY_ATTACHED (0xC0000000 | 0x0038)\n> -#define NT_STATUS_OBJECT_PATH_INVALID (0xC0000000 | 0x0039)\n> -#define NT_STATUS_OBJECT_PATH_NOT_FOUND (0xC0000000 | 0x003a)\n> -#define NT_STATUS_OBJECT_PATH_SYNTAX_BAD (0xC0000000 | 0x003b)\n> -#define NT_STATUS_DATA_OVERRUN (0xC0000000 | 0x003c)\n> -#define NT_STATUS_DATA_LATE_ERROR (0xC0000000 | 0x003d)\n> -#define NT_STATUS_DATA_ERROR (0xC0000000 | 0x003e)\n> -#define NT_STATUS_CRC_ERROR (0xC0000000 | 0x003f)\n> -#define NT_STATUS_SECTION_TOO_BIG (0xC0000000 | 0x0040)\n> -#define NT_STATUS_PORT_CONNECTION_REFUSED (0xC0000000 | 0x0041)\n> -#define NT_STATUS_INVALID_PORT_HANDLE (0xC0000000 | 0x0042)\n> -#define NT_STATUS_SHARING_VIOLATION (0xC0000000 | 0x0043)\n> -#define NT_STATUS_QUOTA_EXCEEDED (0xC0000000 | 0x0044)\n> -#define NT_STATUS_INVALID_PAGE_PROTECTION (0xC0000000 | 0x0045)\n> -#define NT_STATUS_MUTANT_NOT_OWNED (0xC0000000 | 0x0046)\n> -#define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED (0xC0000000 | 0x0047)\n> -#define NT_STATUS_PORT_ALREADY_SET (0xC0000000 | 0x0048)\n> -#define NT_STATUS_SECTION_NOT_IMAGE (0xC0000000 | 0x0049)\n> -#define NT_STATUS_SUSPEND_COUNT_EXCEEDED (0xC0000000 | 0x004a)\n> -#define NT_STATUS_THREAD_IS_TERMINATING (0xC0000000 | 0x004b)\n> -#define NT_STATUS_BAD_WORKING_SET_LIMIT (0xC0000000 | 0x004c)\n> -#define NT_STATUS_INCOMPATIBLE_FILE_MAP (0xC0000000 | 0x004d)\n> -#define NT_STATUS_SECTION_PROTECTION (0xC0000000 | 0x004e)\n> -#define NT_STATUS_EAS_NOT_SUPPORTED (0xC0000000 | 0x004f)\n> -#define NT_STATUS_EA_TOO_LARGE (0xC0000000 | 0x0050)\n> -#define NT_STATUS_NONEXISTENT_EA_ENTRY (0xC0000000 | 0x0051)\n> -#define NT_STATUS_NO_EAS_ON_FILE (0xC0000000 | 0x0052)\n> -#define NT_STATUS_EA_CORRUPT_ERROR (0xC0000000 | 0x0053)\n> -#define NT_STATUS_FILE_LOCK_CONFLICT (0xC0000000 | 0x0054)\n> -#define NT_STATUS_LOCK_NOT_GRANTED (0xC0000000 | 0x0055)\n> -#define NT_STATUS_DELETE_PENDING (0xC0000000 | 0x0056)\n> -#define NT_STATUS_CTL_FILE_NOT_SUPPORTED (0xC0000000 | 0x0057)\n> -#define NT_STATUS_UNKNOWN_REVISION (0xC0000000 | 0x0058)\n> -#define NT_STATUS_REVISION_MISMATCH (0xC0000000 | 0x0059)\n> -#define NT_STATUS_INVALID_OWNER (0xC0000000 | 0x005a)\n> -#define NT_STATUS_INVALID_PRIMARY_GROUP (0xC0000000 | 0x005b)\n> -#define NT_STATUS_NO_IMPERSONATION_TOKEN (0xC0000000 | 0x005c)\n> -#define NT_STATUS_CANT_DISABLE_MANDATORY (0xC0000000 | 0x005d)\n> -#define NT_STATUS_NO_LOGON_SERVERS (0xC0000000 | 0x005e)\n> -#define NT_STATUS_NO_SUCH_LOGON_SESSION (0xC0000000 | 0x005f)\n> -#define NT_STATUS_NO_SUCH_PRIVILEGE (0xC0000000 | 0x0060)\n> -#define NT_STATUS_PRIVILEGE_NOT_HELD (0xC0000000 | 0x0061)\n> -#define NT_STATUS_INVALID_ACCOUNT_NAME (0xC0000000 | 0x0062)\n> -#define NT_STATUS_USER_EXISTS (0xC0000000 | 0x0063)\n> -#define NT_STATUS_NO_SUCH_USER (0xC0000000 | 0x0064)\n> -#define NT_STATUS_GROUP_EXISTS (0xC0000000 | 0x0065)\n> -#define NT_STATUS_NO_SUCH_GROUP (0xC0000000 | 0x0066)\n> -#define NT_STATUS_MEMBER_IN_GROUP (0xC0000000 | 0x0067)\n> -#define NT_STATUS_MEMBER_NOT_IN_GROUP (0xC0000000 | 0x0068)\n> -#define NT_STATUS_LAST_ADMIN (0xC0000000 | 0x0069)\n> -#define NT_STATUS_WRONG_PASSWORD (0xC0000000 | 0x006a)\n> -#define NT_STATUS_ILL_FORMED_PASSWORD (0xC0000000 | 0x006b)\n> -#define NT_STATUS_PASSWORD_RESTRICTION (0xC0000000 | 0x006c)\n> -#define NT_STATUS_LOGON_FAILURE (0xC0000000 | 0x006d)\n> -#define NT_STATUS_ACCOUNT_RESTRICTION (0xC0000000 | 0x006e)\n> -#define NT_STATUS_INVALID_LOGON_HOURS (0xC0000000 | 0x006f)\n> -#define NT_STATUS_INVALID_WORKSTATION (0xC0000000 | 0x0070)\n> -#define NT_STATUS_PASSWORD_EXPIRED (0xC0000000 | 0x0071)\n> -#define NT_STATUS_ACCOUNT_DISABLED (0xC0000000 | 0x0072)\n> -#define NT_STATUS_NONE_MAPPED (0xC0000000 | 0x0073)\n> -#define NT_STATUS_TOO_MANY_LUIDS_REQUESTED (0xC0000000 | 0x0074)\n> -#define NT_STATUS_LUIDS_EXHAUSTED (0xC0000000 | 0x0075)\n> -#define NT_STATUS_INVALID_SUB_AUTHORITY (0xC0000000 | 0x0076)\n> -#define NT_STATUS_INVALID_ACL (0xC0000000 | 0x0077)\n> -#define NT_STATUS_INVALID_SID (0xC0000000 | 0x0078)\n> -#define NT_STATUS_INVALID_SECURITY_DESCR (0xC0000000 | 0x0079)\n> -#define NT_STATUS_PROCEDURE_NOT_FOUND (0xC0000000 | 0x007a)\n> -#define NT_STATUS_INVALID_IMAGE_FORMAT (0xC0000000 | 0x007b)\n> -#define NT_STATUS_NO_TOKEN (0xC0000000 | 0x007c)\n> -#define NT_STATUS_BAD_INHERITANCE_ACL (0xC0000000 | 0x007d)\n> -#define NT_STATUS_RANGE_NOT_LOCKED (0xC0000000 | 0x007e)\n> -#define NT_STATUS_DISK_FULL (0xC0000000 | 0x007f)\n> -#define NT_STATUS_SERVER_DISABLED (0xC0000000 | 0x0080)\n> -#define NT_STATUS_SERVER_NOT_DISABLED (0xC0000000 | 0x0081)\n> -#define NT_STATUS_TOO_MANY_GUIDS_REQUESTED (0xC0000000 | 0x0082)\n> -#define NT_STATUS_GUIDS_EXHAUSTED (0xC0000000 | 0x0083)\n> -#define NT_STATUS_INVALID_ID_AUTHORITY (0xC0000000 | 0x0084)\n> -#define NT_STATUS_AGENTS_EXHAUSTED (0xC0000000 | 0x0085)\n> -#define NT_STATUS_INVALID_VOLUME_LABEL (0xC0000000 | 0x0086)\n> -#define NT_STATUS_SECTION_NOT_EXTENDED (0xC0000000 | 0x0087)\n> -#define NT_STATUS_NOT_MAPPED_DATA (0xC0000000 | 0x0088)\n> -#define NT_STATUS_RESOURCE_DATA_NOT_FOUND (0xC0000000 | 0x0089)\n> -#define NT_STATUS_RESOURCE_TYPE_NOT_FOUND (0xC0000000 | 0x008a)\n> -#define NT_STATUS_RESOURCE_NAME_NOT_FOUND (0xC0000000 | 0x008b)\n> -#define NT_STATUS_ARRAY_BOUNDS_EXCEEDED (0xC0000000 | 0x008c)\n> -#define NT_STATUS_FLOAT_DENORMAL_OPERAND (0xC0000000 | 0x008d)\n> -#define NT_STATUS_FLOAT_DIVIDE_BY_ZERO (0xC0000000 | 0x008e)\n> -#define NT_STATUS_FLOAT_INEXACT_RESULT (0xC0000000 | 0x008f)\n> -#define NT_STATUS_FLOAT_INVALID_OPERATION (0xC0000000 | 0x0090)\n> -#define NT_STATUS_FLOAT_OVERFLOW (0xC0000000 | 0x0091)\n> -#define NT_STATUS_FLOAT_STACK_CHECK (0xC0000000 | 0x0092)\n> -#define NT_STATUS_FLOAT_UNDERFLOW (0xC0000000 | 0x0093)\n> -#define NT_STATUS_INTEGER_DIVIDE_BY_ZERO (0xC0000000 | 0x0094)\n> -#define NT_STATUS_INTEGER_OVERFLOW (0xC0000000 | 0x0095)\n> -#define NT_STATUS_PRIVILEGED_INSTRUCTION (0xC0000000 | 0x0096)\n> -#define NT_STATUS_TOO_MANY_PAGING_FILES (0xC0000000 | 0x0097)\n> -#define NT_STATUS_FILE_INVALID (0xC0000000 | 0x0098)\n> -#define NT_STATUS_ALLOTTED_SPACE_EXCEEDED (0xC0000000 | 0x0099)\n> -#define NT_STATUS_INSUFFICIENT_RESOURCES (0xC0000000 | 0x009a)\n> -#define NT_STATUS_DFS_EXIT_PATH_FOUND (0xC0000000 | 0x009b)\n> -#define NT_STATUS_DEVICE_DATA_ERROR (0xC0000000 | 0x009c)\n> -#define NT_STATUS_DEVICE_NOT_CONNECTED (0xC0000000 | 0x009d)\n> -#define NT_STATUS_DEVICE_POWER_FAILURE (0xC0000000 | 0x009e)\n> -#define NT_STATUS_FREE_VM_NOT_AT_BASE (0xC0000000 | 0x009f)\n> -#define NT_STATUS_MEMORY_NOT_ALLOCATED (0xC0000000 | 0x00a0)\n> -#define NT_STATUS_WORKING_SET_QUOTA (0xC0000000 | 0x00a1)\n> -#define NT_STATUS_MEDIA_WRITE_PROTECTED (0xC0000000 | 0x00a2)\n> -#define NT_STATUS_DEVICE_NOT_READY (0xC0000000 | 0x00a3)\n> -#define NT_STATUS_INVALID_GROUP_ATTRIBUTES (0xC0000000 | 0x00a4)\n> -#define NT_STATUS_BAD_IMPERSONATION_LEVEL (0xC0000000 | 0x00a5)\n> -#define NT_STATUS_CANT_OPEN_ANONYMOUS (0xC0000000 | 0x00a6)\n> -#define NT_STATUS_BAD_VALIDATION_CLASS (0xC0000000 | 0x00a7)\n> -#define NT_STATUS_BAD_TOKEN_TYPE (0xC0000000 | 0x00a8)\n> -#define NT_STATUS_BAD_MASTER_BOOT_RECORD (0xC0000000 | 0x00a9)\n> -#define NT_STATUS_INSTRUCTION_MISALIGNMENT (0xC0000000 | 0x00aa)\n> -#define NT_STATUS_INSTANCE_NOT_AVAILABLE (0xC0000000 | 0x00ab)\n> -#define NT_STATUS_PIPE_NOT_AVAILABLE (0xC0000000 | 0x00ac)\n> -#define NT_STATUS_INVALID_PIPE_STATE (0xC0000000 | 0x00ad)\n> -#define NT_STATUS_PIPE_BUSY (0xC0000000 | 0x00ae)\n> -#define NT_STATUS_ILLEGAL_FUNCTION (0xC0000000 | 0x00af)\n> -#define NT_STATUS_PIPE_DISCONNECTED (0xC0000000 | 0x00b0)\n> -#define NT_STATUS_PIPE_CLOSING (0xC0000000 | 0x00b1)\n> -#define NT_STATUS_PIPE_CONNECTED (0xC0000000 | 0x00b2)\n> -#define NT_STATUS_PIPE_LISTENING (0xC0000000 | 0x00b3)\n> -#define NT_STATUS_INVALID_READ_MODE (0xC0000000 | 0x00b4)\n> -#define NT_STATUS_IO_TIMEOUT (0xC0000000 | 0x00b5)\n> -#define NT_STATUS_FILE_FORCED_CLOSED (0xC0000000 | 0x00b6)\n> -#define NT_STATUS_PROFILING_NOT_STARTED (0xC0000000 | 0x00b7)\n> -#define NT_STATUS_PROFILING_NOT_STOPPED (0xC0000000 | 0x00b8)\n> -#define NT_STATUS_COULD_NOT_INTERPRET (0xC0000000 | 0x00b9)\n> -#define NT_STATUS_FILE_IS_A_DIRECTORY (0xC0000000 | 0x00ba)\n> -#define NT_STATUS_NOT_SUPPORTED (0xC0000000 | 0x00bb)\n> -#define NT_STATUS_REMOTE_NOT_LISTENING (0xC0000000 | 0x00bc)\n> -#define NT_STATUS_DUPLICATE_NAME (0xC0000000 | 0x00bd)\n> -#define NT_STATUS_BAD_NETWORK_PATH (0xC0000000 | 0x00be)\n> -#define NT_STATUS_NETWORK_BUSY (0xC0000000 | 0x00bf)\n> -#define NT_STATUS_DEVICE_DOES_NOT_EXIST (0xC0000000 | 0x00c0)\n> -#define NT_STATUS_TOO_MANY_COMMANDS (0xC0000000 | 0x00c1)\n> -#define NT_STATUS_ADAPTER_HARDWARE_ERROR (0xC0000000 | 0x00c2)\n> -#define NT_STATUS_INVALID_NETWORK_RESPONSE (0xC0000000 | 0x00c3)\n> -#define NT_STATUS_UNEXPECTED_NETWORK_ERROR (0xC0000000 | 0x00c4)\n> -#define NT_STATUS_BAD_REMOTE_ADAPTER (0xC0000000 | 0x00c5)\n> -#define NT_STATUS_PRINT_QUEUE_FULL (0xC0000000 | 0x00c6)\n> -#define NT_STATUS_NO_SPOOL_SPACE (0xC0000000 | 0x00c7)\n> -#define NT_STATUS_PRINT_CANCELLED (0xC0000000 | 0x00c8)\n> -#define NT_STATUS_NETWORK_NAME_DELETED (0xC0000000 | 0x00c9)\n> -#define NT_STATUS_NETWORK_ACCESS_DENIED (0xC0000000 | 0x00ca)\n> -#define NT_STATUS_BAD_DEVICE_TYPE (0xC0000000 | 0x00cb)\n> -#define NT_STATUS_BAD_NETWORK_NAME (0xC0000000 | 0x00cc)\n> -#define NT_STATUS_TOO_MANY_NAMES (0xC0000000 | 0x00cd)\n> -#define NT_STATUS_TOO_MANY_SESSIONS (0xC0000000 | 0x00ce)\n> -#define NT_STATUS_SHARING_PAUSED (0xC0000000 | 0x00cf)\n> -#define NT_STATUS_REQUEST_NOT_ACCEPTED (0xC0000000 | 0x00d0)\n> -#define NT_STATUS_REDIRECTOR_PAUSED (0xC0000000 | 0x00d1)\n> -#define NT_STATUS_NET_WRITE_FAULT (0xC0000000 | 0x00d2)\n> -#define NT_STATUS_PROFILING_AT_LIMIT (0xC0000000 | 0x00d3)\n> -#define NT_STATUS_NOT_SAME_DEVICE (0xC0000000 | 0x00d4)\n> -#define NT_STATUS_FILE_RENAMED (0xC0000000 | 0x00d5)\n> -#define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED (0xC0000000 | 0x00d6)\n> -#define NT_STATUS_NO_SECURITY_ON_OBJECT (0xC0000000 | 0x00d7)\n> -#define NT_STATUS_CANT_WAIT (0xC0000000 | 0x00d8)\n> -#define NT_STATUS_PIPE_EMPTY (0xC0000000 | 0x00d9)\n> -#define NT_STATUS_CANT_ACCESS_DOMAIN_INFO (0xC0000000 | 0x00da)\n> -#define NT_STATUS_CANT_TERMINATE_SELF (0xC0000000 | 0x00db)\n> -#define NT_STATUS_INVALID_SERVER_STATE (0xC0000000 | 0x00dc)\n> -#define NT_STATUS_INVALID_DOMAIN_STATE (0xC0000000 | 0x00dd)\n> -#define NT_STATUS_INVALID_DOMAIN_ROLE (0xC0000000 | 0x00de)\n> -#define NT_STATUS_NO_SUCH_DOMAIN (0xC0000000 | 0x00df)\n> -#define NT_STATUS_DOMAIN_EXISTS (0xC0000000 | 0x00e0)\n> -#define NT_STATUS_DOMAIN_LIMIT_EXCEEDED (0xC0000000 | 0x00e1)\n> -#define NT_STATUS_OPLOCK_NOT_GRANTED (0xC0000000 | 0x00e2)\n> -#define NT_STATUS_INVALID_OPLOCK_PROTOCOL (0xC0000000 | 0x00e3)\n> -#define NT_STATUS_INTERNAL_DB_CORRUPTION (0xC0000000 | 0x00e4)\n> -#define NT_STATUS_INTERNAL_ERROR (0xC0000000 | 0x00e5)\n> -#define NT_STATUS_GENERIC_NOT_MAPPED (0xC0000000 | 0x00e6)\n> -#define NT_STATUS_BAD_DESCRIPTOR_FORMAT (0xC0000000 | 0x00e7)\n> -#define NT_STATUS_INVALID_USER_BUFFER (0xC0000000 | 0x00e8)\n> -#define NT_STATUS_UNEXPECTED_IO_ERROR (0xC0000000 | 0x00e9)\n> -#define NT_STATUS_UNEXPECTED_MM_CREATE_ERR (0xC0000000 | 0x00ea)\n> -#define NT_STATUS_UNEXPECTED_MM_MAP_ERROR (0xC0000000 | 0x00eb)\n> -#define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR (0xC0000000 | 0x00ec)\n> -#define NT_STATUS_NOT_LOGON_PROCESS (0xC0000000 | 0x00ed)\n> -#define NT_STATUS_LOGON_SESSION_EXISTS (0xC0000000 | 0x00ee)\n> -#define NT_STATUS_INVALID_PARAMETER_1 (0xC0000000 | 0x00ef)\n> -#define NT_STATUS_INVALID_PARAMETER_2 (0xC0000000 | 0x00f0)\n> -#define NT_STATUS_INVALID_PARAMETER_3 (0xC0000000 | 0x00f1)\n> -#define NT_STATUS_INVALID_PARAMETER_4 (0xC0000000 | 0x00f2)\n> -#define NT_STATUS_INVALID_PARAMETER_5 (0xC0000000 | 0x00f3)\n> -#define NT_STATUS_INVALID_PARAMETER_6 (0xC0000000 | 0x00f4)\n> -#define NT_STATUS_INVALID_PARAMETER_7 (0xC0000000 | 0x00f5)\n> -#define NT_STATUS_INVALID_PARAMETER_8 (0xC0000000 | 0x00f6)\n> -#define NT_STATUS_INVALID_PARAMETER_9 (0xC0000000 | 0x00f7)\n> -#define NT_STATUS_INVALID_PARAMETER_10 (0xC0000000 | 0x00f8)\n> -#define NT_STATUS_INVALID_PARAMETER_11 (0xC0000000 | 0x00f9)\n> -#define NT_STATUS_INVALID_PARAMETER_12 (0xC0000000 | 0x00fa)\n> -#define NT_STATUS_REDIRECTOR_NOT_STARTED (0xC0000000 | 0x00fb)\n> -#define NT_STATUS_REDIRECTOR_STARTED (0xC0000000 | 0x00fc)\n> -#define NT_STATUS_STACK_OVERFLOW (0xC0000000 | 0x00fd)\n> -#define NT_STATUS_NO_SUCH_PACKAGE (0xC0000000 | 0x00fe)\n> -#define NT_STATUS_BAD_FUNCTION_TABLE (0xC0000000 | 0x00ff)\n> -#define NT_STATUS_VARIABLE_NOT_FOUND (0xC0000000 | 0x0100)\n> -#define NT_STATUS_DIRECTORY_NOT_EMPTY (0xC0000000 | 0x0101)\n> -#define NT_STATUS_FILE_CORRUPT_ERROR (0xC0000000 | 0x0102)\n> -#define NT_STATUS_NOT_A_DIRECTORY (0xC0000000 | 0x0103)\n> -#define NT_STATUS_BAD_LOGON_SESSION_STATE (0xC0000000 | 0x0104)\n> -#define NT_STATUS_LOGON_SESSION_COLLISION (0xC0000000 | 0x0105)\n> -#define NT_STATUS_NAME_TOO_LONG (0xC0000000 | 0x0106)\n> -#define NT_STATUS_FILES_OPEN (0xC0000000 | 0x0107)\n> -#define NT_STATUS_CONNECTION_IN_USE (0xC0000000 | 0x0108)\n> -#define NT_STATUS_MESSAGE_NOT_FOUND (0xC0000000 | 0x0109)\n> -#define NT_STATUS_PROCESS_IS_TERMINATING (0xC0000000 | 0x010a)\n> -#define NT_STATUS_INVALID_LOGON_TYPE (0xC0000000 | 0x010b)\n> -#define NT_STATUS_NO_GUID_TRANSLATION (0xC0000000 | 0x010c)\n> -#define NT_STATUS_CANNOT_IMPERSONATE (0xC0000000 | 0x010d)\n> -#define NT_STATUS_IMAGE_ALREADY_LOADED (0xC0000000 | 0x010e)\n> -#define NT_STATUS_ABIOS_NOT_PRESENT (0xC0000000 | 0x010f)\n> -#define NT_STATUS_ABIOS_LID_NOT_EXIST (0xC0000000 | 0x0110)\n> -#define NT_STATUS_ABIOS_LID_ALREADY_OWNED (0xC0000000 | 0x0111)\n> -#define NT_STATUS_ABIOS_NOT_LID_OWNER (0xC0000000 | 0x0112)\n> -#define NT_STATUS_ABIOS_INVALID_COMMAND (0xC0000000 | 0x0113)\n> -#define NT_STATUS_ABIOS_INVALID_LID (0xC0000000 | 0x0114)\n> -#define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE (0xC0000000 | 0x0115)\n> -#define NT_STATUS_ABIOS_INVALID_SELECTOR (0xC0000000 | 0x0116)\n> -#define NT_STATUS_NO_LDT (0xC0000000 | 0x0117)\n> -#define NT_STATUS_INVALID_LDT_SIZE (0xC0000000 | 0x0118)\n> -#define NT_STATUS_INVALID_LDT_OFFSET (0xC0000000 | 0x0119)\n> -#define NT_STATUS_INVALID_LDT_DESCRIPTOR (0xC0000000 | 0x011a)\n> -#define NT_STATUS_INVALID_IMAGE_NE_FORMAT (0xC0000000 | 0x011b)\n> -#define NT_STATUS_RXACT_INVALID_STATE (0xC0000000 | 0x011c)\n> -#define NT_STATUS_RXACT_COMMIT_FAILURE (0xC0000000 | 0x011d)\n> -#define NT_STATUS_MAPPED_FILE_SIZE_ZERO (0xC0000000 | 0x011e)\n> -#define NT_STATUS_TOO_MANY_OPENED_FILES (0xC0000000 | 0x011f)\n> -#define NT_STATUS_CANCELLED (0xC0000000 | 0x0120)\n> -#define NT_STATUS_CANNOT_DELETE (0xC0000000 | 0x0121)\n> -#define NT_STATUS_INVALID_COMPUTER_NAME (0xC0000000 | 0x0122)\n> -#define NT_STATUS_FILE_DELETED (0xC0000000 | 0x0123)\n> -#define NT_STATUS_SPECIAL_ACCOUNT (0xC0000000 | 0x0124)\n> -#define NT_STATUS_SPECIAL_GROUP (0xC0000000 | 0x0125)\n> -#define NT_STATUS_SPECIAL_USER (0xC0000000 | 0x0126)\n> -#define NT_STATUS_MEMBERS_PRIMARY_GROUP (0xC0000000 | 0x0127)\n> -#define NT_STATUS_FILE_CLOSED (0xC0000000 | 0x0128)\n> -#define NT_STATUS_TOO_MANY_THREADS (0xC0000000 | 0x0129)\n> -#define NT_STATUS_THREAD_NOT_IN_PROCESS (0xC0000000 | 0x012a)\n> -#define NT_STATUS_TOKEN_ALREADY_IN_USE (0xC0000000 | 0x012b)\n> -#define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED (0xC0000000 | 0x012c)\n> -#define NT_STATUS_COMMITMENT_LIMIT (0xC0000000 | 0x012d)\n> -#define NT_STATUS_INVALID_IMAGE_LE_FORMAT (0xC0000000 | 0x012e)\n> -#define NT_STATUS_INVALID_IMAGE_NOT_MZ (0xC0000000 | 0x012f)\n> -#define NT_STATUS_INVALID_IMAGE_PROTECT (0xC0000000 | 0x0130)\n> -#define NT_STATUS_INVALID_IMAGE_WIN_16 (0xC0000000 | 0x0131)\n> -#define NT_STATUS_LOGON_SERVER_CONFLICT (0xC0000000 | 0x0132)\n> -#define NT_STATUS_TIME_DIFFERENCE_AT_DC (0xC0000000 | 0x0133)\n> -#define NT_STATUS_SYNCHRONIZATION_REQUIRED (0xC0000000 | 0x0134)\n> -#define NT_STATUS_DLL_NOT_FOUND (0xC0000000 | 0x0135)\n> -#define NT_STATUS_OPEN_FAILED (0xC0000000 | 0x0136)\n> -#define NT_STATUS_IO_PRIVILEGE_FAILED (0xC0000000 | 0x0137)\n> -#define NT_STATUS_ORDINAL_NOT_FOUND (0xC0000000 | 0x0138)\n> -#define NT_STATUS_ENTRYPOINT_NOT_FOUND (0xC0000000 | 0x0139)\n> -#define NT_STATUS_CONTROL_C_EXIT (0xC0000000 | 0x013a)\n> -#define NT_STATUS_LOCAL_DISCONNECT (0xC0000000 | 0x013b)\n> -#define NT_STATUS_REMOTE_DISCONNECT (0xC0000000 | 0x013c)\n> -#define NT_STATUS_REMOTE_RESOURCES (0xC0000000 | 0x013d)\n> -#define NT_STATUS_LINK_FAILED (0xC0000000 | 0x013e)\n> -#define NT_STATUS_LINK_TIMEOUT (0xC0000000 | 0x013f)\n> -#define NT_STATUS_INVALID_CONNECTION (0xC0000000 | 0x0140)\n> -#define NT_STATUS_INVALID_ADDRESS (0xC0000000 | 0x0141)\n> -#define NT_STATUS_DLL_INIT_FAILED (0xC0000000 | 0x0142)\n> -#define NT_STATUS_MISSING_SYSTEMFILE (0xC0000000 | 0x0143)\n> -#define NT_STATUS_UNHANDLED_EXCEPTION (0xC0000000 | 0x0144)\n> -#define NT_STATUS_APP_INIT_FAILURE (0xC0000000 | 0x0145)\n> -#define NT_STATUS_PAGEFILE_CREATE_FAILED (0xC0000000 | 0x0146)\n> -#define NT_STATUS_NO_PAGEFILE (0xC0000000 | 0x0147)\n> -#define NT_STATUS_INVALID_LEVEL (0xC0000000 | 0x0148)\n> -#define NT_STATUS_WRONG_PASSWORD_CORE (0xC0000000 | 0x0149)\n> -#define NT_STATUS_ILLEGAL_FLOAT_CONTEXT (0xC0000000 | 0x014a)\n> -#define NT_STATUS_PIPE_BROKEN (0xC0000000 | 0x014b)\n> -#define NT_STATUS_REGISTRY_CORRUPT (0xC0000000 | 0x014c)\n> -#define NT_STATUS_REGISTRY_IO_FAILED (0xC0000000 | 0x014d)\n> -#define NT_STATUS_NO_EVENT_PAIR (0xC0000000 | 0x014e)\n> -#define NT_STATUS_UNRECOGNIZED_VOLUME (0xC0000000 | 0x014f)\n> -#define NT_STATUS_SERIAL_NO_DEVICE_INITED (0xC0000000 | 0x0150)\n> -#define NT_STATUS_NO_SUCH_ALIAS (0xC0000000 | 0x0151)\n> -#define NT_STATUS_MEMBER_NOT_IN_ALIAS (0xC0000000 | 0x0152)\n> -#define NT_STATUS_MEMBER_IN_ALIAS (0xC0000000 | 0x0153)\n> -#define NT_STATUS_ALIAS_EXISTS (0xC0000000 | 0x0154)\n> -#define NT_STATUS_LOGON_NOT_GRANTED (0xC0000000 | 0x0155)\n> -#define NT_STATUS_TOO_MANY_SECRETS (0xC0000000 | 0x0156)\n> -#define NT_STATUS_SECRET_TOO_LONG (0xC0000000 | 0x0157)\n> -#define NT_STATUS_INTERNAL_DB_ERROR (0xC0000000 | 0x0158)\n> -#define NT_STATUS_FULLSCREEN_MODE (0xC0000000 | 0x0159)\n> -#define NT_STATUS_TOO_MANY_CONTEXT_IDS (0xC0000000 | 0x015a)\n> -#define NT_STATUS_LOGON_TYPE_NOT_GRANTED (0xC0000000 | 0x015b)\n> -#define NT_STATUS_NOT_REGISTRY_FILE (0xC0000000 | 0x015c)\n> -#define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED (0xC0000000 | 0x015d)\n> -#define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR (0xC0000000 | 0x015e)\n> -#define NT_STATUS_FT_MISSING_MEMBER (0xC0000000 | 0x015f)\n> -#define NT_STATUS_ILL_FORMED_SERVICE_ENTRY (0xC0000000 | 0x0160)\n> -#define NT_STATUS_ILLEGAL_CHARACTER (0xC0000000 | 0x0161)\n> -#define NT_STATUS_UNMAPPABLE_CHARACTER (0xC0000000 | 0x0162)\n> -#define NT_STATUS_UNDEFINED_CHARACTER (0xC0000000 | 0x0163)\n> -#define NT_STATUS_FLOPPY_VOLUME (0xC0000000 | 0x0164)\n> -#define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND (0xC0000000 | 0x0165)\n> -#define NT_STATUS_FLOPPY_WRONG_CYLINDER (0xC0000000 | 0x0166)\n> -#define NT_STATUS_FLOPPY_UNKNOWN_ERROR (0xC0000000 | 0x0167)\n> -#define NT_STATUS_FLOPPY_BAD_REGISTERS (0xC0000000 | 0x0168)\n> -#define NT_STATUS_DISK_RECALIBRATE_FAILED (0xC0000000 | 0x0169)\n> -#define NT_STATUS_DISK_OPERATION_FAILED (0xC0000000 | 0x016a)\n> -#define NT_STATUS_DISK_RESET_FAILED (0xC0000000 | 0x016b)\n> -#define NT_STATUS_SHARED_IRQ_BUSY (0xC0000000 | 0x016c)\n> -#define NT_STATUS_FT_ORPHANING (0xC0000000 | 0x016d)\n> -#define NT_STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT (0xC0000000 | 0x016e)\n> -#define NT_STATUS_PARTITION_FAILURE (0xC0000000 | 0x0172)\n> -#define NT_STATUS_INVALID_BLOCK_LENGTH (0xC0000000 | 0x0173)\n> -#define NT_STATUS_DEVICE_NOT_PARTITIONED (0xC0000000 | 0x0174)\n> -#define NT_STATUS_UNABLE_TO_LOCK_MEDIA (0xC0000000 | 0x0175)\n> -#define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA (0xC0000000 | 0x0176)\n> -#define NT_STATUS_EOM_OVERFLOW (0xC0000000 | 0x0177)\n> -#define NT_STATUS_NO_MEDIA (0xC0000000 | 0x0178)\n> -#define NT_STATUS_NO_SUCH_MEMBER (0xC0000000 | 0x017a)\n> -#define NT_STATUS_INVALID_MEMBER (0xC0000000 | 0x017b)\n> -#define NT_STATUS_KEY_DELETED (0xC0000000 | 0x017c)\n> -#define NT_STATUS_NO_LOG_SPACE (0xC0000000 | 0x017d)\n> -#define NT_STATUS_TOO_MANY_SIDS (0xC0000000 | 0x017e)\n> -#define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED (0xC0000000 | 0x017f)\n> -#define NT_STATUS_KEY_HAS_CHILDREN (0xC0000000 | 0x0180)\n> -#define NT_STATUS_CHILD_MUST_BE_VOLATILE (0xC0000000 | 0x0181)\n> -#define NT_STATUS_DEVICE_CONFIGURATION_ERROR (0xC0000000 | 0x0182)\n> -#define NT_STATUS_DRIVER_INTERNAL_ERROR (0xC0000000 | 0x0183)\n> -#define NT_STATUS_INVALID_DEVICE_STATE (0xC0000000 | 0x0184)\n> -#define NT_STATUS_IO_DEVICE_ERROR (0xC0000000 | 0x0185)\n> -#define NT_STATUS_DEVICE_PROTOCOL_ERROR (0xC0000000 | 0x0186)\n> -#define NT_STATUS_BACKUP_CONTROLLER (0xC0000000 | 0x0187)\n> -#define NT_STATUS_LOG_FILE_FULL (0xC0000000 | 0x0188)\n> -#define NT_STATUS_TOO_LATE (0xC0000000 | 0x0189)\n> -#define NT_STATUS_NO_TRUST_LSA_SECRET (0xC0000000 | 0x018a)\n> -#define NT_STATUS_NO_TRUST_SAM_ACCOUNT (0xC0000000 | 0x018b)\n> -#define NT_STATUS_TRUSTED_DOMAIN_FAILURE (0xC0000000 | 0x018c)\n> -#define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE (0xC0000000 | 0x018d)\n> -#define NT_STATUS_EVENTLOG_FILE_CORRUPT (0xC0000000 | 0x018e)\n> -#define NT_STATUS_EVENTLOG_CANT_START (0xC0000000 | 0x018f)\n> -#define NT_STATUS_TRUST_FAILURE (0xC0000000 | 0x0190)\n> -#define NT_STATUS_MUTANT_LIMIT_EXCEEDED (0xC0000000 | 0x0191)\n> -#define NT_STATUS_NETLOGON_NOT_STARTED (0xC0000000 | 0x0192)\n> -#define NT_STATUS_ACCOUNT_EXPIRED (0xC0000000 | 0x0193)\n> -#define NT_STATUS_POSSIBLE_DEADLOCK (0xC0000000 | 0x0194)\n> -#define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT (0xC0000000 | 0x0195)\n> -#define NT_STATUS_REMOTE_SESSION_LIMIT (0xC0000000 | 0x0196)\n> -#define NT_STATUS_EVENTLOG_FILE_CHANGED (0xC0000000 | 0x0197)\n> -#define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT (0xC0000000 | 0x0198)\n> -#define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT (0xC0000000 | 0x0199)\n> -#define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT (0xC0000000 | 0x019a)\n> -#define NT_STATUS_DOMAIN_TRUST_INCONSISTENT (0xC0000000 | 0x019b)\n> -#define NT_STATUS_FS_DRIVER_REQUIRED (0xC0000000 | 0x019c)\n> -#define NT_STATUS_INVALID_LOCK_RANGE (0xC0000000 | 0x01a1)\n> -#define NT_STATUS_NO_USER_SESSION_KEY (0xC0000000 | 0x0202)\n> -#define NT_STATUS_USER_SESSION_DELETED (0xC0000000 | 0x0203)\n> -#define NT_STATUS_RESOURCE_LANG_NOT_FOUND (0xC0000000 | 0x0204)\n> -#define NT_STATUS_INSUFF_SERVER_RESOURCES (0xC0000000 | 0x0205)\n> -#define NT_STATUS_INVALID_BUFFER_SIZE (0xC0000000 | 0x0206)\n> -#define NT_STATUS_INVALID_ADDRESS_COMPONENT (0xC0000000 | 0x0207)\n> -#define NT_STATUS_INVALID_ADDRESS_WILDCARD (0xC0000000 | 0x0208)\n> -#define NT_STATUS_TOO_MANY_ADDRESSES (0xC0000000 | 0x0209)\n> -#define NT_STATUS_ADDRESS_ALREADY_EXISTS (0xC0000000 | 0x020a)\n> -#define NT_STATUS_ADDRESS_CLOSED (0xC0000000 | 0x020b)\n> -#define NT_STATUS_CONNECTION_DISCONNECTED (0xC0000000 | 0x020c)\n> -#define NT_STATUS_CONNECTION_RESET (0xC0000000 | 0x020d)\n> -#define NT_STATUS_TOO_MANY_NODES (0xC0000000 | 0x020e)\n> -#define NT_STATUS_TRANSACTION_ABORTED (0xC0000000 | 0x020f)\n> -#define NT_STATUS_TRANSACTION_TIMED_OUT (0xC0000000 | 0x0210)\n> -#define NT_STATUS_TRANSACTION_NO_RELEASE (0xC0000000 | 0x0211)\n> -#define NT_STATUS_TRANSACTION_NO_MATCH (0xC0000000 | 0x0212)\n> -#define NT_STATUS_TRANSACTION_RESPONDED (0xC0000000 | 0x0213)\n> -#define NT_STATUS_TRANSACTION_INVALID_ID (0xC0000000 | 0x0214)\n> -#define NT_STATUS_TRANSACTION_INVALID_TYPE (0xC0000000 | 0x0215)\n> -#define NT_STATUS_NOT_SERVER_SESSION (0xC0000000 | 0x0216)\n> -#define NT_STATUS_NOT_CLIENT_SESSION (0xC0000000 | 0x0217)\n> -#define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE (0xC0000000 | 0x0218)\n> -#define NT_STATUS_DEBUG_ATTACH_FAILED (0xC0000000 | 0x0219)\n> -#define NT_STATUS_SYSTEM_PROCESS_TERMINATED (0xC0000000 | 0x021a)\n> -#define NT_STATUS_DATA_NOT_ACCEPTED (0xC0000000 | 0x021b)\n> -#define NT_STATUS_NO_BROWSER_SERVERS_FOUND (0xC0000000 | 0x021c)\n> -#define NT_STATUS_VDM_HARD_ERROR (0xC0000000 | 0x021d)\n> -#define NT_STATUS_DRIVER_CANCEL_TIMEOUT (0xC0000000 | 0x021e)\n> -#define NT_STATUS_REPLY_MESSAGE_MISMATCH (0xC0000000 | 0x021f)\n> -#define NT_STATUS_MAPPED_ALIGNMENT (0xC0000000 | 0x0220)\n> -#define NT_STATUS_IMAGE_CHECKSUM_MISMATCH (0xC0000000 | 0x0221)\n> -#define NT_STATUS_LOST_WRITEBEHIND_DATA (0xC0000000 | 0x0222)\n> -#define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID (0xC0000000 | 0x0223)\n> -#define NT_STATUS_PASSWORD_MUST_CHANGE (0xC0000000 | 0x0224)\n> -#define NT_STATUS_NOT_FOUND (0xC0000000 | 0x0225)\n> -#define NT_STATUS_NOT_TINY_STREAM (0xC0000000 | 0x0226)\n> -#define NT_STATUS_RECOVERY_FAILURE (0xC0000000 | 0x0227)\n> -#define NT_STATUS_STACK_OVERFLOW_READ (0xC0000000 | 0x0228)\n> -#define NT_STATUS_FAIL_CHECK (0xC0000000 | 0x0229)\n> -#define NT_STATUS_DUPLICATE_OBJECTID (0xC0000000 | 0x022a)\n> -#define NT_STATUS_OBJECTID_EXISTS (0xC0000000 | 0x022b)\n> -#define NT_STATUS_CONVERT_TO_LARGE (0xC0000000 | 0x022c)\n> -#define NT_STATUS_RETRY (0xC0000000 | 0x022d)\n> -#define NT_STATUS_FOUND_OUT_OF_SCOPE (0xC0000000 | 0x022e)\n> -#define NT_STATUS_ALLOCATE_BUCKET (0xC0000000 | 0x022f)\n> -#define NT_STATUS_PROPSET_NOT_FOUND (0xC0000000 | 0x0230)\n> -#define NT_STATUS_MARSHALL_OVERFLOW (0xC0000000 | 0x0231)\n> -#define NT_STATUS_INVALID_VARIANT (0xC0000000 | 0x0232)\n> -#define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND (0xC0000000 | 0x0233)\n> -#define NT_STATUS_ACCOUNT_LOCKED_OUT (0xC0000000 | 0x0234)\n> -#define NT_STATUS_HANDLE_NOT_CLOSABLE (0xC0000000 | 0x0235)\n> -#define NT_STATUS_CONNECTION_REFUSED (0xC0000000 | 0x0236)\n> -#define NT_STATUS_GRACEFUL_DISCONNECT (0xC0000000 | 0x0237)\n> -#define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED (0xC0000000 | 0x0238)\n> -#define NT_STATUS_ADDRESS_NOT_ASSOCIATED (0xC0000000 | 0x0239)\n> -#define NT_STATUS_CONNECTION_INVALID (0xC0000000 | 0x023a)\n> -#define NT_STATUS_CONNECTION_ACTIVE (0xC0000000 | 0x023b)\n> -#define NT_STATUS_NETWORK_UNREACHABLE (0xC0000000 | 0x023c)\n> -#define NT_STATUS_HOST_UNREACHABLE (0xC0000000 | 0x023d)\n> -#define NT_STATUS_PROTOCOL_UNREACHABLE (0xC0000000 | 0x023e)\n> -#define NT_STATUS_PORT_UNREACHABLE (0xC0000000 | 0x023f)\n> -#define NT_STATUS_REQUEST_ABORTED (0xC0000000 | 0x0240)\n> -#define NT_STATUS_CONNECTION_ABORTED (0xC0000000 | 0x0241)\n> -#define NT_STATUS_BAD_COMPRESSION_BUFFER (0xC0000000 | 0x0242)\n> -#define NT_STATUS_USER_MAPPED_FILE (0xC0000000 | 0x0243)\n> -#define NT_STATUS_AUDIT_FAILED (0xC0000000 | 0x0244)\n> -#define NT_STATUS_TIMER_RESOLUTION_NOT_SET (0xC0000000 | 0x0245)\n> -#define NT_STATUS_CONNECTION_COUNT_LIMIT (0xC0000000 | 0x0246)\n> -#define NT_STATUS_LOGIN_TIME_RESTRICTION (0xC0000000 | 0x0247)\n> -#define NT_STATUS_LOGIN_WKSTA_RESTRICTION (0xC0000000 | 0x0248)\n> -#define NT_STATUS_IMAGE_MP_UP_MISMATCH (0xC0000000 | 0x0249)\n> -#define NT_STATUS_INSUFFICIENT_LOGON_INFO (0xC0000000 | 0x0250)\n> -#define NT_STATUS_BAD_DLL_ENTRYPOINT (0xC0000000 | 0x0251)\n> -#define NT_STATUS_BAD_SERVICE_ENTRYPOINT (0xC0000000 | 0x0252)\n> -#define NT_STATUS_LPC_REPLY_LOST (0xC0000000 | 0x0253)\n> -#define NT_STATUS_IP_ADDRESS_CONFLICT1 (0xC0000000 | 0x0254)\n> -#define NT_STATUS_IP_ADDRESS_CONFLICT2 (0xC0000000 | 0x0255)\n> -#define NT_STATUS_REGISTRY_QUOTA_LIMIT (0xC0000000 | 0x0256)\n> -#define NT_STATUS_PATH_NOT_COVERED (0xC0000000 | 0x0257)\n> -#define NT_STATUS_NO_CALLBACK_ACTIVE (0xC0000000 | 0x0258)\n> -#define NT_STATUS_LICENSE_QUOTA_EXCEEDED (0xC0000000 | 0x0259)\n> -#define NT_STATUS_PWD_TOO_SHORT (0xC0000000 | 0x025a)\n> -#define NT_STATUS_PWD_TOO_RECENT (0xC0000000 | 0x025b)\n> -#define NT_STATUS_PWD_HISTORY_CONFLICT (0xC0000000 | 0x025c)\n> -#define NT_STATUS_PLUGPLAY_NO_DEVICE (0xC0000000 | 0x025e)\n> -#define NT_STATUS_UNSUPPORTED_COMPRESSION (0xC0000000 | 0x025f)\n> -#define NT_STATUS_INVALID_HW_PROFILE (0xC0000000 | 0x0260)\n> -#define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH (0xC0000000 | 0x0261)\n> -#define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND (0xC0000000 | 0x0262)\n> -#define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND (0xC0000000 | 0x0263)\n> -#define NT_STATUS_RESOURCE_NOT_OWNED (0xC0000000 | 0x0264)\n> -#define NT_STATUS_TOO_MANY_LINKS (0xC0000000 | 0x0265)\n> -#define NT_STATUS_QUOTA_LIST_INCONSISTENT (0xC0000000 | 0x0266)\n> -#define NT_STATUS_FILE_IS_OFFLINE (0xC0000000 | 0x0267)\n> -#define NT_STATUS_VOLUME_DISMOUNTED (0xC0000000 | 0x026e)\n> -#define NT_STATUS_NOT_A_REPARSE_POINT (0xC0000000 | 0x0275)\n> -#define NT_STATUS_DIRECTORY_IS_A_REPARSE_POINT (0xC0000000 | 0x0281)\n> -#define NT_STATUS_ENCRYPTION_FAILED (0xC0000000 | 0x028a)\n> -#define NT_STATUS_DECRYPTION_FAILED (0xC0000000 | 0x028b)\n> -#define NT_STATUS_RANGE_NOT_FOUND (0xC0000000 | 0x028c)\n> -#define NT_STATUS_NO_RECOVERY_POLICY (0xC0000000 | 0x028d)\n> -#define NT_STATUS_NO_EFS (0xC0000000 | 0x028e)\n> -#define NT_STATUS_WRONG_EFS (0xC0000000 | 0x028f)\n> -#define NT_STATUS_NO_USER_KEYS (0xC0000000 | 0x0290)\n> -#define NT_STATUS_VOLUME_NOT_UPGRADED (0xC0000000 | 0x029c)\n> -#define NT_STATUS_NETWORK_SESSION_EXPIRED  (0xC0000000 | 0x035c)\n> -#define NT_STATUS_NO_SUCH_JOB (0xC0000000 | 0xEDE)     /* scheduler */\n> -#define NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP (0xC0000000 | 0x5D0000)\n> -#define NT_STATUS_OS2_INVALID_LEVEL 0x007c0001\n> +#define NT_STATUS_OK                   0x0000  // SUCCESS, 0\n> +#define NT_STATUS_PENDING              0x0103  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MORE_ENTRIES         0x0105  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SOME_NOT_MAPPED      0x0107  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOTIFY_ENUM_DIR      0x010c  // ERRSRV, ERR_NOTIFY_ENUM_DIR\n> +#define NT_STATUS_BUFFER_OVERFLOW  0x80000005  // ERRDOS, ERRmoredata\n> +#define NT_STATUS_NO_MORE_ENTRIES  0x8000001a  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEDIA_CHANGED    0x8000001c  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_END_OF_MEDIA     0x8000001e  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEDIA_CHECK      0x80000020  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_DATA_DETECTED 0x80000022  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d        // ERRDOS, ERRsymlink\n> +#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000289  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNSUCCESSFUL (0xC0000000 | 0x0001)   // ERRDOS, ERRgeneral\n> +#define NT_STATUS_NOT_IMPLEMENTED (0xC0000000 | 0x0002)        // ERRDOS, ERRbadfunc\n> +#define NT_STATUS_INVALID_INFO_CLASS (0xC0000000 | 0x0003)     // ERRDOS, ERRbadpipe\n> +#define NT_STATUS_INFO_LENGTH_MISMATCH (0xC0000000 | 0x0004)   // ERRDOS, 24\n> +#define NT_STATUS_ACCESS_VIOLATION (0xC0000000 | 0x0005)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IN_PAGE_ERROR (0xC0000000 | 0x0006)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PAGEFILE_QUOTA (0xC0000000 | 0x0007) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_HANDLE (0xC0000000 | 0x0008) // ERRDOS, ERRbadfid\n> +#define NT_STATUS_BAD_INITIAL_STACK (0xC0000000 | 0x0009)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_INITIAL_PC (0xC0000000 | 0x000a) // ERRDOS, 193\n> +#define NT_STATUS_INVALID_CID (0xC0000000 | 0x000b)    // ERRDOS, 87\n> +#define NT_STATUS_TIMER_NOT_CANCELED (0xC0000000 | 0x000c)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_PARAMETER (0xC0000000 | 0x000d)      // ERRDOS, 87\n> +#define NT_STATUS_NO_SUCH_DEVICE (0xC0000000 | 0x000e) // ERRDOS, ERRbadfile\n> +#define NT_STATUS_NO_SUCH_FILE (0xC0000000 | 0x000f)   // ERRDOS, ERRbadfile\n> +#define NT_STATUS_INVALID_DEVICE_REQUEST (0xC0000000 | 0x0010) // ERRDOS, ERRbadfunc\n> +#define NT_STATUS_END_OF_FILE (0xC0000000 | 0x0011)    // ERRDOS, 38\n> +#define NT_STATUS_WRONG_VOLUME (0xC0000000 | 0x0012)   // ERRDOS, 34\n> +#define NT_STATUS_NO_MEDIA_IN_DEVICE (0xC0000000 | 0x0013)     // ERRDOS, 21\n> +#define NT_STATUS_UNRECOGNIZED_MEDIA (0xC0000000 | 0x0014)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NONEXISTENT_SECTOR (0xC0000000 | 0x0015)     // ERRDOS, 27\n> +#define NT_STATUS_MORE_PROCESSING_REQUIRED (0xC0000000 | 0x0016)       // ERRDOS, ERRmoredata\n> +#define NT_STATUS_NO_MEMORY (0xC0000000 | 0x0017)      // ERRDOS, ERRnomem\n> +#define NT_STATUS_CONFLICTING_ADDRESSES (0xC0000000 | 0x0018)  // ERRDOS, 487\n> +#define NT_STATUS_NOT_MAPPED_VIEW (0xC0000000 | 0x0019)        // ERRDOS, 487\n> +#define NT_STATUS_UNABLE_TO_FREE_VM (0xC0000000 | 0x001a)      // ERRDOS, 87\n> +#define NT_STATUS_UNABLE_TO_DELETE_SECTION (0xC0000000 | 0x001b)       // ERRDOS, 87\n> +#define NT_STATUS_INVALID_SYSTEM_SERVICE (0xC0000000 | 0x001c) // ERRDOS, 2142\n> +#define NT_STATUS_ILLEGAL_INSTRUCTION (0xC0000000 | 0x001d)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LOCK_SEQUENCE (0xC0000000 | 0x001e)  // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_INVALID_VIEW_SIZE (0xC0000000 | 0x001f)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_INVALID_FILE_FOR_SECTION (0xC0000000 | 0x0020)       // ERRDOS, 193\n> +#define NT_STATUS_ALREADY_COMMITTED (0xC0000000 | 0x0021)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_ACCESS_DENIED (0xC0000000 | 0x0022)  // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_BUFFER_TOO_SMALL (0xC0000000 | 0x0023)       // ERRDOS, 111\n> +#define NT_STATUS_OBJECT_TYPE_MISMATCH (0xC0000000 | 0x0024)   // ERRDOS, ERRbadfid\n> +#define NT_STATUS_NONCONTINUABLE_EXCEPTION (0xC0000000 | 0x0025)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_DISPOSITION (0xC0000000 | 0x0026)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNWIND (0xC0000000 | 0x0027) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_STACK (0xC0000000 | 0x0028)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_UNWIND_TARGET (0xC0000000 | 0x0029)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOT_LOCKED (0xC0000000 | 0x002a)     // ERRDOS, 158\n> +#define NT_STATUS_PARITY_ERROR (0xC0000000 | 0x002b)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNABLE_TO_DECOMMIT_VM (0xC0000000 | 0x002c)  // ERRDOS, 487\n> +#define NT_STATUS_NOT_COMMITTED (0xC0000000 | 0x002d)  // ERRDOS, 487\n> +#define NT_STATUS_INVALID_PORT_ATTRIBUTES (0xC0000000 | 0x002e)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PORT_MESSAGE_TOO_LONG (0xC0000000 | 0x002f)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_PARAMETER_MIX (0xC0000000 | 0x0030)  // ERRDOS, 87\n> +#define NT_STATUS_INVALID_QUOTA_LOWER (0xC0000000 | 0x0031)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DISK_CORRUPT_ERROR (0xC0000000 | 0x0032)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_OBJECT_NAME_INVALID (0xC0000000 | 0x0033)    // ERRDOS, ERRbadfile\n> +#define NT_STATUS_OBJECT_NAME_NOT_FOUND (0xC0000000 | 0x0034)  // ERRDOS, ERRbadfile\n> +#define NT_STATUS_OBJECT_NAME_COLLISION (0xC0000000 | 0x0035)  // ERRDOS, ERRalreadyexists\n> +#define NT_STATUS_HANDLE_NOT_WAITABLE (0xC0000000 | 0x0036)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PORT_DISCONNECTED (0xC0000000 | 0x0037)      // ERRDOS, ERRbadfid\n> +#define NT_STATUS_DEVICE_ALREADY_ATTACHED (0xC0000000 | 0x0038)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_OBJECT_PATH_INVALID (0xC0000000 | 0x0039)    // ERRDOS, 161\n> +#define NT_STATUS_OBJECT_PATH_NOT_FOUND (0xC0000000 | 0x003a)  // ERRDOS, ERRbadpath\n> +#define NT_STATUS_OBJECT_PATH_SYNTAX_BAD (0xC0000000 | 0x003b) // ERRDOS, 161\n> +#define NT_STATUS_DATA_OVERRUN (0xC0000000 | 0x003c)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DATA_LATE_ERROR (0xC0000000 | 0x003d)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DATA_ERROR (0xC0000000 | 0x003e)     // ERRDOS, 23\n> +#define NT_STATUS_CRC_ERROR (0xC0000000 | 0x003f)      // ERRDOS, 23\n> +#define NT_STATUS_SECTION_TOO_BIG (0xC0000000 | 0x0040)        // ERRDOS, ERRnomem\n> +#define NT_STATUS_PORT_CONNECTION_REFUSED (0xC0000000 | 0x0041)        // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_INVALID_PORT_HANDLE (0xC0000000 | 0x0042)    // ERRDOS, ERRbadfid\n> +#define NT_STATUS_SHARING_VIOLATION (0xC0000000 | 0x0043)      // ERRDOS, ERRbadshare\n> +#define NT_STATUS_QUOTA_EXCEEDED (0xC0000000 | 0x0044) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_PAGE_PROTECTION (0xC0000000 | 0x0045)        // ERRDOS, 87\n> +#define NT_STATUS_MUTANT_NOT_OWNED (0xC0000000 | 0x0046)       // ERRDOS, 288\n> +#define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED (0xC0000000 | 0x0047)       // ERRDOS, 298\n> +#define NT_STATUS_PORT_ALREADY_SET (0xC0000000 | 0x0048)       // ERRDOS, 87\n> +#define NT_STATUS_SECTION_NOT_IMAGE (0xC0000000 | 0x0049)      // ERRDOS, 87\n> +#define NT_STATUS_SUSPEND_COUNT_EXCEEDED (0xC0000000 | 0x004a) // ERRDOS, 156\n> +#define NT_STATUS_THREAD_IS_TERMINATING (0xC0000000 | 0x004b)  // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_BAD_WORKING_SET_LIMIT (0xC0000000 | 0x004c)  // ERRDOS, 87\n> +#define NT_STATUS_INCOMPATIBLE_FILE_MAP (0xC0000000 | 0x004d)  // ERRDOS, 87\n> +#define NT_STATUS_SECTION_PROTECTION (0xC0000000 | 0x004e)     // ERRDOS, 87\n> +#define NT_STATUS_EAS_NOT_SUPPORTED (0xC0000000 | 0x004f)      // ERRDOS, ERReasnotsupported\n> +#define NT_STATUS_EA_TOO_LARGE (0xC0000000 | 0x0050)   // ERRDOS, 255\n> +#define NT_STATUS_NONEXISTENT_EA_ENTRY (0xC0000000 | 0x0051)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_EAS_ON_FILE (0xC0000000 | 0x0052) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_EA_CORRUPT_ERROR (0xC0000000 | 0x0053)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FILE_LOCK_CONFLICT (0xC0000000 | 0x0054)     // ERRDOS, ERRlock\n> +#define NT_STATUS_LOCK_NOT_GRANTED (0xC0000000 | 0x0055)       // ERRDOS, ERRlock\n> +#define NT_STATUS_DELETE_PENDING (0xC0000000 | 0x0056) // ERRDOS, ERRbadfile\n> +#define NT_STATUS_CTL_FILE_NOT_SUPPORTED (0xC0000000 | 0x0057) // ERRDOS, ERRunsup\n> +#define NT_STATUS_UNKNOWN_REVISION (0xC0000000 | 0x0058)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_REVISION_MISMATCH (0xC0000000 | 0x0059)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_OWNER (0xC0000000 | 0x005a)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_PRIMARY_GROUP (0xC0000000 | 0x005b)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_IMPERSONATION_TOKEN (0xC0000000 | 0x005c) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CANT_DISABLE_MANDATORY (0xC0000000 | 0x005d) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_LOGON_SERVERS (0xC0000000 | 0x005e)       // ERRDOS, 2215\n> +#define NT_STATUS_NO_SUCH_LOGON_SESSION (0xC0000000 | 0x005f)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_PRIVILEGE (0xC0000000 | 0x0060)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PRIVILEGE_NOT_HELD (0xC0000000 | 0x0061)     // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_INVALID_ACCOUNT_NAME (0xC0000000 | 0x0062)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_USER_EXISTS (0xC0000000 | 0x0063)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_USER (0xC0000000 | 0x0064)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_GROUP_EXISTS (0xC0000000 | 0x0065)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_GROUP (0xC0000000 | 0x0066)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEMBER_IN_GROUP (0xC0000000 | 0x0067)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEMBER_NOT_IN_GROUP (0xC0000000 | 0x0068)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LAST_ADMIN (0xC0000000 | 0x0069)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_WRONG_PASSWORD (0xC0000000 | 0x006a) // ERRSRV, ERRbadpw\n> +#define NT_STATUS_ILL_FORMED_PASSWORD (0xC0000000 | 0x006b)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PASSWORD_RESTRICTION (0xC0000000 | 0x006c)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGON_FAILURE (0xC0000000 | 0x006d)  // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_ACCOUNT_RESTRICTION (0xC0000000 | 0x006e)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LOGON_HOURS (0xC0000000 | 0x006f)    // ERRSRV, ERRbadLogonTime\n> +#define NT_STATUS_INVALID_WORKSTATION (0xC0000000 | 0x0070)    // ERRSRV, ERRbadclient\n> +#define NT_STATUS_PASSWORD_EXPIRED (0xC0000000 | 0x0071)       // ERRSRV, ERRpasswordExpired\n> +#define NT_STATUS_ACCOUNT_DISABLED (0xC0000000 | 0x0072)       // ERRSRV, ERRaccountexpired\n> +#define NT_STATUS_NONE_MAPPED (0xC0000000 | 0x0073)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_LUIDS_REQUESTED (0xC0000000 | 0x0074)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LUIDS_EXHAUSTED (0xC0000000 | 0x0075)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_SUB_AUTHORITY (0xC0000000 | 0x0076)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_ACL (0xC0000000 | 0x0077)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_SID (0xC0000000 | 0x0078)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_SECURITY_DESCR (0xC0000000 | 0x0079) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PROCEDURE_NOT_FOUND (0xC0000000 | 0x007a)    // ERRDOS, 127\n> +#define NT_STATUS_INVALID_IMAGE_FORMAT (0xC0000000 | 0x007b)   // ERRDOS, 193\n> +#define NT_STATUS_NO_TOKEN (0xC0000000 | 0x007c)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_INHERITANCE_ACL (0xC0000000 | 0x007d)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_RANGE_NOT_LOCKED (0xC0000000 | 0x007e)       // ERRDOS, 158\n> +#define NT_STATUS_DISK_FULL (0xC0000000 | 0x007f)      // ERRDOS, 112\n> +#define NT_STATUS_SERVER_DISABLED (0xC0000000 | 0x0080)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SERVER_NOT_DISABLED (0xC0000000 | 0x0081)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_GUIDS_REQUESTED (0xC0000000 | 0x0082)       // ERRDOS, 68\n> +#define NT_STATUS_GUIDS_EXHAUSTED (0xC0000000 | 0x0083)        // ERRDOS, 259\n> +#define NT_STATUS_INVALID_ID_AUTHORITY (0xC0000000 | 0x0084)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_AGENTS_EXHAUSTED (0xC0000000 | 0x0085)       // ERRDOS, 259\n> +#define NT_STATUS_INVALID_VOLUME_LABEL (0xC0000000 | 0x0086)   // ERRDOS, 154\n> +#define NT_STATUS_SECTION_NOT_EXTENDED (0xC0000000 | 0x0087)   // ERRDOS, 14\n> +#define NT_STATUS_NOT_MAPPED_DATA (0xC0000000 | 0x0088)        // ERRDOS, 487\n> +#define NT_STATUS_RESOURCE_DATA_NOT_FOUND (0xC0000000 | 0x0089)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_RESOURCE_TYPE_NOT_FOUND (0xC0000000 | 0x008a)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_RESOURCE_NAME_NOT_FOUND (0xC0000000 | 0x008b)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ARRAY_BOUNDS_EXCEEDED (0xC0000000 | 0x008c)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_DENORMAL_OPERAND (0xC0000000 | 0x008d) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_DIVIDE_BY_ZERO (0xC0000000 | 0x008e)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_INEXACT_RESULT (0xC0000000 | 0x008f)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_INVALID_OPERATION (0xC0000000 | 0x0090)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_OVERFLOW (0xC0000000 | 0x0091) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_STACK_CHECK (0xC0000000 | 0x0092)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOAT_UNDERFLOW (0xC0000000 | 0x0093)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INTEGER_DIVIDE_BY_ZERO (0xC0000000 | 0x0094) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INTEGER_OVERFLOW (0xC0000000 | 0x0095)       // ERRDOS, 534\n> +#define NT_STATUS_PRIVILEGED_INSTRUCTION (0xC0000000 | 0x0096) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_PAGING_FILES (0xC0000000 | 0x0097)  // ERRDOS, ERRnomem\n> +#define NT_STATUS_FILE_INVALID (0xC0000000 | 0x0098)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ALLOTTED_SPACE_EXCEEDED (0xC0000000 | 0x0099)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INSUFFICIENT_RESOURCES (0xC0000000 | 0x009a) // ERRDOS, ERRnoresource\n> +#define NT_STATUS_DFS_EXIT_PATH_FOUND (0xC0000000 | 0x009b)    // ERRDOS, ERRbadpath\n> +#define NT_STATUS_DEVICE_DATA_ERROR (0xC0000000 | 0x009c)      // ERRDOS, 23\n> +#define NT_STATUS_DEVICE_NOT_CONNECTED (0xC0000000 | 0x009d)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DEVICE_POWER_FAILURE (0xC0000000 | 0x009e)   // ERRDOS, 21\n> +#define NT_STATUS_FREE_VM_NOT_AT_BASE (0xC0000000 | 0x009f)    // ERRDOS, 487\n> +#define NT_STATUS_MEMORY_NOT_ALLOCATED (0xC0000000 | 0x00a0)   // ERRDOS, 487\n> +#define NT_STATUS_WORKING_SET_QUOTA (0xC0000000 | 0x00a1)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEDIA_WRITE_PROTECTED (0xC0000000 | 0x00a2)  // ERRDOS, 19\n> +#define NT_STATUS_DEVICE_NOT_READY (0xC0000000 | 0x00a3)       // ERRDOS, 21\n> +#define NT_STATUS_INVALID_GROUP_ATTRIBUTES (0xC0000000 | 0x00a4)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_IMPERSONATION_LEVEL (0xC0000000 | 0x00a5)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CANT_OPEN_ANONYMOUS (0xC0000000 | 0x00a6)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_VALIDATION_CLASS (0xC0000000 | 0x00a7)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_TOKEN_TYPE (0xC0000000 | 0x00a8) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_MASTER_BOOT_RECORD (0xC0000000 | 0x00a9) // ERRDOS, 87\n> +#define NT_STATUS_INSTRUCTION_MISALIGNMENT (0xC0000000 | 0x00aa)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INSTANCE_NOT_AVAILABLE (0xC0000000 | 0x00ab) // ERRDOS, ERRpipebusy\n> +#define NT_STATUS_PIPE_NOT_AVAILABLE (0xC0000000 | 0x00ac)     // ERRDOS, ERRpipebusy\n> +#define NT_STATUS_INVALID_PIPE_STATE (0xC0000000 | 0x00ad)     // ERRDOS, ERRbadpipe\n> +#define NT_STATUS_PIPE_BUSY (0xC0000000 | 0x00ae)      // ERRDOS, ERRpipebusy\n> +#define NT_STATUS_ILLEGAL_FUNCTION (0xC0000000 | 0x00af)       // ERRDOS, ERRbadfunc\n> +#define NT_STATUS_PIPE_DISCONNECTED (0xC0000000 | 0x00b0)      // ERRDOS, ERRnotconnected\n> +#define NT_STATUS_PIPE_CLOSING (0xC0000000 | 0x00b1)   // ERRDOS, ERRpipeclosing\n> +#define NT_STATUS_PIPE_CONNECTED (0xC0000000 | 0x00b2) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PIPE_LISTENING (0xC0000000 | 0x00b3) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_READ_MODE (0xC0000000 | 0x00b4)      // ERRDOS, ERRbadpipe\n> +#define NT_STATUS_IO_TIMEOUT (0xC0000000 | 0x00b5)     // ERRDOS, 121\n> +#define NT_STATUS_FILE_FORCED_CLOSED (0xC0000000 | 0x00b6)     // ERRDOS, 38\n> +#define NT_STATUS_PROFILING_NOT_STARTED (0xC0000000 | 0x00b7)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PROFILING_NOT_STOPPED (0xC0000000 | 0x00b8)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_COULD_NOT_INTERPRET (0xC0000000 | 0x00b9)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FILE_IS_A_DIRECTORY (0xC0000000 | 0x00ba)    // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NOT_SUPPORTED (0xC0000000 | 0x00bb)  // ERRDOS, ERRunsup\n> +#define NT_STATUS_REMOTE_NOT_LISTENING (0xC0000000 | 0x00bc)   // ERRDOS, 51\n> +#define NT_STATUS_DUPLICATE_NAME (0xC0000000 | 0x00bd) // ERRDOS, 52\n> +#define NT_STATUS_BAD_NETWORK_PATH (0xC0000000 | 0x00be)       // ERRDOS, 53\n> +#define NT_STATUS_NETWORK_BUSY (0xC0000000 | 0x00bf)   // ERRDOS, 54\n> +#define NT_STATUS_DEVICE_DOES_NOT_EXIST (0xC0000000 | 0x00c0)  // ERRDOS, 55\n> +#define NT_STATUS_TOO_MANY_COMMANDS (0xC0000000 | 0x00c1)      // ERRDOS, 56\n> +#define NT_STATUS_ADAPTER_HARDWARE_ERROR (0xC0000000 | 0x00c2) // ERRDOS, 57\n> +#define NT_STATUS_INVALID_NETWORK_RESPONSE (0xC0000000 | 0x00c3)       // ERRDOS, 58\n> +#define NT_STATUS_UNEXPECTED_NETWORK_ERROR (0xC0000000 | 0x00c4)       // ERRDOS, 59\n> +#define NT_STATUS_BAD_REMOTE_ADAPTER (0xC0000000 | 0x00c5)     // ERRDOS, 60\n> +#define NT_STATUS_PRINT_QUEUE_FULL (0xC0000000 | 0x00c6)       // ERRDOS, 61\n> +#define NT_STATUS_NO_SPOOL_SPACE (0xC0000000 | 0x00c7) // ERRDOS, 62\n> +#define NT_STATUS_PRINT_CANCELLED (0xC0000000 | 0x00c8)        // ERRDOS, 63\n> +#define NT_STATUS_NETWORK_NAME_DELETED (0xC0000000 | 0x00c9)   // ERRDOS, 64\n> +#define NT_STATUS_NETWORK_ACCESS_DENIED (0xC0000000 | 0x00ca)  // ERRDOS, 65\n> +#define NT_STATUS_BAD_DEVICE_TYPE (0xC0000000 | 0x00cb)        // ERRDOS, 66\n> +#define NT_STATUS_BAD_NETWORK_NAME (0xC0000000 | 0x00cc)       // ERRDOS, ERRnosuchshare\n> +#define NT_STATUS_TOO_MANY_NAMES (0xC0000000 | 0x00cd) // ERRDOS, 68\n> +#define NT_STATUS_TOO_MANY_SESSIONS (0xC0000000 | 0x00ce)      // ERRDOS, 69\n> +#define NT_STATUS_SHARING_PAUSED (0xC0000000 | 0x00cf) // ERRDOS, 70\n> +#define NT_STATUS_REQUEST_NOT_ACCEPTED (0xC0000000 | 0x00d0)   // ERRDOS, 71\n> +#define NT_STATUS_REDIRECTOR_PAUSED (0xC0000000 | 0x00d1)      // ERRDOS, 72\n> +#define NT_STATUS_NET_WRITE_FAULT (0xC0000000 | 0x00d2)        // ERRDOS, 88\n> +#define NT_STATUS_PROFILING_AT_LIMIT (0xC0000000 | 0x00d3)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOT_SAME_DEVICE (0xC0000000 | 0x00d4)        // ERRDOS, ERRdiffdevice\n> +#define NT_STATUS_FILE_RENAMED (0xC0000000 | 0x00d5)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED (0xC0000000 | 0x00d6) // ERRDOS, 240\n> +#define NT_STATUS_NO_SECURITY_ON_OBJECT (0xC0000000 | 0x00d7)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CANT_WAIT (0xC0000000 | 0x00d8)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PIPE_EMPTY (0xC0000000 | 0x00d9)     // ERRDOS, ERRpipeclosing\n> +#define NT_STATUS_CANT_ACCESS_DOMAIN_INFO (0xC0000000 | 0x00da)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CANT_TERMINATE_SELF (0xC0000000 | 0x00db)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_SERVER_STATE (0xC0000000 | 0x00dc)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_DOMAIN_STATE (0xC0000000 | 0x00dd)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_DOMAIN_ROLE (0xC0000000 | 0x00de)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_DOMAIN (0xC0000000 | 0x00df) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DOMAIN_EXISTS (0xC0000000 | 0x00e0)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DOMAIN_LIMIT_EXCEEDED (0xC0000000 | 0x00e1)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_OPLOCK_NOT_GRANTED (0xC0000000 | 0x00e2)     // ERRDOS, 300\n> +#define NT_STATUS_INVALID_OPLOCK_PROTOCOL (0xC0000000 | 0x00e3)        // ERRDOS, 301\n> +#define NT_STATUS_INTERNAL_DB_CORRUPTION (0xC0000000 | 0x00e4) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INTERNAL_ERROR (0xC0000000 | 0x00e5) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_GENERIC_NOT_MAPPED (0xC0000000 | 0x00e6)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_DESCRIPTOR_FORMAT (0xC0000000 | 0x00e7)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_USER_BUFFER (0xC0000000 | 0x00e8)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNEXPECTED_IO_ERROR (0xC0000000 | 0x00e9)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNEXPECTED_MM_CREATE_ERR (0xC0000000 | 0x00ea)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNEXPECTED_MM_MAP_ERROR (0xC0000000 | 0x00eb)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR (0xC0000000 | 0x00ec)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOT_LOGON_PROCESS (0xC0000000 | 0x00ed)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGON_SESSION_EXISTS (0xC0000000 | 0x00ee)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_PARAMETER_1 (0xC0000000 | 0x00ef)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_2 (0xC0000000 | 0x00f0)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_3 (0xC0000000 | 0x00f1)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_4 (0xC0000000 | 0x00f2)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_5 (0xC0000000 | 0x00f3)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_6 (0xC0000000 | 0x00f4)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_7 (0xC0000000 | 0x00f5)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_8 (0xC0000000 | 0x00f6)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_9 (0xC0000000 | 0x00f7)    // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_10 (0xC0000000 | 0x00f8)   // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_11 (0xC0000000 | 0x00f9)   // ERRDOS, 87\n> +#define NT_STATUS_INVALID_PARAMETER_12 (0xC0000000 | 0x00fa)   // ERRDOS, 87\n> +#define NT_STATUS_REDIRECTOR_NOT_STARTED (0xC0000000 | 0x00fb) // ERRDOS, ERRbadpath\n> +#define NT_STATUS_REDIRECTOR_STARTED (0xC0000000 | 0x00fc)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_STACK_OVERFLOW (0xC0000000 | 0x00fd) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_PACKAGE (0xC0000000 | 0x00fe)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_FUNCTION_TABLE (0xC0000000 | 0x00ff)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_VARIABLE_NOT_FOUND (0xC0000000 | 0x0100)     // ERRDOS, 203\n> +#define NT_STATUS_DIRECTORY_NOT_EMPTY (0xC0000000 | 0x0101)    // ERRDOS, 145\n> +#define NT_STATUS_FILE_CORRUPT_ERROR (0xC0000000 | 0x0102)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOT_A_DIRECTORY (0xC0000000 | 0x0103)        // ERRDOS, 267\n> +#define NT_STATUS_BAD_LOGON_SESSION_STATE (0xC0000000 | 0x0104)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGON_SESSION_COLLISION (0xC0000000 | 0x0105)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NAME_TOO_LONG (0xC0000000 | 0x0106)  // ERRDOS, 206\n> +#define NT_STATUS_FILES_OPEN (0xC0000000 | 0x0107)     // ERRDOS, 2401\n> +#define NT_STATUS_CONNECTION_IN_USE (0xC0000000 | 0x0108)      // ERRDOS, 2404\n> +#define NT_STATUS_MESSAGE_NOT_FOUND (0xC0000000 | 0x0109)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PROCESS_IS_TERMINATING (0xC0000000 | 0x010a) // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_INVALID_LOGON_TYPE (0xC0000000 | 0x010b)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_GUID_TRANSLATION (0xC0000000 | 0x010c)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CANNOT_IMPERSONATE (0xC0000000 | 0x010d)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IMAGE_ALREADY_LOADED (0xC0000000 | 0x010e)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_NOT_PRESENT (0xC0000000 | 0x010f)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_LID_NOT_EXIST (0xC0000000 | 0x0110)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_LID_ALREADY_OWNED (0xC0000000 | 0x0111)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_NOT_LID_OWNER (0xC0000000 | 0x0112)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_INVALID_COMMAND (0xC0000000 | 0x0113)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_INVALID_LID (0xC0000000 | 0x0114)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE (0xC0000000 | 0x0115)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ABIOS_INVALID_SELECTOR (0xC0000000 | 0x0116) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_LDT (0xC0000000 | 0x0117) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LDT_SIZE (0xC0000000 | 0x0118)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LDT_OFFSET (0xC0000000 | 0x0119)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LDT_DESCRIPTOR (0xC0000000 | 0x011a) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_IMAGE_NE_FORMAT (0xC0000000 | 0x011b)        // ERRDOS, 193\n> +#define NT_STATUS_RXACT_INVALID_STATE (0xC0000000 | 0x011c)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_RXACT_COMMIT_FAILURE (0xC0000000 | 0x011d)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MAPPED_FILE_SIZE_ZERO (0xC0000000 | 0x011e)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_OPENED_FILES (0xC0000000 | 0x011f)  // ERRDOS, ERRnofids\n> +#define NT_STATUS_CANCELLED (0xC0000000 | 0x0120)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CANNOT_DELETE (0xC0000000 | 0x0121)  // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_INVALID_COMPUTER_NAME (0xC0000000 | 0x0122)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FILE_DELETED (0xC0000000 | 0x0123)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_SPECIAL_ACCOUNT (0xC0000000 | 0x0124)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SPECIAL_GROUP (0xC0000000 | 0x0125)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SPECIAL_USER (0xC0000000 | 0x0126)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEMBERS_PRIMARY_GROUP (0xC0000000 | 0x0127)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FILE_CLOSED (0xC0000000 | 0x0128)    // ERRDOS, ERRbadfid\n> +#define NT_STATUS_TOO_MANY_THREADS (0xC0000000 | 0x0129)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_THREAD_NOT_IN_PROCESS (0xC0000000 | 0x012a)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOKEN_ALREADY_IN_USE (0xC0000000 | 0x012b)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED (0xC0000000 | 0x012c)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_COMMITMENT_LIMIT (0xC0000000 | 0x012d)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_IMAGE_LE_FORMAT (0xC0000000 | 0x012e)        // ERRDOS, 193\n> +#define NT_STATUS_INVALID_IMAGE_NOT_MZ (0xC0000000 | 0x012f)   // ERRDOS, 193\n> +#define NT_STATUS_INVALID_IMAGE_PROTECT (0xC0000000 | 0x0130)  // ERRDOS, 193\n> +#define NT_STATUS_INVALID_IMAGE_WIN_16 (0xC0000000 | 0x0131)   // ERRDOS, 193\n> +#define NT_STATUS_LOGON_SERVER_CONFLICT (0xC0000000 | 0x0132)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TIME_DIFFERENCE_AT_DC (0xC0000000 | 0x0133)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SYNCHRONIZATION_REQUIRED (0xC0000000 | 0x0134)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DLL_NOT_FOUND (0xC0000000 | 0x0135)  // ERRDOS, 126\n> +#define NT_STATUS_OPEN_FAILED (0xC0000000 | 0x0136)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IO_PRIVILEGE_FAILED (0xC0000000 | 0x0137)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ORDINAL_NOT_FOUND (0xC0000000 | 0x0138)      // ERRDOS, 182\n> +#define NT_STATUS_ENTRYPOINT_NOT_FOUND (0xC0000000 | 0x0139)   // ERRDOS, 127\n> +#define NT_STATUS_CONTROL_C_EXIT (0xC0000000 | 0x013a) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOCAL_DISCONNECT (0xC0000000 | 0x013b)       // ERRDOS, 64\n> +#define NT_STATUS_REMOTE_DISCONNECT (0xC0000000 | 0x013c)      // ERRDOS, 64\n> +#define NT_STATUS_REMOTE_RESOURCES (0xC0000000 | 0x013d)       // ERRDOS, 51\n> +#define NT_STATUS_LINK_FAILED (0xC0000000 | 0x013e)    // ERRDOS, 59\n> +#define NT_STATUS_LINK_TIMEOUT (0xC0000000 | 0x013f)   // ERRDOS, 59\n> +#define NT_STATUS_INVALID_CONNECTION (0xC0000000 | 0x0140)     // ERRDOS, 59\n> +#define NT_STATUS_INVALID_ADDRESS (0xC0000000 | 0x0141)        // ERRDOS, 59\n> +#define NT_STATUS_DLL_INIT_FAILED (0xC0000000 | 0x0142)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MISSING_SYSTEMFILE (0xC0000000 | 0x0143)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNHANDLED_EXCEPTION (0xC0000000 | 0x0144)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_APP_INIT_FAILURE (0xC0000000 | 0x0145)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PAGEFILE_CREATE_FAILED (0xC0000000 | 0x0146) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_PAGEFILE (0xC0000000 | 0x0147)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LEVEL (0xC0000000 | 0x0148)  // ERRDOS, 124\n> +#define NT_STATUS_WRONG_PASSWORD_CORE (0xC0000000 | 0x0149)    // ERRDOS, 86\n> +#define NT_STATUS_ILLEGAL_FLOAT_CONTEXT (0xC0000000 | 0x014a)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PIPE_BROKEN (0xC0000000 | 0x014b)    // ERRDOS, 109\n> +#define NT_STATUS_REGISTRY_CORRUPT (0xC0000000 | 0x014c)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_REGISTRY_IO_FAILED (0xC0000000 | 0x014d)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_EVENT_PAIR (0xC0000000 | 0x014e)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNRECOGNIZED_VOLUME (0xC0000000 | 0x014f)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SERIAL_NO_DEVICE_INITED (0xC0000000 | 0x0150)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_ALIAS (0xC0000000 | 0x0151)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEMBER_NOT_IN_ALIAS (0xC0000000 | 0x0152)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MEMBER_IN_ALIAS (0xC0000000 | 0x0153)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ALIAS_EXISTS (0xC0000000 | 0x0154)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGON_NOT_GRANTED (0xC0000000 | 0x0155)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_SECRETS (0xC0000000 | 0x0156)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SECRET_TOO_LONG (0xC0000000 | 0x0157)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INTERNAL_DB_ERROR (0xC0000000 | 0x0158)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FULLSCREEN_MODE (0xC0000000 | 0x0159)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_CONTEXT_IDS (0xC0000000 | 0x015a)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGON_TYPE_NOT_GRANTED (0xC0000000 | 0x015b) // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NOT_REGISTRY_FILE (0xC0000000 | 0x015c)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED (0xC0000000 | 0x015d)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR (0xC0000000 | 0x015e)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FT_MISSING_MEMBER (0xC0000000 | 0x015f)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ILL_FORMED_SERVICE_ENTRY (0xC0000000 | 0x0160)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ILLEGAL_CHARACTER (0xC0000000 | 0x0161)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNMAPPABLE_CHARACTER (0xC0000000 | 0x0162)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNDEFINED_CHARACTER (0xC0000000 | 0x0163)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOPPY_VOLUME (0xC0000000 | 0x0164)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND (0xC0000000 | 0x0165)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOPPY_WRONG_CYLINDER (0xC0000000 | 0x0166)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOPPY_UNKNOWN_ERROR (0xC0000000 | 0x0167)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FLOPPY_BAD_REGISTERS (0xC0000000 | 0x0168)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DISK_RECALIBRATE_FAILED (0xC0000000 | 0x0169)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DISK_OPERATION_FAILED (0xC0000000 | 0x016a)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DISK_RESET_FAILED (0xC0000000 | 0x016b)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SHARED_IRQ_BUSY (0xC0000000 | 0x016c)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FT_ORPHANING (0xC0000000 | 0x016d)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT (0xC0000000 | 0x016e)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PARTITION_FAILURE (0xC0000000 | 0x0172)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_BLOCK_LENGTH (0xC0000000 | 0x0173)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DEVICE_NOT_PARTITIONED (0xC0000000 | 0x0174) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNABLE_TO_LOCK_MEDIA (0xC0000000 | 0x0175)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA (0xC0000000 | 0x0176) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_EOM_OVERFLOW (0xC0000000 | 0x0177)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_MEDIA (0xC0000000 | 0x0178)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_SUCH_MEMBER (0xC0000000 | 0x017a) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_MEMBER (0xC0000000 | 0x017b) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_KEY_DELETED (0xC0000000 | 0x017c)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_LOG_SPACE (0xC0000000 | 0x017d)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_SIDS (0xC0000000 | 0x017e)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED (0xC0000000 | 0x017f)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_KEY_HAS_CHILDREN (0xC0000000 | 0x0180)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CHILD_MUST_BE_VOLATILE (0xC0000000 | 0x0181) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DEVICE_CONFIGURATION_ERROR (0xC0000000 | 0x0182)     // ERRDOS, 87\n> +#define NT_STATUS_DRIVER_INTERNAL_ERROR (0xC0000000 | 0x0183)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_DEVICE_STATE (0xC0000000 | 0x0184)   // ERRDOS, 22\n> +#define NT_STATUS_IO_DEVICE_ERROR (0xC0000000 | 0x0185)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DEVICE_PROTOCOL_ERROR (0xC0000000 | 0x0186)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BACKUP_CONTROLLER (0xC0000000 | 0x0187)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOG_FILE_FULL (0xC0000000 | 0x0188)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_LATE (0xC0000000 | 0x0189)       // ERRDOS, 19\n> +#define NT_STATUS_NO_TRUST_LSA_SECRET (0xC0000000 | 0x018a)    // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NO_TRUST_SAM_ACCOUNT (0xC0000000 | 0x018b)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_TRUSTED_DOMAIN_FAILURE (0xC0000000 | 0x018c) // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE (0xC0000000 | 0x018d)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_EVENTLOG_FILE_CORRUPT (0xC0000000 | 0x018e)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_EVENTLOG_CANT_START (0xC0000000 | 0x018f)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TRUST_FAILURE (0xC0000000 | 0x0190)  // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_MUTANT_LIMIT_EXCEEDED (0xC0000000 | 0x0191)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NETLOGON_NOT_STARTED (0xC0000000 | 0x0192)   // ERRDOS, ERRnetlogonNotStarted\n> +#define NT_STATUS_ACCOUNT_EXPIRED (0xC0000000 | 0x0193)        // ERRSRV, ERRaccountexpired\n> +#define NT_STATUS_POSSIBLE_DEADLOCK (0xC0000000 | 0x0194)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT (0xC0000000 | 0x0195)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_REMOTE_SESSION_LIMIT (0xC0000000 | 0x0196)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_EVENTLOG_FILE_CHANGED (0xC0000000 | 0x0197)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT (0xC0000000 | 0x0198)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT (0xC0000000 | 0x0199)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT (0xC0000000 | 0x019a)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_DOMAIN_TRUST_INCONSISTENT (0xC0000000 | 0x019b)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_FS_DRIVER_REQUIRED (0xC0000000 | 0x019c)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_LOCK_RANGE (0xC0000000 | 0x01a1)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_USER_SESSION_KEY (0xC0000000 | 0x0202)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_USER_SESSION_DELETED (0xC0000000 | 0x0203)   // ERRDOS, 59\n> +#define NT_STATUS_RESOURCE_LANG_NOT_FOUND (0xC0000000 | 0x0204)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INSUFF_SERVER_RESOURCES (0xC0000000 | 0x0205)        // ERRDOS, ERRnoresource\n> +#define NT_STATUS_INVALID_BUFFER_SIZE (0xC0000000 | 0x0206)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_ADDRESS_COMPONENT (0xC0000000 | 0x0207)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_ADDRESS_WILDCARD (0xC0000000 | 0x0208)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TOO_MANY_ADDRESSES (0xC0000000 | 0x0209)     // ERRDOS, 68\n> +#define NT_STATUS_ADDRESS_ALREADY_EXISTS (0xC0000000 | 0x020a) // ERRDOS, 52\n> +#define NT_STATUS_ADDRESS_CLOSED (0xC0000000 | 0x020b) // ERRDOS, 64\n> +#define NT_STATUS_CONNECTION_DISCONNECTED (0xC0000000 | 0x020c)        // ERRDOS, 64\n> +#define NT_STATUS_CONNECTION_RESET (0xC0000000 | 0x020d)       // ERRDOS, 64\n> +#define NT_STATUS_TOO_MANY_NODES (0xC0000000 | 0x020e) // ERRDOS, 68\n> +#define NT_STATUS_TRANSACTION_ABORTED (0xC0000000 | 0x020f)    // ERRDOS, 59\n> +#define NT_STATUS_TRANSACTION_TIMED_OUT (0xC0000000 | 0x0210)  // ERRDOS, 59\n> +#define NT_STATUS_TRANSACTION_NO_RELEASE (0xC0000000 | 0x0211) // ERRDOS, 59\n> +#define NT_STATUS_TRANSACTION_NO_MATCH (0xC0000000 | 0x0212)   // ERRDOS, 59\n> +#define NT_STATUS_TRANSACTION_RESPONDED (0xC0000000 | 0x0213)  // ERRDOS, 59\n> +#define NT_STATUS_TRANSACTION_INVALID_ID (0xC0000000 | 0x0214) // ERRDOS, 59\n> +#define NT_STATUS_TRANSACTION_INVALID_TYPE (0xC0000000 | 0x0215)       // ERRDOS, 59\n> +#define NT_STATUS_NOT_SERVER_SESSION (0xC0000000 | 0x0216)     // ERRDOS, ERRunsup\n> +#define NT_STATUS_NOT_CLIENT_SESSION (0xC0000000 | 0x0217)     // ERRDOS, ERRunsup\n> +#define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE (0xC0000000 | 0x0218)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DEBUG_ATTACH_FAILED (0xC0000000 | 0x0219)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_SYSTEM_PROCESS_TERMINATED (0xC0000000 | 0x021a)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DATA_NOT_ACCEPTED (0xC0000000 | 0x021b)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_BROWSER_SERVERS_FOUND (0xC0000000 | 0x021c)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_VDM_HARD_ERROR (0xC0000000 | 0x021d) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DRIVER_CANCEL_TIMEOUT (0xC0000000 | 0x021e)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_REPLY_MESSAGE_MISMATCH (0xC0000000 | 0x021f) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MAPPED_ALIGNMENT (0xC0000000 | 0x0220)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IMAGE_CHECKSUM_MISMATCH (0xC0000000 | 0x0221)        // ERRDOS, 193\n> +#define NT_STATUS_LOST_WRITEBEHIND_DATA (0xC0000000 | 0x0222)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID (0xC0000000 | 0x0223)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PASSWORD_MUST_CHANGE (0xC0000000 | 0x0224)   // ERRSRV, ERRpasswordExpired\n> +#define NT_STATUS_NOT_FOUND (0xC0000000 | 0x0225)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NOT_TINY_STREAM (0xC0000000 | 0x0226)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_RECOVERY_FAILURE (0xC0000000 | 0x0227)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_STACK_OVERFLOW_READ (0xC0000000 | 0x0228)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FAIL_CHECK (0xC0000000 | 0x0229)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DUPLICATE_OBJECTID (0xC0000000 | 0x022a)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_OBJECTID_EXISTS (0xC0000000 | 0x022b)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CONVERT_TO_LARGE (0xC0000000 | 0x022c)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_RETRY (0xC0000000 | 0x022d)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FOUND_OUT_OF_SCOPE (0xC0000000 | 0x022e)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ALLOCATE_BUCKET (0xC0000000 | 0x022f)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PROPSET_NOT_FOUND (0xC0000000 | 0x0230)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_MARSHALL_OVERFLOW (0xC0000000 | 0x0231)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_VARIANT (0xC0000000 | 0x0232)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND (0xC0000000 | 0x0233)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ACCOUNT_LOCKED_OUT (0xC0000000 | 0x0234)     // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_HANDLE_NOT_CLOSABLE (0xC0000000 | 0x0235)    // ERRDOS, ERRbadfid\n> +#define NT_STATUS_CONNECTION_REFUSED (0xC0000000 | 0x0236)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_GRACEFUL_DISCONNECT (0xC0000000 | 0x0237)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED (0xC0000000 | 0x0238)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_ADDRESS_NOT_ASSOCIATED (0xC0000000 | 0x0239) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CONNECTION_INVALID (0xC0000000 | 0x023a)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CONNECTION_ACTIVE (0xC0000000 | 0x023b)      // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NETWORK_UNREACHABLE (0xC0000000 | 0x023c)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_HOST_UNREACHABLE (0xC0000000 | 0x023d)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PROTOCOL_UNREACHABLE (0xC0000000 | 0x023e)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PORT_UNREACHABLE (0xC0000000 | 0x023f)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_REQUEST_ABORTED (0xC0000000 | 0x0240)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CONNECTION_ABORTED (0xC0000000 | 0x0241)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_COMPRESSION_BUFFER (0xC0000000 | 0x0242) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_USER_MAPPED_FILE (0xC0000000 | 0x0243)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_AUDIT_FAILED (0xC0000000 | 0x0244)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_TIMER_RESOLUTION_NOT_SET (0xC0000000 | 0x0245)       // ERRHRD, ERRgeneral\n> +#define NT_STATUS_CONNECTION_COUNT_LIMIT (0xC0000000 | 0x0246) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGIN_TIME_RESTRICTION (0xC0000000 | 0x0247) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LOGIN_WKSTA_RESTRICTION (0xC0000000 | 0x0248)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IMAGE_MP_UP_MISMATCH (0xC0000000 | 0x0249)   // ERRDOS, 193\n> +#define NT_STATUS_INSUFFICIENT_LOGON_INFO (0xC0000000 | 0x0250)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_DLL_ENTRYPOINT (0xC0000000 | 0x0251)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_BAD_SERVICE_ENTRYPOINT (0xC0000000 | 0x0252) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LPC_REPLY_LOST (0xC0000000 | 0x0253) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IP_ADDRESS_CONFLICT1 (0xC0000000 | 0x0254)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_IP_ADDRESS_CONFLICT2 (0xC0000000 | 0x0255)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_REGISTRY_QUOTA_LIMIT (0xC0000000 | 0x0256)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PATH_NOT_COVERED (0xC0000000 | 0x0257)       // ERRSRV, 3\n> +#define NT_STATUS_NO_CALLBACK_ACTIVE (0xC0000000 | 0x0258)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_LICENSE_QUOTA_EXCEEDED (0xC0000000 | 0x0259) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PWD_TOO_SHORT (0xC0000000 | 0x025a)  // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PWD_TOO_RECENT (0xC0000000 | 0x025b) // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PWD_HISTORY_CONFLICT (0xC0000000 | 0x025c)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_PLUGPLAY_NO_DEVICE (0xC0000000 | 0x025e)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_UNSUPPORTED_COMPRESSION (0xC0000000 | 0x025f)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_HW_PROFILE (0xC0000000 | 0x0260)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH (0xC0000000 | 0x0261)   // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND (0xC0000000 | 0x0262)       // ERRDOS, 182\n> +#define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND (0xC0000000 | 0x0263)    // ERRDOS, 127\n> +#define NT_STATUS_RESOURCE_NOT_OWNED (0xC0000000 | 0x0264)     // ERRDOS, 288\n> +#define NT_STATUS_TOO_MANY_LINKS (0xC0000000 | 0x0265) // ERRDOS, ErrTooManyLinks\n> +#define NT_STATUS_QUOTA_LIST_INCONSISTENT (0xC0000000 | 0x0266)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_FILE_IS_OFFLINE (0xC0000000 | 0x0267)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_VOLUME_DISMOUNTED (0xC0000000 | 0x026e)      // ERRDOS, 21\n> +#define NT_STATUS_NOT_A_REPARSE_POINT (0xC0000000 | 0x0275)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_DIRECTORY_IS_A_REPARSE_POINT (0xC0000000 | 0x0281)   // ERRDOS, 161\n> +#define NT_STATUS_ENCRYPTION_FAILED (0xC0000000 | 0x028a)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_DECRYPTION_FAILED (0xC0000000 | 0x028b)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_RANGE_NOT_FOUND (0xC0000000 | 0x028c)        // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_RECOVERY_POLICY (0xC0000000 | 0x028d)     // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NO_EFS (0xC0000000 | 0x028e) // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_WRONG_EFS (0xC0000000 | 0x028f)      // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_NO_USER_KEYS (0xC0000000 | 0x0290)   // ERRDOS, ERRnoaccess\n> +#define NT_STATUS_VOLUME_NOT_UPGRADED (0xC0000000 | 0x029c)    // ERRDOS, ERRbadfunc\n> +#define NT_STATUS_NETWORK_SESSION_EXPIRED  (0xC0000000 | 0x035c)       // ERRHRD, ERRgeneral\n> +/* scheduler */\n> +#define NT_STATUS_NO_SUCH_JOB (0xC0000000 | 0xEDE)     // ERRHRD, ERRgeneral\n> +#define NT_STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP (0xC0000000 | 0x5D0000)    // ERRHRD, ERRgeneral\n> +#define NT_STATUS_OS2_INVALID_LEVEL 0x007c0001 // ERRDOS, ERRunknownlevel\n>\n>  #endif                         /* _NTERR_H */\n> --\n> 2.53.0\n>","headers":{"Return-Path":"\n <linux-cifs+bounces-10650-incoming=patchwork.ozlabs.org@vger.kernel.org>","X-Original-To":["incoming@patchwork.ozlabs.org","linux-cifs@vger.kernel.org"],"Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (2048-bit key;\n unprotected) header.d=gmail.com header.i=@gmail.com header.a=rsa-sha256\n header.s=20251104 header.b=nz62N8WE;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org\n (client-ip=2600:3c15:e001:75::12fc:5321; helo=sin.lore.kernel.org;\n envelope-from=linux-cifs+bounces-10650-incoming=patchwork.ozlabs.org@vger.kernel.org;\n receiver=patchwork.ozlabs.org)","smtp.subspace.kernel.org;\n\tdkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com\n header.b=\"nz62N8WE\"","smtp.subspace.kernel.org;\n arc=pass smtp.client-ip=209.85.219.48","smtp.subspace.kernel.org;\n dmarc=pass (p=none dis=none) header.from=gmail.com","smtp.subspace.kernel.org;\n spf=pass smtp.mailfrom=gmail.com"],"Received":["from sin.lore.kernel.org (sin.lore.kernel.org\n [IPv6:2600:3c15:e001:75::12fc:5321])\n\t(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)\n\t key-exchange x25519)\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4fmxY60Fvxz1yCs\n\tfor <incoming@patchwork.ozlabs.org>; Fri, 03 Apr 2026 09:36:41 +1100 (AEDT)","from smtp.subspace.kernel.org (conduit.subspace.kernel.org\n [100.90.174.1])\n\tby sin.lore.kernel.org (Postfix) with ESMTP id C6E713017BB9\n\tfor <incoming@patchwork.ozlabs.org>; Thu,  2 Apr 2026 22:36:08 +0000 (UTC)","from localhost.localdomain (localhost.localdomain [127.0.0.1])\n\tby smtp.subspace.kernel.org (Postfix) with ESMTP id B02613271FD;\n\tThu,  2 Apr 2026 22:36:04 +0000 (UTC)","from mail-qv1-f48.google.com (mail-qv1-f48.google.com\n [209.85.219.48])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))\n\t(No client certificate requested)\n\tby smtp.subspace.kernel.org (Postfix) with ESMTPS id 95442370D66\n\tfor <linux-cifs@vger.kernel.org>; Thu,  2 Apr 2026 22:36:00 +0000 (UTC)","by mail-qv1-f48.google.com with SMTP id\n 6a1803df08f44-8a068db9989so24056646d6.0\n        for <linux-cifs@vger.kernel.org>;\n Thu, 02 Apr 2026 15:36:00 -0700 (PDT)"],"ARC-Seal":["i=2; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116;\n\tt=1775169364; cv=pass;\n b=SRRM56gJI7dp0YTdBeB9XysNKFXEs5dppGQ3qEoS/QuFdWnllF9E2+dQrBRFIcMymc+46MFtQMbCfE93ROjFnXutPaRm+YBuumsJxGGNqmCWJ4ay9DxSyqflaqi2f5oDD+YUkqpi+BzdCAjocSbAD+9sm4umOXduYffVkXXgoww=","i=1; a=rsa-sha256; t=1775169359; cv=none;\n        d=google.com; s=arc-20240605;\n        b=BWjKNkKOVdMPeH7kANdJTUTHN7wlPQc1r0N/Izr06C2dlgu65OjVS9fw435coLcpw3\n         HhkFpDL48Gs1U7XgksbM+sQ4t/6aAlwE4gYGRJ8QrB4KGf2MGlQ2SBzuw9SD0Jk+wVMF\n         JD0lxKQ4LwKur8YihKFCgeLQN4VRr730hhGqoS8ei/fOWw8gmYJWsrNgWwCb5cxHzqmX\n         0RHov3/yzmV5UvWAqoFpJQzYiTQoSGL0FrCetdIhLnfJSp2pgWUEAZUZIsxJOPXeHGSM\n         Dkw49EQl8U+MFyb9JUL7/H9ZzL5QZz2PpcWmOMijzJHA2OVpDnusMa8ZSr7hXuknw5IG\n         osuw=="],"ARC-Message-Signature":["i=2; a=rsa-sha256; d=subspace.kernel.org;\n\ts=arc-20240116; t=1775169364; c=relaxed/simple;\n\tbh=oYoWa97nnS/OaGY4g+jFuHurBUBoqdTd2SRw+fLuuRs=;\n\th=MIME-Version:References:In-Reply-To:From:Date:Message-ID:Subject:\n\t To:Cc:Content-Type;\n b=MwYns2sQs0436XJlWObUc3+/grqeJSoVcTsGGETTaZfUij4KKcEZ4eQ6rm4Icm7OHAO4D3I6x285kceivonPlq9EPSfLFnCyRBX7vtvfxFbortcyEjYhC9IDY8HQJKgpquHnaJ3CxRZP42kjtZRNKutJvQ/xwmPJLrC4jWaOHdI=","i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com;\n s=arc-20240605;\n        h=content-transfer-encoding:cc:to:subject:message-id:date:from\n         :in-reply-to:references:mime-version:dkim-signature;\n        bh=CYHmoqYvEadzgueFixZXoV4Pg0L45xDtbfzzMkT1y28=;\n        fh=gJbsNO2fx2LQAO5hc7bLWtWzO3UKKqG0fN8fkZfUgJw=;\n        b=Tsp6z435i2AwrvPbLG3u/Uw2AvfRkm4Y/2fg57Yr1o9tz+2VAFR+6LbxdE4kryHuj0\n         QMALwP86zcFCl8DU3X961lGVPTatNCi+sT1QgMgmGl0Dtlfft6mSH5gD6x/088lC4sRn\n         73LsTQ07+2dGDv/1IVTUgAqldDCys17Pj2ZwHezGCRKRhv7A4hJrVab7xIWrbebPCbt2\n         sgzGc++MlQ35RS3n53cp7is8ytMR5/HuXvk4pm5LqsoSwktnwhpL01QKmegtEDDyDbl6\n         cPR+gI4RA/d1DuZXJLk0XPsl9FHVN9nNW2oBEfu5dD/7JZuXQNp1UFngamjzUBAc2bjy\n         6jIA==;\n        darn=vger.kernel.org"],"ARC-Authentication-Results":["i=2; smtp.subspace.kernel.org;\n dmarc=pass (p=none dis=none) header.from=gmail.com;\n spf=pass smtp.mailfrom=gmail.com;\n dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com\n header.b=nz62N8WE; arc=pass smtp.client-ip=209.85.219.48","i=1; mx.google.com; arc=none"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n        d=gmail.com; s=20251104; t=1775169359; x=1775774159;\n darn=vger.kernel.org;\n        h=content-transfer-encoding:cc:to:subject:message-id:date:from\n         :in-reply-to:references:mime-version:from:to:cc:subject:date\n         :message-id:reply-to;\n        bh=CYHmoqYvEadzgueFixZXoV4Pg0L45xDtbfzzMkT1y28=;\n        b=nz62N8WEOgdE2XfvzenZSlEgjTLcQSdas78jx1apJkK6mOPJ2m4jb+a7poKxCK4fho\n         /Xe9tyXcAE9LJfmQFbr8TlRkNkUxlZGC93YUUgd/UwjuWz+QvMZUNoE4IqgBEW8G/z4V\n         91dSMi1qH+niMPdc9s6XfwT0w8y8kP92qxRmo+5YcOqKG7kp9jNeb/NIFBqNEoq8bF0T\n         xmzDZymcTbnBZ+0NfYI5g8W1qm67kHykGmhPUg6/ftIMBnW4fAif8Hf3hoGbIVom7yqY\n         WImbF46PqY6GRdJmdEy3ljAiX0f/Qu9SarZzPMNsJcjS7X5c3WK25CP9bNvDBHCdBIPy\n         ZYAA==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n        d=1e100.net; s=20251104; t=1775169359; x=1775774159;\n        h=content-transfer-encoding:cc:to:subject:message-id:date:from\n         :in-reply-to:references:mime-version:x-gm-gg:x-gm-message-state:from\n         :to:cc:subject:date:message-id:reply-to;\n        bh=CYHmoqYvEadzgueFixZXoV4Pg0L45xDtbfzzMkT1y28=;\n        b=D0xn4s5nyJiwKkpfG59kNbVXSHiwdrepiB2nRk/umR/NG5UacPBrU+M117qQkUXc/T\n         BwsmP9P2duFDBHJ8Dlv6eGoouXF+yYMhf4FYXqwwF6Bl0PhBsIs7m433wK4cdRbigskF\n         sJoqX0ART4OoQNIXB728KIkF+a3mheZS+qQydq/ieAkYDZuTeeQXdJjbUA5xb78PuHF7\n         TJeSdPcrTD6i+mVG9Uy9qGNisvVRRpVtr/PNZqumADK7GApc2cA6zMGNOPOYLzoKm2iu\n         /UwRc4EJQiNN+O6vMhYKSQste5tJV14hhP/Xk8bd0qjBU/63hvKUryQqcLnlKm3kT0NM\n         VOxA==","X-Forwarded-Encrypted":"i=1;\n AJvYcCUhr9oj0ev9PjTBJD9AGmkq5dV3rQzxu1XSN53QylWf6nTwKDii+Cr35hrZBLTJkrVAI4VRI3jVNkPQ@vger.kernel.org","X-Gm-Message-State":"AOJu0YyxySnxhC+a8SIQoJRi0dtKEso7aX8hlglYmeHOtALYtVnn5IDi\n\to8cYNSmV4D7+ML183ym+sDLE5ASj3TwnD83F4+EmKt+Ac4ffIIh6UunwCfKryhZFQBt2Awpff6v\n\tzxDADyA1/FZSjQYQcA1slHJDul51Np3PAHaDL","X-Gm-Gg":"AeBDietOjmxNTIyoEgQ6ejyVTeoJ/ourP0J3rPodBv25Z9P26moNyWb1XqZTFsm07E4\n\tLzpMbc+fo7smz7z8N1N0kdRqaC9yMSjr0FWJGOBaWzaKPQ5td0NUxUom4t/4LzIpsIfJkK+yckM\n\tuLMrZAOMsAURo88i/UsgusUctLLRF2ZLZSnVsy9aSTjCvkxPdTTXlFI06dSjAdzYFN1d7yILzox\n\t52iFxRtfY90xdpYa8p7VwywhZJx28mKbbj87YGeM6PkMbK69Teevj5dE/l1cuPGwFeUtB2MtIit\n\tHF+xjCvwUH8SoHumSCn11u6UZy6d/wOOZmYgGUUuWTkNR1EinqHE/VkIBMchftPSwQshwsMMnSx\n\tFhDyJwe9k0qug7APnfNVKr0YA7BvtXvM+V+hhwkm4on77iNTWkaHYbwy53RUJYw==","X-Received":"by 2002:a05:6214:d88:b0:89c:ceaa:872c with SMTP id\n 6a1803df08f44-8a5eb81bfa4mr62184806d6.13.1775169358953; Thu, 02 Apr 2026\n 15:35:58 -0700 (PDT)","Precedence":"bulk","X-Mailing-List":"linux-cifs@vger.kernel.org","List-Id":"<linux-cifs.vger.kernel.org>","List-Subscribe":"<mailto:linux-cifs+subscribe@vger.kernel.org>","List-Unsubscribe":"<mailto:linux-cifs+unsubscribe@vger.kernel.org>","MIME-Version":"1.0","References":"<20260402141839.461257-1-huiwen.he@linux.dev>\n <20260402141839.461257-2-huiwen.he@linux.dev>","In-Reply-To":"<20260402141839.461257-2-huiwen.he@linux.dev>","From":"Steve French <smfrench@gmail.com>","Date":"Thu, 2 Apr 2026 17:35:46 -0500","X-Gm-Features":"AQROBzAd07ZhUC8sTTNIQAJzK1K4njL8kixZvnmsA2qJCZ8J2ZrI4unrc_vokVk","Message-ID":"\n <CAH2r5mtWhJBg-AN-WFzHq6yYufKnGurScCDdBXED8Fjo5aCMOw@mail.gmail.com>","Subject":"Re: [PATCH v3 01/13] smb/client: annotate nterr.h with DOS error\n codes","To":"huiwen.he@linux.dev","Cc":"linkinjeon@kernel.org, dhowells@redhat.com, chenxiaosong@kylinos.cn,\n\tchenxiaosong@chenxiaosong.com, tangyouling@kylinos.cn,\n\tlinux-cifs@vger.kernel.org, Huiwen He <hehuiwen@kylinos.cn>","Content-Type":"text/plain; charset=\"UTF-8\"","Content-Transfer-Encoding":"quoted-printable"}}]