brintos

brintos / linux-shallow public Read only

0
0
Text · 29.4 KiB · edd4741 Raw
552 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3   Unix SMB/Netbios implementation.4   Version 1.9.5   NT error code constants6   Copyright (C) Andrew Tridgell              1992-20007   Copyright (C) John H Terpstra              1996-20008   Copyright (C) Luke Kenneth Casson Leighton 1996-20009   Copyright (C) Paul Ashton                  1998-200010 11*/12 13 14 15#ifndef _NTERR_H16#define _NTERR_H17 18struct nt_err_code_struct {19	char *nt_errstr;20	__u32 nt_errcode;21};22 23extern const struct nt_err_code_struct nt_errs[];24 25/* Win32 Status codes. */26#define NT_STATUS_MORE_ENTRIES         0x010527#define NT_ERROR_INVALID_PARAMETER     0x005728#define NT_ERROR_INSUFFICIENT_BUFFER   0x007a29#define NT_STATUS_1804                 0x070c30#define NT_STATUS_NOTIFY_ENUM_DIR      0x010c31 32/*33 * Win32 Error codes extracted using a loop in smbclient then printing a netmon34 * sniff to a file.35 */36 37#define NT_STATUS_OK                   0x000038#define NT_STATUS_SOME_UNMAPPED        0x010739#define NT_STATUS_BUFFER_OVERFLOW  0x8000000540#define NT_STATUS_NO_MORE_ENTRIES  0x8000001a41#define NT_STATUS_MEDIA_CHANGED    0x8000001c42#define NT_STATUS_END_OF_MEDIA     0x8000001e43#define NT_STATUS_MEDIA_CHECK      0x8000002044#define NT_STATUS_NO_DATA_DETECTED 0x8000001c45#define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d46#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x8000028847#define NT_STATUS_DEVICE_DOOR_OPEN 0x8000028848#define NT_STATUS_UNSUCCESSFUL 0xC0000000 | 0x000149#define NT_STATUS_NOT_IMPLEMENTED 0xC0000000 | 0x000250#define NT_STATUS_INVALID_INFO_CLASS 0xC0000000 | 0x000351#define NT_STATUS_INFO_LENGTH_MISMATCH 0xC0000000 | 0x000452#define NT_STATUS_ACCESS_VIOLATION 0xC0000000 | 0x000553#define NT_STATUS_IN_PAGE_ERROR 0xC0000000 | 0x000654#define NT_STATUS_PAGEFILE_QUOTA 0xC0000000 | 0x000755#define NT_STATUS_INVALID_HANDLE 0xC0000000 | 0x000856#define NT_STATUS_BAD_INITIAL_STACK 0xC0000000 | 0x000957#define NT_STATUS_BAD_INITIAL_PC 0xC0000000 | 0x000a58#define NT_STATUS_INVALID_CID 0xC0000000 | 0x000b59#define NT_STATUS_TIMER_NOT_CANCELED 0xC0000000 | 0x000c60#define NT_STATUS_INVALID_PARAMETER 0xC0000000 | 0x000d61#define NT_STATUS_NO_SUCH_DEVICE 0xC0000000 | 0x000e62#define NT_STATUS_NO_SUCH_FILE 0xC0000000 | 0x000f63#define NT_STATUS_INVALID_DEVICE_REQUEST 0xC0000000 | 0x001064#define NT_STATUS_END_OF_FILE 0xC0000000 | 0x001165#define NT_STATUS_WRONG_VOLUME 0xC0000000 | 0x001266#define NT_STATUS_NO_MEDIA_IN_DEVICE 0xC0000000 | 0x001367#define NT_STATUS_UNRECOGNIZED_MEDIA 0xC0000000 | 0x001468#define NT_STATUS_NONEXISTENT_SECTOR 0xC0000000 | 0x001569#define NT_STATUS_MORE_PROCESSING_REQUIRED 0xC0000000 | 0x001670#define NT_STATUS_NO_MEMORY 0xC0000000 | 0x001771#define NT_STATUS_CONFLICTING_ADDRESSES 0xC0000000 | 0x001872#define NT_STATUS_NOT_MAPPED_VIEW 0xC0000000 | 0x001973#define NT_STATUS_UNABLE_TO_FREE_VM 0x80000000 | 0x001a74#define NT_STATUS_UNABLE_TO_DELETE_SECTION 0xC0000000 | 0x001b75#define NT_STATUS_INVALID_SYSTEM_SERVICE 0xC0000000 | 0x001c76#define NT_STATUS_ILLEGAL_INSTRUCTION 0xC0000000 | 0x001d77#define NT_STATUS_INVALID_LOCK_SEQUENCE 0xC0000000 | 0x001e78#define NT_STATUS_INVALID_VIEW_SIZE 0xC0000000 | 0x001f79#define NT_STATUS_INVALID_FILE_FOR_SECTION 0xC0000000 | 0x002080#define NT_STATUS_ALREADY_COMMITTED 0xC0000000 | 0x002181#define NT_STATUS_ACCESS_DENIED 0xC0000000 | 0x002282#define NT_STATUS_BUFFER_TOO_SMALL 0xC0000000 | 0x002383#define NT_STATUS_OBJECT_TYPE_MISMATCH 0xC0000000 | 0x002484#define NT_STATUS_NONCONTINUABLE_EXCEPTION 0xC0000000 | 0x002585#define NT_STATUS_INVALID_DISPOSITION 0xC0000000 | 0x002686#define NT_STATUS_UNWIND 0xC0000000 | 0x002787#define NT_STATUS_BAD_STACK 0xC0000000 | 0x002888#define NT_STATUS_INVALID_UNWIND_TARGET 0xC0000000 | 0x002989#define NT_STATUS_NOT_LOCKED 0xC0000000 | 0x002a90#define NT_STATUS_PARITY_ERROR 0xC0000000 | 0x002b91#define NT_STATUS_UNABLE_TO_DECOMMIT_VM 0xC0000000 | 0x002c92#define NT_STATUS_NOT_COMMITTED 0xC0000000 | 0x002d93#define NT_STATUS_INVALID_PORT_ATTRIBUTES 0xC0000000 | 0x002e94#define NT_STATUS_PORT_MESSAGE_TOO_LONG 0xC0000000 | 0x002f95#define NT_STATUS_INVALID_PARAMETER_MIX 0xC0000000 | 0x003096#define NT_STATUS_INVALID_QUOTA_LOWER 0xC0000000 | 0x003197#define NT_STATUS_DISK_CORRUPT_ERROR 0xC0000000 | 0x003298#define NT_STATUS_OBJECT_NAME_INVALID 0xC0000000 | 0x003399#define NT_STATUS_OBJECT_NAME_NOT_FOUND 0xC0000000 | 0x0034100#define NT_STATUS_OBJECT_NAME_COLLISION 0xC0000000 | 0x0035101#define NT_STATUS_HANDLE_NOT_WAITABLE 0xC0000000 | 0x0036102#define NT_STATUS_PORT_DISCONNECTED 0xC0000000 | 0x0037103#define NT_STATUS_DEVICE_ALREADY_ATTACHED 0xC0000000 | 0x0038104#define NT_STATUS_OBJECT_PATH_INVALID 0xC0000000 | 0x0039105#define NT_STATUS_OBJECT_PATH_NOT_FOUND 0xC0000000 | 0x003a106#define NT_STATUS_OBJECT_PATH_SYNTAX_BAD 0xC0000000 | 0x003b107#define NT_STATUS_DATA_OVERRUN 0xC0000000 | 0x003c108#define NT_STATUS_DATA_LATE_ERROR 0xC0000000 | 0x003d109#define NT_STATUS_DATA_ERROR 0xC0000000 | 0x003e110#define NT_STATUS_CRC_ERROR 0xC0000000 | 0x003f111#define NT_STATUS_SECTION_TOO_BIG 0xC0000000 | 0x0040112#define NT_STATUS_PORT_CONNECTION_REFUSED 0xC0000000 | 0x0041113#define NT_STATUS_INVALID_PORT_HANDLE 0xC0000000 | 0x0042114#define NT_STATUS_SHARING_VIOLATION 0xC0000000 | 0x0043115#define NT_STATUS_QUOTA_EXCEEDED 0xC0000000 | 0x0044116#define NT_STATUS_INVALID_PAGE_PROTECTION 0xC0000000 | 0x0045117#define NT_STATUS_MUTANT_NOT_OWNED 0xC0000000 | 0x0046118#define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED 0xC0000000 | 0x0047119#define NT_STATUS_PORT_ALREADY_SET 0xC0000000 | 0x0048120#define NT_STATUS_SECTION_NOT_IMAGE 0xC0000000 | 0x0049121#define NT_STATUS_SUSPEND_COUNT_EXCEEDED 0xC0000000 | 0x004a122#define NT_STATUS_THREAD_IS_TERMINATING 0xC0000000 | 0x004b123#define NT_STATUS_BAD_WORKING_SET_LIMIT 0xC0000000 | 0x004c124#define NT_STATUS_INCOMPATIBLE_FILE_MAP 0xC0000000 | 0x004d125#define NT_STATUS_SECTION_PROTECTION 0xC0000000 | 0x004e126#define NT_STATUS_EAS_NOT_SUPPORTED 0xC0000000 | 0x004f127#define NT_STATUS_EA_TOO_LARGE 0xC0000000 | 0x0050128#define NT_STATUS_NONEXISTENT_EA_ENTRY 0xC0000000 | 0x0051129#define NT_STATUS_NO_EAS_ON_FILE 0xC0000000 | 0x0052130#define NT_STATUS_EA_CORRUPT_ERROR 0xC0000000 | 0x0053131#define NT_STATUS_FILE_LOCK_CONFLICT 0xC0000000 | 0x0054132#define NT_STATUS_LOCK_NOT_GRANTED 0xC0000000 | 0x0055133#define NT_STATUS_DELETE_PENDING 0xC0000000 | 0x0056134#define NT_STATUS_CTL_FILE_NOT_SUPPORTED 0xC0000000 | 0x0057135#define NT_STATUS_UNKNOWN_REVISION 0xC0000000 | 0x0058136#define NT_STATUS_REVISION_MISMATCH 0xC0000000 | 0x0059137#define NT_STATUS_INVALID_OWNER 0xC0000000 | 0x005a138#define NT_STATUS_INVALID_PRIMARY_GROUP 0xC0000000 | 0x005b139#define NT_STATUS_NO_IMPERSONATION_TOKEN 0xC0000000 | 0x005c140#define NT_STATUS_CANT_DISABLE_MANDATORY 0xC0000000 | 0x005d141#define NT_STATUS_NO_LOGON_SERVERS 0xC0000000 | 0x005e142#define NT_STATUS_NO_SUCH_LOGON_SESSION 0xC0000000 | 0x005f143#define NT_STATUS_NO_SUCH_PRIVILEGE 0xC0000000 | 0x0060144#define NT_STATUS_PRIVILEGE_NOT_HELD 0xC0000000 | 0x0061145#define NT_STATUS_INVALID_ACCOUNT_NAME 0xC0000000 | 0x0062146#define NT_STATUS_USER_EXISTS 0xC0000000 | 0x0063147#define NT_STATUS_NO_SUCH_USER 0xC0000000 | 0x0064148#define NT_STATUS_GROUP_EXISTS 0xC0000000 | 0x0065149#define NT_STATUS_NO_SUCH_GROUP 0xC0000000 | 0x0066150#define NT_STATUS_MEMBER_IN_GROUP 0xC0000000 | 0x0067151#define NT_STATUS_MEMBER_NOT_IN_GROUP 0xC0000000 | 0x0068152#define NT_STATUS_LAST_ADMIN 0xC0000000 | 0x0069153#define NT_STATUS_WRONG_PASSWORD 0xC0000000 | 0x006a154#define NT_STATUS_ILL_FORMED_PASSWORD 0xC0000000 | 0x006b155#define NT_STATUS_PASSWORD_RESTRICTION 0xC0000000 | 0x006c156#define NT_STATUS_LOGON_FAILURE 0xC0000000 | 0x006d157#define NT_STATUS_ACCOUNT_RESTRICTION 0xC0000000 | 0x006e158#define NT_STATUS_INVALID_LOGON_HOURS 0xC0000000 | 0x006f159#define NT_STATUS_INVALID_WORKSTATION 0xC0000000 | 0x0070160#define NT_STATUS_PASSWORD_EXPIRED 0xC0000000 | 0x0071161#define NT_STATUS_ACCOUNT_DISABLED 0xC0000000 | 0x0072162#define NT_STATUS_NONE_MAPPED 0xC0000000 | 0x0073163#define NT_STATUS_TOO_MANY_LUIDS_REQUESTED 0xC0000000 | 0x0074164#define NT_STATUS_LUIDS_EXHAUSTED 0xC0000000 | 0x0075165#define NT_STATUS_INVALID_SUB_AUTHORITY 0xC0000000 | 0x0076166#define NT_STATUS_INVALID_ACL 0xC0000000 | 0x0077167#define NT_STATUS_INVALID_SID 0xC0000000 | 0x0078168#define NT_STATUS_INVALID_SECURITY_DESCR 0xC0000000 | 0x0079169#define NT_STATUS_PROCEDURE_NOT_FOUND 0xC0000000 | 0x007a170#define NT_STATUS_INVALID_IMAGE_FORMAT 0xC0000000 | 0x007b171#define NT_STATUS_NO_TOKEN 0xC0000000 | 0x007c172#define NT_STATUS_BAD_INHERITANCE_ACL 0xC0000000 | 0x007d173#define NT_STATUS_RANGE_NOT_LOCKED 0xC0000000 | 0x007e174#define NT_STATUS_DISK_FULL 0xC0000000 | 0x007f175#define NT_STATUS_SERVER_DISABLED 0xC0000000 | 0x0080176#define NT_STATUS_SERVER_NOT_DISABLED 0xC0000000 | 0x0081177#define NT_STATUS_TOO_MANY_GUIDS_REQUESTED 0xC0000000 | 0x0082178#define NT_STATUS_GUIDS_EXHAUSTED 0xC0000000 | 0x0083179#define NT_STATUS_INVALID_ID_AUTHORITY 0xC0000000 | 0x0084180#define NT_STATUS_AGENTS_EXHAUSTED 0xC0000000 | 0x0085181#define NT_STATUS_INVALID_VOLUME_LABEL 0xC0000000 | 0x0086182#define NT_STATUS_SECTION_NOT_EXTENDED 0xC0000000 | 0x0087183#define NT_STATUS_NOT_MAPPED_DATA 0xC0000000 | 0x0088184#define NT_STATUS_RESOURCE_DATA_NOT_FOUND 0xC0000000 | 0x0089185#define NT_STATUS_RESOURCE_TYPE_NOT_FOUND 0xC0000000 | 0x008a186#define NT_STATUS_RESOURCE_NAME_NOT_FOUND 0xC0000000 | 0x008b187#define NT_STATUS_ARRAY_BOUNDS_EXCEEDED 0xC0000000 | 0x008c188#define NT_STATUS_FLOAT_DENORMAL_OPERAND 0xC0000000 | 0x008d189#define NT_STATUS_FLOAT_DIVIDE_BY_ZERO 0xC0000000 | 0x008e190#define NT_STATUS_FLOAT_INEXACT_RESULT 0xC0000000 | 0x008f191#define NT_STATUS_FLOAT_INVALID_OPERATION 0xC0000000 | 0x0090192#define NT_STATUS_FLOAT_OVERFLOW 0xC0000000 | 0x0091193#define NT_STATUS_FLOAT_STACK_CHECK 0xC0000000 | 0x0092194#define NT_STATUS_FLOAT_UNDERFLOW 0xC0000000 | 0x0093195#define NT_STATUS_INTEGER_DIVIDE_BY_ZERO 0xC0000000 | 0x0094196#define NT_STATUS_INTEGER_OVERFLOW 0xC0000000 | 0x0095197#define NT_STATUS_PRIVILEGED_INSTRUCTION 0xC0000000 | 0x0096198#define NT_STATUS_TOO_MANY_PAGING_FILES 0xC0000000 | 0x0097199#define NT_STATUS_FILE_INVALID 0xC0000000 | 0x0098200#define NT_STATUS_ALLOTTED_SPACE_EXCEEDED 0xC0000000 | 0x0099201#define NT_STATUS_INSUFFICIENT_RESOURCES 0xC0000000 | 0x009a202#define NT_STATUS_DFS_EXIT_PATH_FOUND 0xC0000000 | 0x009b203#define NT_STATUS_DEVICE_DATA_ERROR 0xC0000000 | 0x009c204#define NT_STATUS_DEVICE_NOT_CONNECTED 0xC0000000 | 0x009d205#define NT_STATUS_DEVICE_POWER_FAILURE 0xC0000000 | 0x009e206#define NT_STATUS_FREE_VM_NOT_AT_BASE 0xC0000000 | 0x009f207#define NT_STATUS_MEMORY_NOT_ALLOCATED 0xC0000000 | 0x00a0208#define NT_STATUS_WORKING_SET_QUOTA 0xC0000000 | 0x00a1209#define NT_STATUS_MEDIA_WRITE_PROTECTED 0xC0000000 | 0x00a2210#define NT_STATUS_DEVICE_NOT_READY 0xC0000000 | 0x00a3211#define NT_STATUS_INVALID_GROUP_ATTRIBUTES 0xC0000000 | 0x00a4212#define NT_STATUS_BAD_IMPERSONATION_LEVEL 0xC0000000 | 0x00a5213#define NT_STATUS_CANT_OPEN_ANONYMOUS 0xC0000000 | 0x00a6214#define NT_STATUS_BAD_VALIDATION_CLASS 0xC0000000 | 0x00a7215#define NT_STATUS_BAD_TOKEN_TYPE 0xC0000000 | 0x00a8216#define NT_STATUS_BAD_MASTER_BOOT_RECORD 0xC0000000 | 0x00a9217#define NT_STATUS_INSTRUCTION_MISALIGNMENT 0xC0000000 | 0x00aa218#define NT_STATUS_INSTANCE_NOT_AVAILABLE 0xC0000000 | 0x00ab219#define NT_STATUS_PIPE_NOT_AVAILABLE 0xC0000000 | 0x00ac220#define NT_STATUS_INVALID_PIPE_STATE 0xC0000000 | 0x00ad221#define NT_STATUS_PIPE_BUSY 0xC0000000 | 0x00ae222#define NT_STATUS_ILLEGAL_FUNCTION 0xC0000000 | 0x00af223#define NT_STATUS_PIPE_DISCONNECTED 0xC0000000 | 0x00b0224#define NT_STATUS_PIPE_CLOSING 0xC0000000 | 0x00b1225#define NT_STATUS_PIPE_CONNECTED 0xC0000000 | 0x00b2226#define NT_STATUS_PIPE_LISTENING 0xC0000000 | 0x00b3227#define NT_STATUS_INVALID_READ_MODE 0xC0000000 | 0x00b4228#define NT_STATUS_IO_TIMEOUT 0xC0000000 | 0x00b5229#define NT_STATUS_FILE_FORCED_CLOSED 0xC0000000 | 0x00b6230#define NT_STATUS_PROFILING_NOT_STARTED 0xC0000000 | 0x00b7231#define NT_STATUS_PROFILING_NOT_STOPPED 0xC0000000 | 0x00b8232#define NT_STATUS_COULD_NOT_INTERPRET 0xC0000000 | 0x00b9233#define NT_STATUS_FILE_IS_A_DIRECTORY 0xC0000000 | 0x00ba234#define NT_STATUS_NOT_SUPPORTED 0xC0000000 | 0x00bb235#define NT_STATUS_REMOTE_NOT_LISTENING 0xC0000000 | 0x00bc236#define NT_STATUS_DUPLICATE_NAME 0xC0000000 | 0x00bd237#define NT_STATUS_BAD_NETWORK_PATH 0xC0000000 | 0x00be238#define NT_STATUS_NETWORK_BUSY 0xC0000000 | 0x00bf239#define NT_STATUS_DEVICE_DOES_NOT_EXIST 0xC0000000 | 0x00c0240#define NT_STATUS_TOO_MANY_COMMANDS 0xC0000000 | 0x00c1241#define NT_STATUS_ADAPTER_HARDWARE_ERROR 0xC0000000 | 0x00c2242#define NT_STATUS_INVALID_NETWORK_RESPONSE 0xC0000000 | 0x00c3243#define NT_STATUS_UNEXPECTED_NETWORK_ERROR 0xC0000000 | 0x00c4244#define NT_STATUS_BAD_REMOTE_ADAPTER 0xC0000000 | 0x00c5245#define NT_STATUS_PRINT_QUEUE_FULL 0xC0000000 | 0x00c6246#define NT_STATUS_NO_SPOOL_SPACE 0xC0000000 | 0x00c7247#define NT_STATUS_PRINT_CANCELLED 0xC0000000 | 0x00c8248#define NT_STATUS_NETWORK_NAME_DELETED 0xC0000000 | 0x00c9249#define NT_STATUS_NETWORK_ACCESS_DENIED 0xC0000000 | 0x00ca250#define NT_STATUS_BAD_DEVICE_TYPE 0xC0000000 | 0x00cb251#define NT_STATUS_BAD_NETWORK_NAME 0xC0000000 | 0x00cc252#define NT_STATUS_TOO_MANY_NAMES 0xC0000000 | 0x00cd253#define NT_STATUS_TOO_MANY_SESSIONS 0xC0000000 | 0x00ce254#define NT_STATUS_SHARING_PAUSED 0xC0000000 | 0x00cf255#define NT_STATUS_REQUEST_NOT_ACCEPTED 0xC0000000 | 0x00d0256#define NT_STATUS_REDIRECTOR_PAUSED 0xC0000000 | 0x00d1257#define NT_STATUS_NET_WRITE_FAULT 0xC0000000 | 0x00d2258#define NT_STATUS_PROFILING_AT_LIMIT 0xC0000000 | 0x00d3259#define NT_STATUS_NOT_SAME_DEVICE 0xC0000000 | 0x00d4260#define NT_STATUS_FILE_RENAMED 0xC0000000 | 0x00d5261#define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED 0xC0000000 | 0x00d6262#define NT_STATUS_NO_SECURITY_ON_OBJECT 0xC0000000 | 0x00d7263#define NT_STATUS_CANT_WAIT 0xC0000000 | 0x00d8264#define NT_STATUS_PIPE_EMPTY 0xC0000000 | 0x00d9265#define NT_STATUS_CANT_ACCESS_DOMAIN_INFO 0xC0000000 | 0x00da266#define NT_STATUS_CANT_TERMINATE_SELF 0xC0000000 | 0x00db267#define NT_STATUS_INVALID_SERVER_STATE 0xC0000000 | 0x00dc268#define NT_STATUS_INVALID_DOMAIN_STATE 0xC0000000 | 0x00dd269#define NT_STATUS_INVALID_DOMAIN_ROLE 0xC0000000 | 0x00de270#define NT_STATUS_NO_SUCH_DOMAIN 0xC0000000 | 0x00df271#define NT_STATUS_DOMAIN_EXISTS 0xC0000000 | 0x00e0272#define NT_STATUS_DOMAIN_LIMIT_EXCEEDED 0xC0000000 | 0x00e1273#define NT_STATUS_OPLOCK_NOT_GRANTED 0xC0000000 | 0x00e2274#define NT_STATUS_INVALID_OPLOCK_PROTOCOL 0xC0000000 | 0x00e3275#define NT_STATUS_INTERNAL_DB_CORRUPTION 0xC0000000 | 0x00e4276#define NT_STATUS_INTERNAL_ERROR 0xC0000000 | 0x00e5277#define NT_STATUS_GENERIC_NOT_MAPPED 0xC0000000 | 0x00e6278#define NT_STATUS_BAD_DESCRIPTOR_FORMAT 0xC0000000 | 0x00e7279#define NT_STATUS_INVALID_USER_BUFFER 0xC0000000 | 0x00e8280#define NT_STATUS_UNEXPECTED_IO_ERROR 0xC0000000 | 0x00e9281#define NT_STATUS_UNEXPECTED_MM_CREATE_ERR 0xC0000000 | 0x00ea282#define NT_STATUS_UNEXPECTED_MM_MAP_ERROR 0xC0000000 | 0x00eb283#define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR 0xC0000000 | 0x00ec284#define NT_STATUS_NOT_LOGON_PROCESS 0xC0000000 | 0x00ed285#define NT_STATUS_LOGON_SESSION_EXISTS 0xC0000000 | 0x00ee286#define NT_STATUS_INVALID_PARAMETER_1 0xC0000000 | 0x00ef287#define NT_STATUS_INVALID_PARAMETER_2 0xC0000000 | 0x00f0288#define NT_STATUS_INVALID_PARAMETER_3 0xC0000000 | 0x00f1289#define NT_STATUS_INVALID_PARAMETER_4 0xC0000000 | 0x00f2290#define NT_STATUS_INVALID_PARAMETER_5 0xC0000000 | 0x00f3291#define NT_STATUS_INVALID_PARAMETER_6 0xC0000000 | 0x00f4292#define NT_STATUS_INVALID_PARAMETER_7 0xC0000000 | 0x00f5293#define NT_STATUS_INVALID_PARAMETER_8 0xC0000000 | 0x00f6294#define NT_STATUS_INVALID_PARAMETER_9 0xC0000000 | 0x00f7295#define NT_STATUS_INVALID_PARAMETER_10 0xC0000000 | 0x00f8296#define NT_STATUS_INVALID_PARAMETER_11 0xC0000000 | 0x00f9297#define NT_STATUS_INVALID_PARAMETER_12 0xC0000000 | 0x00fa298#define NT_STATUS_REDIRECTOR_NOT_STARTED 0xC0000000 | 0x00fb299#define NT_STATUS_REDIRECTOR_STARTED 0xC0000000 | 0x00fc300#define NT_STATUS_STACK_OVERFLOW 0xC0000000 | 0x00fd301#define NT_STATUS_NO_SUCH_PACKAGE 0xC0000000 | 0x00fe302#define NT_STATUS_BAD_FUNCTION_TABLE 0xC0000000 | 0x00ff303#define NT_STATUS_DIRECTORY_NOT_EMPTY 0xC0000000 | 0x0101304#define NT_STATUS_FILE_CORRUPT_ERROR 0xC0000000 | 0x0102305#define NT_STATUS_NOT_A_DIRECTORY 0xC0000000 | 0x0103306#define NT_STATUS_BAD_LOGON_SESSION_STATE 0xC0000000 | 0x0104307#define NT_STATUS_LOGON_SESSION_COLLISION 0xC0000000 | 0x0105308#define NT_STATUS_NAME_TOO_LONG 0xC0000000 | 0x0106309#define NT_STATUS_FILES_OPEN 0xC0000000 | 0x0107310#define NT_STATUS_CONNECTION_IN_USE 0xC0000000 | 0x0108311#define NT_STATUS_MESSAGE_NOT_FOUND 0xC0000000 | 0x0109312#define NT_STATUS_PROCESS_IS_TERMINATING 0xC0000000 | 0x010a313#define NT_STATUS_INVALID_LOGON_TYPE 0xC0000000 | 0x010b314#define NT_STATUS_NO_GUID_TRANSLATION 0xC0000000 | 0x010c315#define NT_STATUS_CANNOT_IMPERSONATE 0xC0000000 | 0x010d316#define NT_STATUS_IMAGE_ALREADY_LOADED 0xC0000000 | 0x010e317#define NT_STATUS_ABIOS_NOT_PRESENT 0xC0000000 | 0x010f318#define NT_STATUS_ABIOS_LID_NOT_EXIST 0xC0000000 | 0x0110319#define NT_STATUS_ABIOS_LID_ALREADY_OWNED 0xC0000000 | 0x0111320#define NT_STATUS_ABIOS_NOT_LID_OWNER 0xC0000000 | 0x0112321#define NT_STATUS_ABIOS_INVALID_COMMAND 0xC0000000 | 0x0113322#define NT_STATUS_ABIOS_INVALID_LID 0xC0000000 | 0x0114323#define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE 0xC0000000 | 0x0115324#define NT_STATUS_ABIOS_INVALID_SELECTOR 0xC0000000 | 0x0116325#define NT_STATUS_NO_LDT 0xC0000000 | 0x0117326#define NT_STATUS_INVALID_LDT_SIZE 0xC0000000 | 0x0118327#define NT_STATUS_INVALID_LDT_OFFSET 0xC0000000 | 0x0119328#define NT_STATUS_INVALID_LDT_DESCRIPTOR 0xC0000000 | 0x011a329#define NT_STATUS_INVALID_IMAGE_NE_FORMAT 0xC0000000 | 0x011b330#define NT_STATUS_RXACT_INVALID_STATE 0xC0000000 | 0x011c331#define NT_STATUS_RXACT_COMMIT_FAILURE 0xC0000000 | 0x011d332#define NT_STATUS_MAPPED_FILE_SIZE_ZERO 0xC0000000 | 0x011e333#define NT_STATUS_TOO_MANY_OPENED_FILES 0xC0000000 | 0x011f334#define NT_STATUS_CANCELLED 0xC0000000 | 0x0120335#define NT_STATUS_CANNOT_DELETE 0xC0000000 | 0x0121336#define NT_STATUS_INVALID_COMPUTER_NAME 0xC0000000 | 0x0122337#define NT_STATUS_FILE_DELETED 0xC0000000 | 0x0123338#define NT_STATUS_SPECIAL_ACCOUNT 0xC0000000 | 0x0124339#define NT_STATUS_SPECIAL_GROUP 0xC0000000 | 0x0125340#define NT_STATUS_SPECIAL_USER 0xC0000000 | 0x0126341#define NT_STATUS_MEMBERS_PRIMARY_GROUP 0xC0000000 | 0x0127342#define NT_STATUS_FILE_CLOSED 0xC0000000 | 0x0128343#define NT_STATUS_TOO_MANY_THREADS 0xC0000000 | 0x0129344#define NT_STATUS_THREAD_NOT_IN_PROCESS 0xC0000000 | 0x012a345#define NT_STATUS_TOKEN_ALREADY_IN_USE 0xC0000000 | 0x012b346#define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED 0xC0000000 | 0x012c347#define NT_STATUS_COMMITMENT_LIMIT 0xC0000000 | 0x012d348#define NT_STATUS_INVALID_IMAGE_LE_FORMAT 0xC0000000 | 0x012e349#define NT_STATUS_INVALID_IMAGE_NOT_MZ 0xC0000000 | 0x012f350#define NT_STATUS_INVALID_IMAGE_PROTECT 0xC0000000 | 0x0130351#define NT_STATUS_INVALID_IMAGE_WIN_16 0xC0000000 | 0x0131352#define NT_STATUS_LOGON_SERVER_CONFLICT 0xC0000000 | 0x0132353#define NT_STATUS_TIME_DIFFERENCE_AT_DC 0xC0000000 | 0x0133354#define NT_STATUS_SYNCHRONIZATION_REQUIRED 0xC0000000 | 0x0134355#define NT_STATUS_DLL_NOT_FOUND 0xC0000000 | 0x0135356#define NT_STATUS_OPEN_FAILED 0xC0000000 | 0x0136357#define NT_STATUS_IO_PRIVILEGE_FAILED 0xC0000000 | 0x0137358#define NT_STATUS_ORDINAL_NOT_FOUND 0xC0000000 | 0x0138359#define NT_STATUS_ENTRYPOINT_NOT_FOUND 0xC0000000 | 0x0139360#define NT_STATUS_CONTROL_C_EXIT 0xC0000000 | 0x013a361#define NT_STATUS_LOCAL_DISCONNECT 0xC0000000 | 0x013b362#define NT_STATUS_REMOTE_DISCONNECT 0xC0000000 | 0x013c363#define NT_STATUS_REMOTE_RESOURCES 0xC0000000 | 0x013d364#define NT_STATUS_LINK_FAILED 0xC0000000 | 0x013e365#define NT_STATUS_LINK_TIMEOUT 0xC0000000 | 0x013f366#define NT_STATUS_INVALID_CONNECTION 0xC0000000 | 0x0140367#define NT_STATUS_INVALID_ADDRESS 0xC0000000 | 0x0141368#define NT_STATUS_DLL_INIT_FAILED 0xC0000000 | 0x0142369#define NT_STATUS_MISSING_SYSTEMFILE 0xC0000000 | 0x0143370#define NT_STATUS_UNHANDLED_EXCEPTION 0xC0000000 | 0x0144371#define NT_STATUS_APP_INIT_FAILURE 0xC0000000 | 0x0145372#define NT_STATUS_PAGEFILE_CREATE_FAILED 0xC0000000 | 0x0146373#define NT_STATUS_NO_PAGEFILE 0xC0000000 | 0x0147374#define NT_STATUS_INVALID_LEVEL 0xC0000000 | 0x0148375#define NT_STATUS_WRONG_PASSWORD_CORE 0xC0000000 | 0x0149376#define NT_STATUS_ILLEGAL_FLOAT_CONTEXT 0xC0000000 | 0x014a377#define NT_STATUS_PIPE_BROKEN 0xC0000000 | 0x014b378#define NT_STATUS_REGISTRY_CORRUPT 0xC0000000 | 0x014c379#define NT_STATUS_REGISTRY_IO_FAILED 0xC0000000 | 0x014d380#define NT_STATUS_NO_EVENT_PAIR 0xC0000000 | 0x014e381#define NT_STATUS_UNRECOGNIZED_VOLUME 0xC0000000 | 0x014f382#define NT_STATUS_SERIAL_NO_DEVICE_INITED 0xC0000000 | 0x0150383#define NT_STATUS_NO_SUCH_ALIAS 0xC0000000 | 0x0151384#define NT_STATUS_MEMBER_NOT_IN_ALIAS 0xC0000000 | 0x0152385#define NT_STATUS_MEMBER_IN_ALIAS 0xC0000000 | 0x0153386#define NT_STATUS_ALIAS_EXISTS 0xC0000000 | 0x0154387#define NT_STATUS_LOGON_NOT_GRANTED 0xC0000000 | 0x0155388#define NT_STATUS_TOO_MANY_SECRETS 0xC0000000 | 0x0156389#define NT_STATUS_SECRET_TOO_LONG 0xC0000000 | 0x0157390#define NT_STATUS_INTERNAL_DB_ERROR 0xC0000000 | 0x0158391#define NT_STATUS_FULLSCREEN_MODE 0xC0000000 | 0x0159392#define NT_STATUS_TOO_MANY_CONTEXT_IDS 0xC0000000 | 0x015a393#define NT_STATUS_LOGON_TYPE_NOT_GRANTED 0xC0000000 | 0x015b394#define NT_STATUS_NOT_REGISTRY_FILE 0xC0000000 | 0x015c395#define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED 0xC0000000 | 0x015d396#define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR 0xC0000000 | 0x015e397#define NT_STATUS_FT_MISSING_MEMBER 0xC0000000 | 0x015f398#define NT_STATUS_ILL_FORMED_SERVICE_ENTRY 0xC0000000 | 0x0160399#define NT_STATUS_ILLEGAL_CHARACTER 0xC0000000 | 0x0161400#define NT_STATUS_UNMAPPABLE_CHARACTER 0xC0000000 | 0x0162401#define NT_STATUS_UNDEFINED_CHARACTER 0xC0000000 | 0x0163402#define NT_STATUS_FLOPPY_VOLUME 0xC0000000 | 0x0164403#define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND 0xC0000000 | 0x0165404#define NT_STATUS_FLOPPY_WRONG_CYLINDER 0xC0000000 | 0x0166405#define NT_STATUS_FLOPPY_UNKNOWN_ERROR 0xC0000000 | 0x0167406#define NT_STATUS_FLOPPY_BAD_REGISTERS 0xC0000000 | 0x0168407#define NT_STATUS_DISK_RECALIBRATE_FAILED 0xC0000000 | 0x0169408#define NT_STATUS_DISK_OPERATION_FAILED 0xC0000000 | 0x016a409#define NT_STATUS_DISK_RESET_FAILED 0xC0000000 | 0x016b410#define NT_STATUS_SHARED_IRQ_BUSY 0xC0000000 | 0x016c411#define NT_STATUS_FT_ORPHANING 0xC0000000 | 0x016d412#define NT_STATUS_PARTITION_FAILURE 0xC0000000 | 0x0172413#define NT_STATUS_INVALID_BLOCK_LENGTH 0xC0000000 | 0x0173414#define NT_STATUS_DEVICE_NOT_PARTITIONED 0xC0000000 | 0x0174415#define NT_STATUS_UNABLE_TO_LOCK_MEDIA 0xC0000000 | 0x0175416#define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA 0xC0000000 | 0x0176417#define NT_STATUS_EOM_OVERFLOW 0xC0000000 | 0x0177418#define NT_STATUS_NO_MEDIA 0xC0000000 | 0x0178419#define NT_STATUS_NO_SUCH_MEMBER 0xC0000000 | 0x017a420#define NT_STATUS_INVALID_MEMBER 0xC0000000 | 0x017b421#define NT_STATUS_KEY_DELETED 0xC0000000 | 0x017c422#define NT_STATUS_NO_LOG_SPACE 0xC0000000 | 0x017d423#define NT_STATUS_TOO_MANY_SIDS 0xC0000000 | 0x017e424#define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED 0xC0000000 | 0x017f425#define NT_STATUS_KEY_HAS_CHILDREN 0xC0000000 | 0x0180426#define NT_STATUS_CHILD_MUST_BE_VOLATILE 0xC0000000 | 0x0181427#define NT_STATUS_DEVICE_CONFIGURATION_ERROR 0xC0000000 | 0x0182428#define NT_STATUS_DRIVER_INTERNAL_ERROR 0xC0000000 | 0x0183429#define NT_STATUS_INVALID_DEVICE_STATE 0xC0000000 | 0x0184430#define NT_STATUS_IO_DEVICE_ERROR 0xC0000000 | 0x0185431#define NT_STATUS_DEVICE_PROTOCOL_ERROR 0xC0000000 | 0x0186432#define NT_STATUS_BACKUP_CONTROLLER 0xC0000000 | 0x0187433#define NT_STATUS_LOG_FILE_FULL 0xC0000000 | 0x0188434#define NT_STATUS_TOO_LATE 0xC0000000 | 0x0189435#define NT_STATUS_NO_TRUST_LSA_SECRET 0xC0000000 | 0x018a436#define NT_STATUS_NO_TRUST_SAM_ACCOUNT 0xC0000000 | 0x018b437#define NT_STATUS_TRUSTED_DOMAIN_FAILURE 0xC0000000 | 0x018c438#define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE 0xC0000000 | 0x018d439#define NT_STATUS_EVENTLOG_FILE_CORRUPT 0xC0000000 | 0x018e440#define NT_STATUS_EVENTLOG_CANT_START 0xC0000000 | 0x018f441#define NT_STATUS_TRUST_FAILURE 0xC0000000 | 0x0190442#define NT_STATUS_MUTANT_LIMIT_EXCEEDED 0xC0000000 | 0x0191443#define NT_STATUS_NETLOGON_NOT_STARTED 0xC0000000 | 0x0192444#define NT_STATUS_ACCOUNT_EXPIRED 0xC0000000 | 0x0193445#define NT_STATUS_POSSIBLE_DEADLOCK 0xC0000000 | 0x0194446#define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT 0xC0000000 | 0x0195447#define NT_STATUS_REMOTE_SESSION_LIMIT 0xC0000000 | 0x0196448#define NT_STATUS_EVENTLOG_FILE_CHANGED 0xC0000000 | 0x0197449#define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 0xC0000000 | 0x0198450#define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT 0xC0000000 | 0x0199451#define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT 0xC0000000 | 0x019a452#define NT_STATUS_DOMAIN_TRUST_INCONSISTENT 0xC0000000 | 0x019b453#define NT_STATUS_FS_DRIVER_REQUIRED 0xC0000000 | 0x019c454#define NT_STATUS_NO_USER_SESSION_KEY 0xC0000000 | 0x0202455#define NT_STATUS_USER_SESSION_DELETED 0xC0000000 | 0x0203456#define NT_STATUS_RESOURCE_LANG_NOT_FOUND 0xC0000000 | 0x0204457#define NT_STATUS_INSUFF_SERVER_RESOURCES 0xC0000000 | 0x0205458#define NT_STATUS_INVALID_BUFFER_SIZE 0xC0000000 | 0x0206459#define NT_STATUS_INVALID_ADDRESS_COMPONENT 0xC0000000 | 0x0207460#define NT_STATUS_INVALID_ADDRESS_WILDCARD 0xC0000000 | 0x0208461#define NT_STATUS_TOO_MANY_ADDRESSES 0xC0000000 | 0x0209462#define NT_STATUS_ADDRESS_ALREADY_EXISTS 0xC0000000 | 0x020a463#define NT_STATUS_ADDRESS_CLOSED 0xC0000000 | 0x020b464#define NT_STATUS_CONNECTION_DISCONNECTED 0xC0000000 | 0x020c465#define NT_STATUS_CONNECTION_RESET 0xC0000000 | 0x020d466#define NT_STATUS_TOO_MANY_NODES 0xC0000000 | 0x020e467#define NT_STATUS_TRANSACTION_ABORTED 0xC0000000 | 0x020f468#define NT_STATUS_TRANSACTION_TIMED_OUT 0xC0000000 | 0x0210469#define NT_STATUS_TRANSACTION_NO_RELEASE 0xC0000000 | 0x0211470#define NT_STATUS_TRANSACTION_NO_MATCH 0xC0000000 | 0x0212471#define NT_STATUS_TRANSACTION_RESPONDED 0xC0000000 | 0x0213472#define NT_STATUS_TRANSACTION_INVALID_ID 0xC0000000 | 0x0214473#define NT_STATUS_TRANSACTION_INVALID_TYPE 0xC0000000 | 0x0215474#define NT_STATUS_NOT_SERVER_SESSION 0xC0000000 | 0x0216475#define NT_STATUS_NOT_CLIENT_SESSION 0xC0000000 | 0x0217476#define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE 0xC0000000 | 0x0218477#define NT_STATUS_DEBUG_ATTACH_FAILED 0xC0000000 | 0x0219478#define NT_STATUS_SYSTEM_PROCESS_TERMINATED 0xC0000000 | 0x021a479#define NT_STATUS_DATA_NOT_ACCEPTED 0xC0000000 | 0x021b480#define NT_STATUS_NO_BROWSER_SERVERS_FOUND 0xC0000000 | 0x021c481#define NT_STATUS_VDM_HARD_ERROR 0xC0000000 | 0x021d482#define NT_STATUS_DRIVER_CANCEL_TIMEOUT 0xC0000000 | 0x021e483#define NT_STATUS_REPLY_MESSAGE_MISMATCH 0xC0000000 | 0x021f484#define NT_STATUS_MAPPED_ALIGNMENT 0xC0000000 | 0x0220485#define NT_STATUS_IMAGE_CHECKSUM_MISMATCH 0xC0000000 | 0x0221486#define NT_STATUS_LOST_WRITEBEHIND_DATA 0xC0000000 | 0x0222487#define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID 0xC0000000 | 0x0223488#define NT_STATUS_PASSWORD_MUST_CHANGE 0xC0000000 | 0x0224489#define NT_STATUS_NOT_FOUND 0xC0000000 | 0x0225490#define NT_STATUS_NOT_TINY_STREAM 0xC0000000 | 0x0226491#define NT_STATUS_RECOVERY_FAILURE 0xC0000000 | 0x0227492#define NT_STATUS_STACK_OVERFLOW_READ 0xC0000000 | 0x0228493#define NT_STATUS_FAIL_CHECK 0xC0000000 | 0x0229494#define NT_STATUS_DUPLICATE_OBJECTID 0xC0000000 | 0x022a495#define NT_STATUS_OBJECTID_EXISTS 0xC0000000 | 0x022b496#define NT_STATUS_CONVERT_TO_LARGE 0xC0000000 | 0x022c497#define NT_STATUS_RETRY 0xC0000000 | 0x022d498#define NT_STATUS_FOUND_OUT_OF_SCOPE 0xC0000000 | 0x022e499#define NT_STATUS_ALLOCATE_BUCKET 0xC0000000 | 0x022f500#define NT_STATUS_PROPSET_NOT_FOUND 0xC0000000 | 0x0230501#define NT_STATUS_MARSHALL_OVERFLOW 0xC0000000 | 0x0231502#define NT_STATUS_INVALID_VARIANT 0xC0000000 | 0x0232503#define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND 0xC0000000 | 0x0233504#define NT_STATUS_ACCOUNT_LOCKED_OUT 0xC0000000 | 0x0234505#define NT_STATUS_HANDLE_NOT_CLOSABLE 0xC0000000 | 0x0235506#define NT_STATUS_CONNECTION_REFUSED 0xC0000000 | 0x0236507#define NT_STATUS_GRACEFUL_DISCONNECT 0xC0000000 | 0x0237508#define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED 0xC0000000 | 0x0238509#define NT_STATUS_ADDRESS_NOT_ASSOCIATED 0xC0000000 | 0x0239510#define NT_STATUS_CONNECTION_INVALID 0xC0000000 | 0x023a511#define NT_STATUS_CONNECTION_ACTIVE 0xC0000000 | 0x023b512#define NT_STATUS_NETWORK_UNREACHABLE 0xC0000000 | 0x023c513#define NT_STATUS_HOST_UNREACHABLE 0xC0000000 | 0x023d514#define NT_STATUS_PROTOCOL_UNREACHABLE 0xC0000000 | 0x023e515#define NT_STATUS_PORT_UNREACHABLE 0xC0000000 | 0x023f516#define NT_STATUS_REQUEST_ABORTED 0xC0000000 | 0x0240517#define NT_STATUS_CONNECTION_ABORTED 0xC0000000 | 0x0241518#define NT_STATUS_BAD_COMPRESSION_BUFFER 0xC0000000 | 0x0242519#define NT_STATUS_USER_MAPPED_FILE 0xC0000000 | 0x0243520#define NT_STATUS_AUDIT_FAILED 0xC0000000 | 0x0244521#define NT_STATUS_TIMER_RESOLUTION_NOT_SET 0xC0000000 | 0x0245522#define NT_STATUS_CONNECTION_COUNT_LIMIT 0xC0000000 | 0x0246523#define NT_STATUS_LOGIN_TIME_RESTRICTION 0xC0000000 | 0x0247524#define NT_STATUS_LOGIN_WKSTA_RESTRICTION 0xC0000000 | 0x0248525#define NT_STATUS_IMAGE_MP_UP_MISMATCH 0xC0000000 | 0x0249526#define NT_STATUS_INSUFFICIENT_LOGON_INFO 0xC0000000 | 0x0250527#define NT_STATUS_BAD_DLL_ENTRYPOINT 0xC0000000 | 0x0251528#define NT_STATUS_BAD_SERVICE_ENTRYPOINT 0xC0000000 | 0x0252529#define NT_STATUS_LPC_REPLY_LOST 0xC0000000 | 0x0253530#define NT_STATUS_IP_ADDRESS_CONFLICT1 0xC0000000 | 0x0254531#define NT_STATUS_IP_ADDRESS_CONFLICT2 0xC0000000 | 0x0255532#define NT_STATUS_REGISTRY_QUOTA_LIMIT 0xC0000000 | 0x0256533#define NT_STATUS_PATH_NOT_COVERED 0xC0000000 | 0x0257534#define NT_STATUS_NO_CALLBACK_ACTIVE 0xC0000000 | 0x0258535#define NT_STATUS_LICENSE_QUOTA_EXCEEDED 0xC0000000 | 0x0259536#define NT_STATUS_PWD_TOO_SHORT 0xC0000000 | 0x025a537#define NT_STATUS_PWD_TOO_RECENT 0xC0000000 | 0x025b538#define NT_STATUS_PWD_HISTORY_CONFLICT 0xC0000000 | 0x025c539#define NT_STATUS_PLUGPLAY_NO_DEVICE 0xC0000000 | 0x025e540#define NT_STATUS_UNSUPPORTED_COMPRESSION 0xC0000000 | 0x025f541#define NT_STATUS_INVALID_HW_PROFILE 0xC0000000 | 0x0260542#define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH 0xC0000000 | 0x0261543#define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND 0xC0000000 | 0x0262544#define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND 0xC0000000 | 0x0263545#define NT_STATUS_RESOURCE_NOT_OWNED 0xC0000000 | 0x0264546#define NT_STATUS_TOO_MANY_LINKS 0xC0000000 | 0x0265547#define NT_STATUS_QUOTA_LIST_INCONSISTENT 0xC0000000 | 0x0266548#define NT_STATUS_FILE_IS_OFFLINE 0xC0000000 | 0x0267549#define NT_STATUS_NO_SUCH_JOB 0xC0000000 | 0xEDE	/* scheduler */550 551#endif				/* _NTERR_H */552