Commit b8030603d94a231c7fdee4c1ac369537f1fb8fb0

Authored by Pavel Shilovsky
Committed by Steve French
1 parent f7ec0d0bbc

CIFS: Add SMB2 status codes

Reviewed-by: Jeff Layton <jlayton@samba.org>
Signed-off-by: Pavel Shilovsky <piastry@etersoft.ru>
Signed-off-by: Steve French <smfrench@gmail.com>

Showing 1 changed file with 1782 additions and 0 deletions Side-by-side Diff

fs/cifs/smb2status.h
Changes suppressed. Click to show
  1 +/*
  2 + * fs/cifs/smb2status.h
  3 + *
  4 + * SMB2 Status code (network error) definitions
  5 + * Definitions are from MS-ERREF
  6 + *
  7 + * Copyright (c) International Business Machines Corp., 2009,2011
  8 + * Author(s): Steve French (sfrench@us.ibm.com)
  9 + *
  10 + * This library is free software; you can redistribute it and/or modify
  11 + * it under the terms of the GNU Lesser General Public License as published
  12 + * by the Free Software Foundation; either version 2.1 of the License, or
  13 + * (at your option) any later version.
  14 + *
  15 + * This library is distributed in the hope that it will be useful,
  16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  18 + * the GNU Lesser General Public License for more details.
  19 + *
  20 + * You should have received a copy of the GNU Lesser General Public License
  21 + * along with this library; if not, write to the Free Software
  22 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23 + */
  24 +
  25 +/*
  26 + * 0 1 2 3 4 5 6 7 8 9 0 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
  27 + * SEV C N <-------Facility--------> <------Error Status Code------>
  28 + *
  29 + * C is set if "customer defined" error, N bit is reserved and MBZ
  30 + */
  31 +
  32 +#define STATUS_SEVERITY_SUCCESS __constant_cpu_to_le32(0x0000)
  33 +#define STATUS_SEVERITY_INFORMATIONAL __constanst_cpu_to_le32(0x0001)
  34 +#define STATUS_SEVERITY_WARNING __constanst_cpu_to_le32(0x0002)
  35 +#define STATUS_SEVERITY_ERROR __constanst_cpu_to_le32(0x0003)
  36 +
  37 +struct ntstatus {
  38 + /* Facility is the high 12 bits of the following field */
  39 + __le32 Facility; /* low 2 bits Severity, next is Customer, then rsrvd */
  40 + __le32 Code;
  41 +};
  42 +
  43 +#define STATUS_SUCCESS __constant_cpu_to_le32(0x00000000)
  44 +#define STATUS_WAIT_0 __constant_cpu_to_le32(0x00000000)
  45 +#define STATUS_WAIT_1 __constant_cpu_to_le32(0x00000001)
  46 +#define STATUS_WAIT_2 __constant_cpu_to_le32(0x00000002)
  47 +#define STATUS_WAIT_3 __constant_cpu_to_le32(0x00000003)
  48 +#define STATUS_WAIT_63 __constant_cpu_to_le32(0x0000003F)
  49 +#define STATUS_ABANDONED __constant_cpu_to_le32(0x00000080)
  50 +#define STATUS_ABANDONED_WAIT_0 __constant_cpu_to_le32(0x00000080)
  51 +#define STATUS_ABANDONED_WAIT_63 __constant_cpu_to_le32(0x000000BF)
  52 +#define STATUS_USER_APC __constant_cpu_to_le32(0x000000C0)
  53 +#define STATUS_KERNEL_APC __constant_cpu_to_le32(0x00000100)
  54 +#define STATUS_ALERTED __constant_cpu_to_le32(0x00000101)
  55 +#define STATUS_TIMEOUT __constant_cpu_to_le32(0x00000102)
  56 +#define STATUS_PENDING __constant_cpu_to_le32(0x00000103)
  57 +#define STATUS_REPARSE __constant_cpu_to_le32(0x00000104)
  58 +#define STATUS_MORE_ENTRIES __constant_cpu_to_le32(0x00000105)
  59 +#define STATUS_NOT_ALL_ASSIGNED __constant_cpu_to_le32(0x00000106)
  60 +#define STATUS_SOME_NOT_MAPPED __constant_cpu_to_le32(0x00000107)
  61 +#define STATUS_OPLOCK_BREAK_IN_PROGRESS __constant_cpu_to_le32(0x00000108)
  62 +#define STATUS_VOLUME_MOUNTED __constant_cpu_to_le32(0x00000109)
  63 +#define STATUS_RXACT_COMMITTED __constant_cpu_to_le32(0x0000010A)
  64 +#define STATUS_NOTIFY_CLEANUP __constant_cpu_to_le32(0x0000010B)
  65 +#define STATUS_NOTIFY_ENUM_DIR __constant_cpu_to_le32(0x0000010C)
  66 +#define STATUS_NO_QUOTAS_FOR_ACCOUNT __constant_cpu_to_le32(0x0000010D)
  67 +#define STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED __constant_cpu_to_le32(0x0000010E)
  68 +#define STATUS_PAGE_FAULT_TRANSITION __constant_cpu_to_le32(0x00000110)
  69 +#define STATUS_PAGE_FAULT_DEMAND_ZERO __constant_cpu_to_le32(0x00000111)
  70 +#define STATUS_PAGE_FAULT_COPY_ON_WRITE __constant_cpu_to_le32(0x00000112)
  71 +#define STATUS_PAGE_FAULT_GUARD_PAGE __constant_cpu_to_le32(0x00000113)
  72 +#define STATUS_PAGE_FAULT_PAGING_FILE __constant_cpu_to_le32(0x00000114)
  73 +#define STATUS_CACHE_PAGE_LOCKED __constant_cpu_to_le32(0x00000115)
  74 +#define STATUS_CRASH_DUMP __constant_cpu_to_le32(0x00000116)
  75 +#define STATUS_BUFFER_ALL_ZEROS __constant_cpu_to_le32(0x00000117)
  76 +#define STATUS_REPARSE_OBJECT __constant_cpu_to_le32(0x00000118)
  77 +#define STATUS_RESOURCE_REQUIREMENTS_CHANGED __constant_cpu_to_le32(0x00000119)
  78 +#define STATUS_TRANSLATION_COMPLETE __constant_cpu_to_le32(0x00000120)
  79 +#define STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY __constant_cpu_to_le32(0x00000121)
  80 +#define STATUS_NOTHING_TO_TERMINATE __constant_cpu_to_le32(0x00000122)
  81 +#define STATUS_PROCESS_NOT_IN_JOB __constant_cpu_to_le32(0x00000123)
  82 +#define STATUS_PROCESS_IN_JOB __constant_cpu_to_le32(0x00000124)
  83 +#define STATUS_VOLSNAP_HIBERNATE_READY __constant_cpu_to_le32(0x00000125)
  84 +#define STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY __constant_cpu_to_le32(0x00000126)
  85 +#define STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED __constant_cpu_to_le32(0x00000127)
  86 +#define STATUS_INTERRUPT_STILL_CONNECTED __constant_cpu_to_le32(0x00000128)
  87 +#define STATUS_PROCESS_CLONED __constant_cpu_to_le32(0x00000129)
  88 +#define STATUS_FILE_LOCKED_WITH_ONLY_READERS __constant_cpu_to_le32(0x0000012A)
  89 +#define STATUS_FILE_LOCKED_WITH_WRITERS __constant_cpu_to_le32(0x0000012B)
  90 +#define STATUS_RESOURCEMANAGER_READ_ONLY __constant_cpu_to_le32(0x00000202)
  91 +#define STATUS_WAIT_FOR_OPLOCK __constant_cpu_to_le32(0x00000367)
  92 +#define DBG_EXCEPTION_HANDLED __constant_cpu_to_le32(0x00010001)
  93 +#define DBG_CONTINUE __constant_cpu_to_le32(0x00010002)
  94 +#define STATUS_FLT_IO_COMPLETE __constant_cpu_to_le32(0x001C0001)
  95 +#define STATUS_OBJECT_NAME_EXISTS __constant_cpu_to_le32(0x40000000)
  96 +#define STATUS_THREAD_WAS_SUSPENDED __constant_cpu_to_le32(0x40000001)
  97 +#define STATUS_WORKING_SET_LIMIT_RANGE __constant_cpu_to_le32(0x40000002)
  98 +#define STATUS_IMAGE_NOT_AT_BASE __constant_cpu_to_le32(0x40000003)
  99 +#define STATUS_RXACT_STATE_CREATED __constant_cpu_to_le32(0x40000004)
  100 +#define STATUS_SEGMENT_NOTIFICATION __constant_cpu_to_le32(0x40000005)
  101 +#define STATUS_LOCAL_USER_SESSION_KEY __constant_cpu_to_le32(0x40000006)
  102 +#define STATUS_BAD_CURRENT_DIRECTORY __constant_cpu_to_le32(0x40000007)
  103 +#define STATUS_SERIAL_MORE_WRITES __constant_cpu_to_le32(0x40000008)
  104 +#define STATUS_REGISTRY_RECOVERED __constant_cpu_to_le32(0x40000009)
  105 +#define STATUS_FT_READ_RECOVERY_FROM_BACKUP __constant_cpu_to_le32(0x4000000A)
  106 +#define STATUS_FT_WRITE_RECOVERY __constant_cpu_to_le32(0x4000000B)
  107 +#define STATUS_SERIAL_COUNTER_TIMEOUT __constant_cpu_to_le32(0x4000000C)
  108 +#define STATUS_NULL_LM_PASSWORD __constant_cpu_to_le32(0x4000000D)
  109 +#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH __constant_cpu_to_le32(0x4000000E)
  110 +#define STATUS_RECEIVE_PARTIAL __constant_cpu_to_le32(0x4000000F)
  111 +#define STATUS_RECEIVE_EXPEDITED __constant_cpu_to_le32(0x40000010)
  112 +#define STATUS_RECEIVE_PARTIAL_EXPEDITED __constant_cpu_to_le32(0x40000011)
  113 +#define STATUS_EVENT_DONE __constant_cpu_to_le32(0x40000012)
  114 +#define STATUS_EVENT_PENDING __constant_cpu_to_le32(0x40000013)
  115 +#define STATUS_CHECKING_FILE_SYSTEM __constant_cpu_to_le32(0x40000014)
  116 +#define STATUS_FATAL_APP_EXIT __constant_cpu_to_le32(0x40000015)
  117 +#define STATUS_PREDEFINED_HANDLE __constant_cpu_to_le32(0x40000016)
  118 +#define STATUS_WAS_UNLOCKED __constant_cpu_to_le32(0x40000017)
  119 +#define STATUS_SERVICE_NOTIFICATION __constant_cpu_to_le32(0x40000018)
  120 +#define STATUS_WAS_LOCKED __constant_cpu_to_le32(0x40000019)
  121 +#define STATUS_LOG_HARD_ERROR __constant_cpu_to_le32(0x4000001A)
  122 +#define STATUS_ALREADY_WIN32 __constant_cpu_to_le32(0x4000001B)
  123 +#define STATUS_WX86_UNSIMULATE __constant_cpu_to_le32(0x4000001C)
  124 +#define STATUS_WX86_CONTINUE __constant_cpu_to_le32(0x4000001D)
  125 +#define STATUS_WX86_SINGLE_STEP __constant_cpu_to_le32(0x4000001E)
  126 +#define STATUS_WX86_BREAKPOINT __constant_cpu_to_le32(0x4000001F)
  127 +#define STATUS_WX86_EXCEPTION_CONTINUE __constant_cpu_to_le32(0x40000020)
  128 +#define STATUS_WX86_EXCEPTION_LASTCHANCE __constant_cpu_to_le32(0x40000021)
  129 +#define STATUS_WX86_EXCEPTION_CHAIN __constant_cpu_to_le32(0x40000022)
  130 +#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE __constant_cpu_to_le32(0x40000023)
  131 +#define STATUS_NO_YIELD_PERFORMED __constant_cpu_to_le32(0x40000024)
  132 +#define STATUS_TIMER_RESUME_IGNORED __constant_cpu_to_le32(0x40000025)
  133 +#define STATUS_ARBITRATION_UNHANDLED __constant_cpu_to_le32(0x40000026)
  134 +#define STATUS_CARDBUS_NOT_SUPPORTED __constant_cpu_to_le32(0x40000027)
  135 +#define STATUS_WX86_CREATEWX86TIB __constant_cpu_to_le32(0x40000028)
  136 +#define STATUS_MP_PROCESSOR_MISMATCH __constant_cpu_to_le32(0x40000029)
  137 +#define STATUS_HIBERNATED __constant_cpu_to_le32(0x4000002A)
  138 +#define STATUS_RESUME_HIBERNATION __constant_cpu_to_le32(0x4000002B)
  139 +#define STATUS_FIRMWARE_UPDATED __constant_cpu_to_le32(0x4000002C)
  140 +#define STATUS_DRIVERS_LEAKING_LOCKED_PAGES __constant_cpu_to_le32(0x4000002D)
  141 +#define STATUS_MESSAGE_RETRIEVED __constant_cpu_to_le32(0x4000002E)
  142 +#define STATUS_SYSTEM_POWERSTATE_TRANSITION __constant_cpu_to_le32(0x4000002F)
  143 +#define STATUS_ALPC_CHECK_COMPLETION_LIST __constant_cpu_to_le32(0x40000030)
  144 +#define STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION __constant_cpu_to_le32(0x40000031)
  145 +#define STATUS_ACCESS_AUDIT_BY_POLICY __constant_cpu_to_le32(0x40000032)
  146 +#define STATUS_ABANDON_HIBERFILE __constant_cpu_to_le32(0x40000033)
  147 +#define STATUS_BIZRULES_NOT_ENABLED __constant_cpu_to_le32(0x40000034)
  148 +#define STATUS_WAKE_SYSTEM __constant_cpu_to_le32(0x40000294)
  149 +#define STATUS_DS_SHUTTING_DOWN __constant_cpu_to_le32(0x40000370)
  150 +#define DBG_REPLY_LATER __constant_cpu_to_le32(0x40010001)
  151 +#define DBG_UNABLE_TO_PROVIDE_HANDLE __constant_cpu_to_le32(0x40010002)
  152 +#define DBG_TERMINATE_THREAD __constant_cpu_to_le32(0x40010003)
  153 +#define DBG_TERMINATE_PROCESS __constant_cpu_to_le32(0x40010004)
  154 +#define DBG_CONTROL_C __constant_cpu_to_le32(0x40010005)
  155 +#define DBG_PRINTEXCEPTION_C __constant_cpu_to_le32(0x40010006)
  156 +#define DBG_RIPEXCEPTION __constant_cpu_to_le32(0x40010007)
  157 +#define DBG_CONTROL_BREAK __constant_cpu_to_le32(0x40010008)
  158 +#define DBG_COMMAND_EXCEPTION __constant_cpu_to_le32(0x40010009)
  159 +#define RPC_NT_UUID_LOCAL_ONLY __constant_cpu_to_le32(0x40020056)
  160 +#define RPC_NT_SEND_INCOMPLETE __constant_cpu_to_le32(0x400200AF)
  161 +#define STATUS_CTX_CDM_CONNECT __constant_cpu_to_le32(0x400A0004)
  162 +#define STATUS_CTX_CDM_DISCONNECT __constant_cpu_to_le32(0x400A0005)
  163 +#define STATUS_SXS_RELEASE_ACTIVATION_CONTEXT __constant_cpu_to_le32(0x4015000D)
  164 +#define STATUS_RECOVERY_NOT_NEEDED __constant_cpu_to_le32(0x40190034)
  165 +#define STATUS_RM_ALREADY_STARTED __constant_cpu_to_le32(0x40190035)
  166 +#define STATUS_LOG_NO_RESTART __constant_cpu_to_le32(0x401A000C)
  167 +#define STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST __constant_cpu_to_le32(0x401B00EC)
  168 +#define STATUS_GRAPHICS_PARTIAL_DATA_POPULATED __constant_cpu_to_le32(0x401E000A)
  169 +#define STATUS_GRAPHICS_DRIVER_MISMATCH __constant_cpu_to_le32(0x401E0117)
  170 +#define STATUS_GRAPHICS_MODE_NOT_PINNED __constant_cpu_to_le32(0x401E0307)
  171 +#define STATUS_GRAPHICS_NO_PREFERRED_MODE __constant_cpu_to_le32(0x401E031E)
  172 +#define STATUS_GRAPHICS_DATASET_IS_EMPTY __constant_cpu_to_le32(0x401E034B)
  173 +#define STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET __constant_cpu_to_le32(0x401E034C)
  174 +#define STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED __constant_cpu_to_le32(0x401E0351)
  175 +#define STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS __constant_cpu_to_le32(0x401E042F)
  176 +#define STATUS_GRAPHICS_LEADLINK_START_DEFERRED __constant_cpu_to_le32(0x401E0437)
  177 +#define STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY __constant_cpu_to_le32(0x401E0439)
  178 +#define STATUS_GRAPHICS_START_DEFERRED __constant_cpu_to_le32(0x401E043A)
  179 +#define STATUS_NDIS_INDICATION_REQUIRED __constant_cpu_to_le32(0x40230001)
  180 +#define STATUS_GUARD_PAGE_VIOLATION __constant_cpu_to_le32(0x80000001)
  181 +#define STATUS_DATATYPE_MISALIGNMENT __constant_cpu_to_le32(0x80000002)
  182 +#define STATUS_BREAKPOINT __constant_cpu_to_le32(0x80000003)
  183 +#define STATUS_SINGLE_STEP __constant_cpu_to_le32(0x80000004)
  184 +#define STATUS_BUFFER_OVERFLOW __constant_cpu_to_le32(0x80000005)
  185 +#define STATUS_NO_MORE_FILES __constant_cpu_to_le32(0x80000006)
  186 +#define STATUS_WAKE_SYSTEM_DEBUGGER __constant_cpu_to_le32(0x80000007)
  187 +#define STATUS_HANDLES_CLOSED __constant_cpu_to_le32(0x8000000A)
  188 +#define STATUS_NO_INHERITANCE __constant_cpu_to_le32(0x8000000B)
  189 +#define STATUS_GUID_SUBSTITUTION_MADE __constant_cpu_to_le32(0x8000000C)
  190 +#define STATUS_PARTIAL_COPY __constant_cpu_to_le32(0x8000000D)
  191 +#define STATUS_DEVICE_PAPER_EMPTY __constant_cpu_to_le32(0x8000000E)
  192 +#define STATUS_DEVICE_POWERED_OFF __constant_cpu_to_le32(0x8000000F)
  193 +#define STATUS_DEVICE_OFF_LINE __constant_cpu_to_le32(0x80000010)
  194 +#define STATUS_DEVICE_BUSY __constant_cpu_to_le32(0x80000011)
  195 +#define STATUS_NO_MORE_EAS __constant_cpu_to_le32(0x80000012)
  196 +#define STATUS_INVALID_EA_NAME __constant_cpu_to_le32(0x80000013)
  197 +#define STATUS_EA_LIST_INCONSISTENT __constant_cpu_to_le32(0x80000014)
  198 +#define STATUS_INVALID_EA_FLAG __constant_cpu_to_le32(0x80000015)
  199 +#define STATUS_VERIFY_REQUIRED __constant_cpu_to_le32(0x80000016)
  200 +#define STATUS_EXTRANEOUS_INFORMATION __constant_cpu_to_le32(0x80000017)
  201 +#define STATUS_RXACT_COMMIT_NECESSARY __constant_cpu_to_le32(0x80000018)
  202 +#define STATUS_NO_MORE_ENTRIES __constant_cpu_to_le32(0x8000001A)
  203 +#define STATUS_FILEMARK_DETECTED __constant_cpu_to_le32(0x8000001B)
  204 +#define STATUS_MEDIA_CHANGED __constant_cpu_to_le32(0x8000001C)
  205 +#define STATUS_BUS_RESET __constant_cpu_to_le32(0x8000001D)
  206 +#define STATUS_END_OF_MEDIA __constant_cpu_to_le32(0x8000001E)
  207 +#define STATUS_BEGINNING_OF_MEDIA __constant_cpu_to_le32(0x8000001F)
  208 +#define STATUS_MEDIA_CHECK __constant_cpu_to_le32(0x80000020)
  209 +#define STATUS_SETMARK_DETECTED __constant_cpu_to_le32(0x80000021)
  210 +#define STATUS_NO_DATA_DETECTED __constant_cpu_to_le32(0x80000022)
  211 +#define STATUS_REDIRECTOR_HAS_OPEN_HANDLES __constant_cpu_to_le32(0x80000023)
  212 +#define STATUS_SERVER_HAS_OPEN_HANDLES __constant_cpu_to_le32(0x80000024)
  213 +#define STATUS_ALREADY_DISCONNECTED __constant_cpu_to_le32(0x80000025)
  214 +#define STATUS_LONGJUMP __constant_cpu_to_le32(0x80000026)
  215 +#define STATUS_CLEANER_CARTRIDGE_INSTALLED __constant_cpu_to_le32(0x80000027)
  216 +#define STATUS_PLUGPLAY_QUERY_VETOED __constant_cpu_to_le32(0x80000028)
  217 +#define STATUS_UNWIND_CONSOLIDATE __constant_cpu_to_le32(0x80000029)
  218 +#define STATUS_REGISTRY_HIVE_RECOVERED __constant_cpu_to_le32(0x8000002A)
  219 +#define STATUS_DLL_MIGHT_BE_INSECURE __constant_cpu_to_le32(0x8000002B)
  220 +#define STATUS_DLL_MIGHT_BE_INCOMPATIBLE __constant_cpu_to_le32(0x8000002C)
  221 +#define STATUS_STOPPED_ON_SYMLINK __constant_cpu_to_le32(0x8000002D)
  222 +#define STATUS_DEVICE_REQUIRES_CLEANING __constant_cpu_to_le32(0x80000288)
  223 +#define STATUS_DEVICE_DOOR_OPEN __constant_cpu_to_le32(0x80000289)
  224 +#define STATUS_DATA_LOST_REPAIR __constant_cpu_to_le32(0x80000803)
  225 +#define DBG_EXCEPTION_NOT_HANDLED __constant_cpu_to_le32(0x80010001)
  226 +#define STATUS_CLUSTER_NODE_ALREADY_UP __constant_cpu_to_le32(0x80130001)
  227 +#define STATUS_CLUSTER_NODE_ALREADY_DOWN __constant_cpu_to_le32(0x80130002)
  228 +#define STATUS_CLUSTER_NETWORK_ALREADY_ONLINE __constant_cpu_to_le32(0x80130003)
  229 +#define STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE __constant_cpu_to_le32(0x80130004)
  230 +#define STATUS_CLUSTER_NODE_ALREADY_MEMBER __constant_cpu_to_le32(0x80130005)
  231 +#define STATUS_COULD_NOT_RESIZE_LOG __constant_cpu_to_le32(0x80190009)
  232 +#define STATUS_NO_TXF_METADATA __constant_cpu_to_le32(0x80190029)
  233 +#define STATUS_CANT_RECOVER_WITH_HANDLE_OPEN __constant_cpu_to_le32(0x80190031)
  234 +#define STATUS_TXF_METADATA_ALREADY_PRESENT __constant_cpu_to_le32(0x80190041)
  235 +#define STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET __constant_cpu_to_le32(0x80190042)
  236 +#define STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED __constant_cpu_to_le32(0x801B00EB)
  237 +#define STATUS_FLT_BUFFER_TOO_SMALL __constant_cpu_to_le32(0x801C0001)
  238 +#define STATUS_FVE_PARTIAL_METADATA __constant_cpu_to_le32(0x80210001)
  239 +#define STATUS_UNSUCCESSFUL __constant_cpu_to_le32(0xC0000001)
  240 +#define STATUS_NOT_IMPLEMENTED __constant_cpu_to_le32(0xC0000002)
  241 +#define STATUS_INVALID_INFO_CLASS __constant_cpu_to_le32(0xC0000003)
  242 +#define STATUS_INFO_LENGTH_MISMATCH __constant_cpu_to_le32(0xC0000004)
  243 +#define STATUS_ACCESS_VIOLATION __constant_cpu_to_le32(0xC0000005)
  244 +#define STATUS_IN_PAGE_ERROR __constant_cpu_to_le32(0xC0000006)
  245 +#define STATUS_PAGEFILE_QUOTA __constant_cpu_to_le32(0xC0000007)
  246 +#define STATUS_INVALID_HANDLE __constant_cpu_to_le32(0xC0000008)
  247 +#define STATUS_BAD_INITIAL_STACK __constant_cpu_to_le32(0xC0000009)
  248 +#define STATUS_BAD_INITIAL_PC __constant_cpu_to_le32(0xC000000A)
  249 +#define STATUS_INVALID_CID __constant_cpu_to_le32(0xC000000B)
  250 +#define STATUS_TIMER_NOT_CANCELED __constant_cpu_to_le32(0xC000000C)
  251 +#define STATUS_INVALID_PARAMETER __constant_cpu_to_le32(0xC000000D)
  252 +#define STATUS_NO_SUCH_DEVICE __constant_cpu_to_le32(0xC000000E)
  253 +#define STATUS_NO_SUCH_FILE __constant_cpu_to_le32(0xC000000F)
  254 +#define STATUS_INVALID_DEVICE_REQUEST __constant_cpu_to_le32(0xC0000010)
  255 +#define STATUS_END_OF_FILE __constant_cpu_to_le32(0xC0000011)
  256 +#define STATUS_WRONG_VOLUME __constant_cpu_to_le32(0xC0000012)
  257 +#define STATUS_NO_MEDIA_IN_DEVICE __constant_cpu_to_le32(0xC0000013)
  258 +#define STATUS_UNRECOGNIZED_MEDIA __constant_cpu_to_le32(0xC0000014)
  259 +#define STATUS_NONEXISTENT_SECTOR __constant_cpu_to_le32(0xC0000015)
  260 +#define STATUS_MORE_PROCESSING_REQUIRED __constant_cpu_to_le32(0xC0000016)
  261 +#define STATUS_NO_MEMORY __constant_cpu_to_le32(0xC0000017)
  262 +#define STATUS_CONFLICTING_ADDRESSES __constant_cpu_to_le32(0xC0000018)
  263 +#define STATUS_NOT_MAPPED_VIEW __constant_cpu_to_le32(0xC0000019)
  264 +#define STATUS_UNABLE_TO_FREE_VM __constant_cpu_to_le32(0xC000001A)
  265 +#define STATUS_UNABLE_TO_DELETE_SECTION __constant_cpu_to_le32(0xC000001B)
  266 +#define STATUS_INVALID_SYSTEM_SERVICE __constant_cpu_to_le32(0xC000001C)
  267 +#define STATUS_ILLEGAL_INSTRUCTION __constant_cpu_to_le32(0xC000001D)
  268 +#define STATUS_INVALID_LOCK_SEQUENCE __constant_cpu_to_le32(0xC000001E)
  269 +#define STATUS_INVALID_VIEW_SIZE __constant_cpu_to_le32(0xC000001F)
  270 +#define STATUS_INVALID_FILE_FOR_SECTION __constant_cpu_to_le32(0xC0000020)
  271 +#define STATUS_ALREADY_COMMITTED __constant_cpu_to_le32(0xC0000021)
  272 +#define STATUS_ACCESS_DENIED __constant_cpu_to_le32(0xC0000022)
  273 +#define STATUS_BUFFER_TOO_SMALL __constant_cpu_to_le32(0xC0000023)
  274 +#define STATUS_OBJECT_TYPE_MISMATCH __constant_cpu_to_le32(0xC0000024)
  275 +#define STATUS_NONCONTINUABLE_EXCEPTION __constant_cpu_to_le32(0xC0000025)
  276 +#define STATUS_INVALID_DISPOSITION __constant_cpu_to_le32(0xC0000026)
  277 +#define STATUS_UNWIND __constant_cpu_to_le32(0xC0000027)
  278 +#define STATUS_BAD_STACK __constant_cpu_to_le32(0xC0000028)
  279 +#define STATUS_INVALID_UNWIND_TARGET __constant_cpu_to_le32(0xC0000029)
  280 +#define STATUS_NOT_LOCKED __constant_cpu_to_le32(0xC000002A)
  281 +#define STATUS_PARITY_ERROR __constant_cpu_to_le32(0xC000002B)
  282 +#define STATUS_UNABLE_TO_DECOMMIT_VM __constant_cpu_to_le32(0xC000002C)
  283 +#define STATUS_NOT_COMMITTED __constant_cpu_to_le32(0xC000002D)
  284 +#define STATUS_INVALID_PORT_ATTRIBUTES __constant_cpu_to_le32(0xC000002E)
  285 +#define STATUS_PORT_MESSAGE_TOO_LONG __constant_cpu_to_le32(0xC000002F)
  286 +#define STATUS_INVALID_PARAMETER_MIX __constant_cpu_to_le32(0xC0000030)
  287 +#define STATUS_INVALID_QUOTA_LOWER __constant_cpu_to_le32(0xC0000031)
  288 +#define STATUS_DISK_CORRUPT_ERROR __constant_cpu_to_le32(0xC0000032)
  289 +#define STATUS_OBJECT_NAME_INVALID __constant_cpu_to_le32(0xC0000033)
  290 +#define STATUS_OBJECT_NAME_NOT_FOUND __constant_cpu_to_le32(0xC0000034)
  291 +#define STATUS_OBJECT_NAME_COLLISION __constant_cpu_to_le32(0xC0000035)
  292 +#define STATUS_PORT_DISCONNECTED __constant_cpu_to_le32(0xC0000037)
  293 +#define STATUS_DEVICE_ALREADY_ATTACHED __constant_cpu_to_le32(0xC0000038)
  294 +#define STATUS_OBJECT_PATH_INVALID __constant_cpu_to_le32(0xC0000039)
  295 +#define STATUS_OBJECT_PATH_NOT_FOUND __constant_cpu_to_le32(0xC000003A)
  296 +#define STATUS_OBJECT_PATH_SYNTAX_BAD __constant_cpu_to_le32(0xC000003B)
  297 +#define STATUS_DATA_OVERRUN __constant_cpu_to_le32(0xC000003C)
  298 +#define STATUS_DATA_LATE_ERROR __constant_cpu_to_le32(0xC000003D)
  299 +#define STATUS_DATA_ERROR __constant_cpu_to_le32(0xC000003E)
  300 +#define STATUS_CRC_ERROR __constant_cpu_to_le32(0xC000003F)
  301 +#define STATUS_SECTION_TOO_BIG __constant_cpu_to_le32(0xC0000040)
  302 +#define STATUS_PORT_CONNECTION_REFUSED __constant_cpu_to_le32(0xC0000041)
  303 +#define STATUS_INVALID_PORT_HANDLE __constant_cpu_to_le32(0xC0000042)
  304 +#define STATUS_SHARING_VIOLATION __constant_cpu_to_le32(0xC0000043)
  305 +#define STATUS_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000044)
  306 +#define STATUS_INVALID_PAGE_PROTECTION __constant_cpu_to_le32(0xC0000045)
  307 +#define STATUS_MUTANT_NOT_OWNED __constant_cpu_to_le32(0xC0000046)
  308 +#define STATUS_SEMAPHORE_LIMIT_EXCEEDED __constant_cpu_to_le32(0xC0000047)
  309 +#define STATUS_PORT_ALREADY_SET __constant_cpu_to_le32(0xC0000048)
  310 +#define STATUS_SECTION_NOT_IMAGE __constant_cpu_to_le32(0xC0000049)
  311 +#define STATUS_SUSPEND_COUNT_EXCEEDED __constant_cpu_to_le32(0xC000004A)
  312 +#define STATUS_THREAD_IS_TERMINATING __constant_cpu_to_le32(0xC000004B)
  313 +#define STATUS_BAD_WORKING_SET_LIMIT __constant_cpu_to_le32(0xC000004C)
  314 +#define STATUS_INCOMPATIBLE_FILE_MAP __constant_cpu_to_le32(0xC000004D)
  315 +#define STATUS_SECTION_PROTECTION __constant_cpu_to_le32(0xC000004E)
  316 +#define STATUS_EAS_NOT_SUPPORTED __constant_cpu_to_le32(0xC000004F)
  317 +#define STATUS_EA_TOO_LARGE __constant_cpu_to_le32(0xC0000050)
  318 +#define STATUS_NONEXISTENT_EA_ENTRY __constant_cpu_to_le32(0xC0000051)
  319 +#define STATUS_NO_EAS_ON_FILE __constant_cpu_to_le32(0xC0000052)
  320 +#define STATUS_EA_CORRUPT_ERROR __constant_cpu_to_le32(0xC0000053)
  321 +#define STATUS_FILE_LOCK_CONFLICT __constant_cpu_to_le32(0xC0000054)
  322 +#define STATUS_LOCK_NOT_GRANTED __constant_cpu_to_le32(0xC0000055)
  323 +#define STATUS_DELETE_PENDING __constant_cpu_to_le32(0xC0000056)
  324 +#define STATUS_CTL_FILE_NOT_SUPPORTED __constant_cpu_to_le32(0xC0000057)
  325 +#define STATUS_UNKNOWN_REVISION __constant_cpu_to_le32(0xC0000058)
  326 +#define STATUS_REVISION_MISMATCH __constant_cpu_to_le32(0xC0000059)
  327 +#define STATUS_INVALID_OWNER __constant_cpu_to_le32(0xC000005A)
  328 +#define STATUS_INVALID_PRIMARY_GROUP __constant_cpu_to_le32(0xC000005B)
  329 +#define STATUS_NO_IMPERSONATION_TOKEN __constant_cpu_to_le32(0xC000005C)
  330 +#define STATUS_CANT_DISABLE_MANDATORY __constant_cpu_to_le32(0xC000005D)
  331 +#define STATUS_NO_LOGON_SERVERS __constant_cpu_to_le32(0xC000005E)
  332 +#define STATUS_NO_SUCH_LOGON_SESSION __constant_cpu_to_le32(0xC000005F)
  333 +#define STATUS_NO_SUCH_PRIVILEGE __constant_cpu_to_le32(0xC0000060)
  334 +#define STATUS_PRIVILEGE_NOT_HELD __constant_cpu_to_le32(0xC0000061)
  335 +#define STATUS_INVALID_ACCOUNT_NAME __constant_cpu_to_le32(0xC0000062)
  336 +#define STATUS_USER_EXISTS __constant_cpu_to_le32(0xC0000063)
  337 +#define STATUS_NO_SUCH_USER __constant_cpu_to_le32(0xC0000064)
  338 +#define STATUS_GROUP_EXISTS __constant_cpu_to_le32(0xC0000065)
  339 +#define STATUS_NO_SUCH_GROUP __constant_cpu_to_le32(0xC0000066)
  340 +#define STATUS_MEMBER_IN_GROUP __constant_cpu_to_le32(0xC0000067)
  341 +#define STATUS_MEMBER_NOT_IN_GROUP __constant_cpu_to_le32(0xC0000068)
  342 +#define STATUS_LAST_ADMIN __constant_cpu_to_le32(0xC0000069)
  343 +#define STATUS_WRONG_PASSWORD __constant_cpu_to_le32(0xC000006A)
  344 +#define STATUS_ILL_FORMED_PASSWORD __constant_cpu_to_le32(0xC000006B)
  345 +#define STATUS_PASSWORD_RESTRICTION __constant_cpu_to_le32(0xC000006C)
  346 +#define STATUS_LOGON_FAILURE __constant_cpu_to_le32(0xC000006D)
  347 +#define STATUS_ACCOUNT_RESTRICTION __constant_cpu_to_le32(0xC000006E)
  348 +#define STATUS_INVALID_LOGON_HOURS __constant_cpu_to_le32(0xC000006F)
  349 +#define STATUS_INVALID_WORKSTATION __constant_cpu_to_le32(0xC0000070)
  350 +#define STATUS_PASSWORD_EXPIRED __constant_cpu_to_le32(0xC0000071)
  351 +#define STATUS_ACCOUNT_DISABLED __constant_cpu_to_le32(0xC0000072)
  352 +#define STATUS_NONE_MAPPED __constant_cpu_to_le32(0xC0000073)
  353 +#define STATUS_TOO_MANY_LUIDS_REQUESTED __constant_cpu_to_le32(0xC0000074)
  354 +#define STATUS_LUIDS_EXHAUSTED __constant_cpu_to_le32(0xC0000075)
  355 +#define STATUS_INVALID_SUB_AUTHORITY __constant_cpu_to_le32(0xC0000076)
  356 +#define STATUS_INVALID_ACL __constant_cpu_to_le32(0xC0000077)
  357 +#define STATUS_INVALID_SID __constant_cpu_to_le32(0xC0000078)
  358 +#define STATUS_INVALID_SECURITY_DESCR __constant_cpu_to_le32(0xC0000079)
  359 +#define STATUS_PROCEDURE_NOT_FOUND __constant_cpu_to_le32(0xC000007A)
  360 +#define STATUS_INVALID_IMAGE_FORMAT __constant_cpu_to_le32(0xC000007B)
  361 +#define STATUS_NO_TOKEN __constant_cpu_to_le32(0xC000007C)
  362 +#define STATUS_BAD_INHERITANCE_ACL __constant_cpu_to_le32(0xC000007D)
  363 +#define STATUS_RANGE_NOT_LOCKED __constant_cpu_to_le32(0xC000007E)
  364 +#define STATUS_DISK_FULL __constant_cpu_to_le32(0xC000007F)
  365 +#define STATUS_SERVER_DISABLED __constant_cpu_to_le32(0xC0000080)
  366 +#define STATUS_SERVER_NOT_DISABLED __constant_cpu_to_le32(0xC0000081)
  367 +#define STATUS_TOO_MANY_GUIDS_REQUESTED __constant_cpu_to_le32(0xC0000082)
  368 +#define STATUS_GUIDS_EXHAUSTED __constant_cpu_to_le32(0xC0000083)
  369 +#define STATUS_INVALID_ID_AUTHORITY __constant_cpu_to_le32(0xC0000084)
  370 +#define STATUS_AGENTS_EXHAUSTED __constant_cpu_to_le32(0xC0000085)
  371 +#define STATUS_INVALID_VOLUME_LABEL __constant_cpu_to_le32(0xC0000086)
  372 +#define STATUS_SECTION_NOT_EXTENDED __constant_cpu_to_le32(0xC0000087)
  373 +#define STATUS_NOT_MAPPED_DATA __constant_cpu_to_le32(0xC0000088)
  374 +#define STATUS_RESOURCE_DATA_NOT_FOUND __constant_cpu_to_le32(0xC0000089)
  375 +#define STATUS_RESOURCE_TYPE_NOT_FOUND __constant_cpu_to_le32(0xC000008A)
  376 +#define STATUS_RESOURCE_NAME_NOT_FOUND __constant_cpu_to_le32(0xC000008B)
  377 +#define STATUS_ARRAY_BOUNDS_EXCEEDED __constant_cpu_to_le32(0xC000008C)
  378 +#define STATUS_FLOAT_DENORMAL_OPERAND __constant_cpu_to_le32(0xC000008D)
  379 +#define STATUS_FLOAT_DIVIDE_BY_ZERO __constant_cpu_to_le32(0xC000008E)
  380 +#define STATUS_FLOAT_INEXACT_RESULT __constant_cpu_to_le32(0xC000008F)
  381 +#define STATUS_FLOAT_INVALID_OPERATION __constant_cpu_to_le32(0xC0000090)
  382 +#define STATUS_FLOAT_OVERFLOW __constant_cpu_to_le32(0xC0000091)
  383 +#define STATUS_FLOAT_STACK_CHECK __constant_cpu_to_le32(0xC0000092)
  384 +#define STATUS_FLOAT_UNDERFLOW __constant_cpu_to_le32(0xC0000093)
  385 +#define STATUS_INTEGER_DIVIDE_BY_ZERO __constant_cpu_to_le32(0xC0000094)
  386 +#define STATUS_INTEGER_OVERFLOW __constant_cpu_to_le32(0xC0000095)
  387 +#define STATUS_PRIVILEGED_INSTRUCTION __constant_cpu_to_le32(0xC0000096)
  388 +#define STATUS_TOO_MANY_PAGING_FILES __constant_cpu_to_le32(0xC0000097)
  389 +#define STATUS_FILE_INVALID __constant_cpu_to_le32(0xC0000098)
  390 +#define STATUS_ALLOTTED_SPACE_EXCEEDED __constant_cpu_to_le32(0xC0000099)
  391 +#define STATUS_INSUFFICIENT_RESOURCES __constant_cpu_to_le32(0xC000009A)
  392 +#define STATUS_DFS_EXIT_PATH_FOUND __constant_cpu_to_le32(0xC000009B)
  393 +#define STATUS_DEVICE_DATA_ERROR __constant_cpu_to_le32(0xC000009C)
  394 +#define STATUS_DEVICE_NOT_CONNECTED __constant_cpu_to_le32(0xC000009D)
  395 +#define STATUS_DEVICE_POWER_FAILURE __constant_cpu_to_le32(0xC000009E)
  396 +#define STATUS_FREE_VM_NOT_AT_BASE __constant_cpu_to_le32(0xC000009F)
  397 +#define STATUS_MEMORY_NOT_ALLOCATED __constant_cpu_to_le32(0xC00000A0)
  398 +#define STATUS_WORKING_SET_QUOTA __constant_cpu_to_le32(0xC00000A1)
  399 +#define STATUS_MEDIA_WRITE_PROTECTED __constant_cpu_to_le32(0xC00000A2)
  400 +#define STATUS_DEVICE_NOT_READY __constant_cpu_to_le32(0xC00000A3)
  401 +#define STATUS_INVALID_GROUP_ATTRIBUTES __constant_cpu_to_le32(0xC00000A4)
  402 +#define STATUS_BAD_IMPERSONATION_LEVEL __constant_cpu_to_le32(0xC00000A5)
  403 +#define STATUS_CANT_OPEN_ANONYMOUS __constant_cpu_to_le32(0xC00000A6)
  404 +#define STATUS_BAD_VALIDATION_CLASS __constant_cpu_to_le32(0xC00000A7)
  405 +#define STATUS_BAD_TOKEN_TYPE __constant_cpu_to_le32(0xC00000A8)
  406 +#define STATUS_BAD_MASTER_BOOT_RECORD __constant_cpu_to_le32(0xC00000A9)
  407 +#define STATUS_INSTRUCTION_MISALIGNMENT __constant_cpu_to_le32(0xC00000AA)
  408 +#define STATUS_INSTANCE_NOT_AVAILABLE __constant_cpu_to_le32(0xC00000AB)
  409 +#define STATUS_PIPE_NOT_AVAILABLE __constant_cpu_to_le32(0xC00000AC)
  410 +#define STATUS_INVALID_PIPE_STATE __constant_cpu_to_le32(0xC00000AD)
  411 +#define STATUS_PIPE_BUSY __constant_cpu_to_le32(0xC00000AE)
  412 +#define STATUS_ILLEGAL_FUNCTION __constant_cpu_to_le32(0xC00000AF)
  413 +#define STATUS_PIPE_DISCONNECTED __constant_cpu_to_le32(0xC00000B0)
  414 +#define STATUS_PIPE_CLOSING __constant_cpu_to_le32(0xC00000B1)
  415 +#define STATUS_PIPE_CONNECTED __constant_cpu_to_le32(0xC00000B2)
  416 +#define STATUS_PIPE_LISTENING __constant_cpu_to_le32(0xC00000B3)
  417 +#define STATUS_INVALID_READ_MODE __constant_cpu_to_le32(0xC00000B4)
  418 +#define STATUS_IO_TIMEOUT __constant_cpu_to_le32(0xC00000B5)
  419 +#define STATUS_FILE_FORCED_CLOSED __constant_cpu_to_le32(0xC00000B6)
  420 +#define STATUS_PROFILING_NOT_STARTED __constant_cpu_to_le32(0xC00000B7)
  421 +#define STATUS_PROFILING_NOT_STOPPED __constant_cpu_to_le32(0xC00000B8)
  422 +#define STATUS_COULD_NOT_INTERPRET __constant_cpu_to_le32(0xC00000B9)
  423 +#define STATUS_FILE_IS_A_DIRECTORY __constant_cpu_to_le32(0xC00000BA)
  424 +#define STATUS_NOT_SUPPORTED __constant_cpu_to_le32(0xC00000BB)
  425 +#define STATUS_REMOTE_NOT_LISTENING __constant_cpu_to_le32(0xC00000BC)
  426 +#define STATUS_DUPLICATE_NAME __constant_cpu_to_le32(0xC00000BD)
  427 +#define STATUS_BAD_NETWORK_PATH __constant_cpu_to_le32(0xC00000BE)
  428 +#define STATUS_NETWORK_BUSY __constant_cpu_to_le32(0xC00000BF)
  429 +#define STATUS_DEVICE_DOES_NOT_EXIST __constant_cpu_to_le32(0xC00000C0)
  430 +#define STATUS_TOO_MANY_COMMANDS __constant_cpu_to_le32(0xC00000C1)
  431 +#define STATUS_ADAPTER_HARDWARE_ERROR __constant_cpu_to_le32(0xC00000C2)
  432 +#define STATUS_INVALID_NETWORK_RESPONSE __constant_cpu_to_le32(0xC00000C3)
  433 +#define STATUS_UNEXPECTED_NETWORK_ERROR __constant_cpu_to_le32(0xC00000C4)
  434 +#define STATUS_BAD_REMOTE_ADAPTER __constant_cpu_to_le32(0xC00000C5)
  435 +#define STATUS_PRINT_QUEUE_FULL __constant_cpu_to_le32(0xC00000C6)
  436 +#define STATUS_NO_SPOOL_SPACE __constant_cpu_to_le32(0xC00000C7)
  437 +#define STATUS_PRINT_CANCELLED __constant_cpu_to_le32(0xC00000C8)
  438 +#define STATUS_NETWORK_NAME_DELETED __constant_cpu_to_le32(0xC00000C9)
  439 +#define STATUS_NETWORK_ACCESS_DENIED __constant_cpu_to_le32(0xC00000CA)
  440 +#define STATUS_BAD_DEVICE_TYPE __constant_cpu_to_le32(0xC00000CB)
  441 +#define STATUS_BAD_NETWORK_NAME __constant_cpu_to_le32(0xC00000CC)
  442 +#define STATUS_TOO_MANY_NAMES __constant_cpu_to_le32(0xC00000CD)
  443 +#define STATUS_TOO_MANY_SESSIONS __constant_cpu_to_le32(0xC00000CE)
  444 +#define STATUS_SHARING_PAUSED __constant_cpu_to_le32(0xC00000CF)
  445 +#define STATUS_REQUEST_NOT_ACCEPTED __constant_cpu_to_le32(0xC00000D0)
  446 +#define STATUS_REDIRECTOR_PAUSED __constant_cpu_to_le32(0xC00000D1)
  447 +#define STATUS_NET_WRITE_FAULT __constant_cpu_to_le32(0xC00000D2)
  448 +#define STATUS_PROFILING_AT_LIMIT __constant_cpu_to_le32(0xC00000D3)
  449 +#define STATUS_NOT_SAME_DEVICE __constant_cpu_to_le32(0xC00000D4)
  450 +#define STATUS_FILE_RENAMED __constant_cpu_to_le32(0xC00000D5)
  451 +#define STATUS_VIRTUAL_CIRCUIT_CLOSED __constant_cpu_to_le32(0xC00000D6)
  452 +#define STATUS_NO_SECURITY_ON_OBJECT __constant_cpu_to_le32(0xC00000D7)
  453 +#define STATUS_CANT_WAIT __constant_cpu_to_le32(0xC00000D8)
  454 +#define STATUS_PIPE_EMPTY __constant_cpu_to_le32(0xC00000D9)
  455 +#define STATUS_CANT_ACCESS_DOMAIN_INFO __constant_cpu_to_le32(0xC00000DA)
  456 +#define STATUS_CANT_TERMINATE_SELF __constant_cpu_to_le32(0xC00000DB)
  457 +#define STATUS_INVALID_SERVER_STATE __constant_cpu_to_le32(0xC00000DC)
  458 +#define STATUS_INVALID_DOMAIN_STATE __constant_cpu_to_le32(0xC00000DD)
  459 +#define STATUS_INVALID_DOMAIN_ROLE __constant_cpu_to_le32(0xC00000DE)
  460 +#define STATUS_NO_SUCH_DOMAIN __constant_cpu_to_le32(0xC00000DF)
  461 +#define STATUS_DOMAIN_EXISTS __constant_cpu_to_le32(0xC00000E0)
  462 +#define STATUS_DOMAIN_LIMIT_EXCEEDED __constant_cpu_to_le32(0xC00000E1)
  463 +#define STATUS_OPLOCK_NOT_GRANTED __constant_cpu_to_le32(0xC00000E2)
  464 +#define STATUS_INVALID_OPLOCK_PROTOCOL __constant_cpu_to_le32(0xC00000E3)
  465 +#define STATUS_INTERNAL_DB_CORRUPTION __constant_cpu_to_le32(0xC00000E4)
  466 +#define STATUS_INTERNAL_ERROR __constant_cpu_to_le32(0xC00000E5)
  467 +#define STATUS_GENERIC_NOT_MAPPED __constant_cpu_to_le32(0xC00000E6)
  468 +#define STATUS_BAD_DESCRIPTOR_FORMAT __constant_cpu_to_le32(0xC00000E7)
  469 +#define STATUS_INVALID_USER_BUFFER __constant_cpu_to_le32(0xC00000E8)
  470 +#define STATUS_UNEXPECTED_IO_ERROR __constant_cpu_to_le32(0xC00000E9)
  471 +#define STATUS_UNEXPECTED_MM_CREATE_ERR __constant_cpu_to_le32(0xC00000EA)
  472 +#define STATUS_UNEXPECTED_MM_MAP_ERROR __constant_cpu_to_le32(0xC00000EB)
  473 +#define STATUS_UNEXPECTED_MM_EXTEND_ERR __constant_cpu_to_le32(0xC00000EC)
  474 +#define STATUS_NOT_LOGON_PROCESS __constant_cpu_to_le32(0xC00000ED)
  475 +#define STATUS_LOGON_SESSION_EXISTS __constant_cpu_to_le32(0xC00000EE)
  476 +#define STATUS_INVALID_PARAMETER_1 __constant_cpu_to_le32(0xC00000EF)
  477 +#define STATUS_INVALID_PARAMETER_2 __constant_cpu_to_le32(0xC00000F0)
  478 +#define STATUS_INVALID_PARAMETER_3 __constant_cpu_to_le32(0xC00000F1)
  479 +#define STATUS_INVALID_PARAMETER_4 __constant_cpu_to_le32(0xC00000F2)
  480 +#define STATUS_INVALID_PARAMETER_5 __constant_cpu_to_le32(0xC00000F3)
  481 +#define STATUS_INVALID_PARAMETER_6 __constant_cpu_to_le32(0xC00000F4)
  482 +#define STATUS_INVALID_PARAMETER_7 __constant_cpu_to_le32(0xC00000F5)
  483 +#define STATUS_INVALID_PARAMETER_8 __constant_cpu_to_le32(0xC00000F6)
  484 +#define STATUS_INVALID_PARAMETER_9 __constant_cpu_to_le32(0xC00000F7)
  485 +#define STATUS_INVALID_PARAMETER_10 __constant_cpu_to_le32(0xC00000F8)
  486 +#define STATUS_INVALID_PARAMETER_11 __constant_cpu_to_le32(0xC00000F9)
  487 +#define STATUS_INVALID_PARAMETER_12 __constant_cpu_to_le32(0xC00000FA)
  488 +#define STATUS_REDIRECTOR_NOT_STARTED __constant_cpu_to_le32(0xC00000FB)
  489 +#define STATUS_REDIRECTOR_STARTED __constant_cpu_to_le32(0xC00000FC)
  490 +#define STATUS_STACK_OVERFLOW __constant_cpu_to_le32(0xC00000FD)
  491 +#define STATUS_NO_SUCH_PACKAGE __constant_cpu_to_le32(0xC00000FE)
  492 +#define STATUS_BAD_FUNCTION_TABLE __constant_cpu_to_le32(0xC00000FF)
  493 +#define STATUS_VARIABLE_NOT_FOUND __constant_cpu_to_le32(0xC0000100)
  494 +#define STATUS_DIRECTORY_NOT_EMPTY __constant_cpu_to_le32(0xC0000101)
  495 +#define STATUS_FILE_CORRUPT_ERROR __constant_cpu_to_le32(0xC0000102)
  496 +#define STATUS_NOT_A_DIRECTORY __constant_cpu_to_le32(0xC0000103)
  497 +#define STATUS_BAD_LOGON_SESSION_STATE __constant_cpu_to_le32(0xC0000104)
  498 +#define STATUS_LOGON_SESSION_COLLISION __constant_cpu_to_le32(0xC0000105)
  499 +#define STATUS_NAME_TOO_LONG __constant_cpu_to_le32(0xC0000106)
  500 +#define STATUS_FILES_OPEN __constant_cpu_to_le32(0xC0000107)
  501 +#define STATUS_CONNECTION_IN_USE __constant_cpu_to_le32(0xC0000108)
  502 +#define STATUS_MESSAGE_NOT_FOUND __constant_cpu_to_le32(0xC0000109)
  503 +#define STATUS_PROCESS_IS_TERMINATING __constant_cpu_to_le32(0xC000010A)
  504 +#define STATUS_INVALID_LOGON_TYPE __constant_cpu_to_le32(0xC000010B)
  505 +#define STATUS_NO_GUID_TRANSLATION __constant_cpu_to_le32(0xC000010C)
  506 +#define STATUS_CANNOT_IMPERSONATE __constant_cpu_to_le32(0xC000010D)
  507 +#define STATUS_IMAGE_ALREADY_LOADED __constant_cpu_to_le32(0xC000010E)
  508 +#define STATUS_ABIOS_NOT_PRESENT __constant_cpu_to_le32(0xC000010F)
  509 +#define STATUS_ABIOS_LID_NOT_EXIST __constant_cpu_to_le32(0xC0000110)
  510 +#define STATUS_ABIOS_LID_ALREADY_OWNED __constant_cpu_to_le32(0xC0000111)
  511 +#define STATUS_ABIOS_NOT_LID_OWNER __constant_cpu_to_le32(0xC0000112)
  512 +#define STATUS_ABIOS_INVALID_COMMAND __constant_cpu_to_le32(0xC0000113)
  513 +#define STATUS_ABIOS_INVALID_LID __constant_cpu_to_le32(0xC0000114)
  514 +#define STATUS_ABIOS_SELECTOR_NOT_AVAILABLE __constant_cpu_to_le32(0xC0000115)
  515 +#define STATUS_ABIOS_INVALID_SELECTOR __constant_cpu_to_le32(0xC0000116)
  516 +#define STATUS_NO_LDT __constant_cpu_to_le32(0xC0000117)
  517 +#define STATUS_INVALID_LDT_SIZE __constant_cpu_to_le32(0xC0000118)
  518 +#define STATUS_INVALID_LDT_OFFSET __constant_cpu_to_le32(0xC0000119)
  519 +#define STATUS_INVALID_LDT_DESCRIPTOR __constant_cpu_to_le32(0xC000011A)
  520 +#define STATUS_INVALID_IMAGE_NE_FORMAT __constant_cpu_to_le32(0xC000011B)
  521 +#define STATUS_RXACT_INVALID_STATE __constant_cpu_to_le32(0xC000011C)
  522 +#define STATUS_RXACT_COMMIT_FAILURE __constant_cpu_to_le32(0xC000011D)
  523 +#define STATUS_MAPPED_FILE_SIZE_ZERO __constant_cpu_to_le32(0xC000011E)
  524 +#define STATUS_TOO_MANY_OPENED_FILES __constant_cpu_to_le32(0xC000011F)
  525 +#define STATUS_CANCELLED __constant_cpu_to_le32(0xC0000120)
  526 +#define STATUS_CANNOT_DELETE __constant_cpu_to_le32(0xC0000121)
  527 +#define STATUS_INVALID_COMPUTER_NAME __constant_cpu_to_le32(0xC0000122)
  528 +#define STATUS_FILE_DELETED __constant_cpu_to_le32(0xC0000123)
  529 +#define STATUS_SPECIAL_ACCOUNT __constant_cpu_to_le32(0xC0000124)
  530 +#define STATUS_SPECIAL_GROUP __constant_cpu_to_le32(0xC0000125)
  531 +#define STATUS_SPECIAL_USER __constant_cpu_to_le32(0xC0000126)
  532 +#define STATUS_MEMBERS_PRIMARY_GROUP __constant_cpu_to_le32(0xC0000127)
  533 +#define STATUS_FILE_CLOSED __constant_cpu_to_le32(0xC0000128)
  534 +#define STATUS_TOO_MANY_THREADS __constant_cpu_to_le32(0xC0000129)
  535 +#define STATUS_THREAD_NOT_IN_PROCESS __constant_cpu_to_le32(0xC000012A)
  536 +#define STATUS_TOKEN_ALREADY_IN_USE __constant_cpu_to_le32(0xC000012B)
  537 +#define STATUS_PAGEFILE_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC000012C)
  538 +#define STATUS_COMMITMENT_LIMIT __constant_cpu_to_le32(0xC000012D)
  539 +#define STATUS_INVALID_IMAGE_LE_FORMAT __constant_cpu_to_le32(0xC000012E)
  540 +#define STATUS_INVALID_IMAGE_NOT_MZ __constant_cpu_to_le32(0xC000012F)
  541 +#define STATUS_INVALID_IMAGE_PROTECT __constant_cpu_to_le32(0xC0000130)
  542 +#define STATUS_INVALID_IMAGE_WIN_16 __constant_cpu_to_le32(0xC0000131)
  543 +#define STATUS_LOGON_SERVER_CONFLICT __constant_cpu_to_le32(0xC0000132)
  544 +#define STATUS_TIME_DIFFERENCE_AT_DC __constant_cpu_to_le32(0xC0000133)
  545 +#define STATUS_SYNCHRONIZATION_REQUIRED __constant_cpu_to_le32(0xC0000134)
  546 +#define STATUS_DLL_NOT_FOUND __constant_cpu_to_le32(0xC0000135)
  547 +#define STATUS_OPEN_FAILED __constant_cpu_to_le32(0xC0000136)
  548 +#define STATUS_IO_PRIVILEGE_FAILED __constant_cpu_to_le32(0xC0000137)
  549 +#define STATUS_ORDINAL_NOT_FOUND __constant_cpu_to_le32(0xC0000138)
  550 +#define STATUS_ENTRYPOINT_NOT_FOUND __constant_cpu_to_le32(0xC0000139)
  551 +#define STATUS_CONTROL_C_EXIT __constant_cpu_to_le32(0xC000013A)
  552 +#define STATUS_LOCAL_DISCONNECT __constant_cpu_to_le32(0xC000013B)
  553 +#define STATUS_REMOTE_DISCONNECT __constant_cpu_to_le32(0xC000013C)
  554 +#define STATUS_REMOTE_RESOURCES __constant_cpu_to_le32(0xC000013D)
  555 +#define STATUS_LINK_FAILED __constant_cpu_to_le32(0xC000013E)
  556 +#define STATUS_LINK_TIMEOUT __constant_cpu_to_le32(0xC000013F)
  557 +#define STATUS_INVALID_CONNECTION __constant_cpu_to_le32(0xC0000140)
  558 +#define STATUS_INVALID_ADDRESS __constant_cpu_to_le32(0xC0000141)
  559 +#define STATUS_DLL_INIT_FAILED __constant_cpu_to_le32(0xC0000142)
  560 +#define STATUS_MISSING_SYSTEMFILE __constant_cpu_to_le32(0xC0000143)
  561 +#define STATUS_UNHANDLED_EXCEPTION __constant_cpu_to_le32(0xC0000144)
  562 +#define STATUS_APP_INIT_FAILURE __constant_cpu_to_le32(0xC0000145)
  563 +#define STATUS_PAGEFILE_CREATE_FAILED __constant_cpu_to_le32(0xC0000146)
  564 +#define STATUS_NO_PAGEFILE __constant_cpu_to_le32(0xC0000147)
  565 +#define STATUS_INVALID_LEVEL __constant_cpu_to_le32(0xC0000148)
  566 +#define STATUS_WRONG_PASSWORD_CORE __constant_cpu_to_le32(0xC0000149)
  567 +#define STATUS_ILLEGAL_FLOAT_CONTEXT __constant_cpu_to_le32(0xC000014A)
  568 +#define STATUS_PIPE_BROKEN __constant_cpu_to_le32(0xC000014B)
  569 +#define STATUS_REGISTRY_CORRUPT __constant_cpu_to_le32(0xC000014C)
  570 +#define STATUS_REGISTRY_IO_FAILED __constant_cpu_to_le32(0xC000014D)
  571 +#define STATUS_NO_EVENT_PAIR __constant_cpu_to_le32(0xC000014E)
  572 +#define STATUS_UNRECOGNIZED_VOLUME __constant_cpu_to_le32(0xC000014F)
  573 +#define STATUS_SERIAL_NO_DEVICE_INITED __constant_cpu_to_le32(0xC0000150)
  574 +#define STATUS_NO_SUCH_ALIAS __constant_cpu_to_le32(0xC0000151)
  575 +#define STATUS_MEMBER_NOT_IN_ALIAS __constant_cpu_to_le32(0xC0000152)
  576 +#define STATUS_MEMBER_IN_ALIAS __constant_cpu_to_le32(0xC0000153)
  577 +#define STATUS_ALIAS_EXISTS __constant_cpu_to_le32(0xC0000154)
  578 +#define STATUS_LOGON_NOT_GRANTED __constant_cpu_to_le32(0xC0000155)
  579 +#define STATUS_TOO_MANY_SECRETS __constant_cpu_to_le32(0xC0000156)
  580 +#define STATUS_SECRET_TOO_LONG __constant_cpu_to_le32(0xC0000157)
  581 +#define STATUS_INTERNAL_DB_ERROR __constant_cpu_to_le32(0xC0000158)
  582 +#define STATUS_FULLSCREEN_MODE __constant_cpu_to_le32(0xC0000159)
  583 +#define STATUS_TOO_MANY_CONTEXT_IDS __constant_cpu_to_le32(0xC000015A)
  584 +#define STATUS_LOGON_TYPE_NOT_GRANTED __constant_cpu_to_le32(0xC000015B)
  585 +#define STATUS_NOT_REGISTRY_FILE __constant_cpu_to_le32(0xC000015C)
  586 +#define STATUS_NT_CROSS_ENCRYPTION_REQUIRED __constant_cpu_to_le32(0xC000015D)
  587 +#define STATUS_DOMAIN_CTRLR_CONFIG_ERROR __constant_cpu_to_le32(0xC000015E)
  588 +#define STATUS_FT_MISSING_MEMBER __constant_cpu_to_le32(0xC000015F)
  589 +#define STATUS_ILL_FORMED_SERVICE_ENTRY __constant_cpu_to_le32(0xC0000160)
  590 +#define STATUS_ILLEGAL_CHARACTER __constant_cpu_to_le32(0xC0000161)
  591 +#define STATUS_UNMAPPABLE_CHARACTER __constant_cpu_to_le32(0xC0000162)
  592 +#define STATUS_UNDEFINED_CHARACTER __constant_cpu_to_le32(0xC0000163)
  593 +#define STATUS_FLOPPY_VOLUME __constant_cpu_to_le32(0xC0000164)
  594 +#define STATUS_FLOPPY_ID_MARK_NOT_FOUND __constant_cpu_to_le32(0xC0000165)
  595 +#define STATUS_FLOPPY_WRONG_CYLINDER __constant_cpu_to_le32(0xC0000166)
  596 +#define STATUS_FLOPPY_UNKNOWN_ERROR __constant_cpu_to_le32(0xC0000167)
  597 +#define STATUS_FLOPPY_BAD_REGISTERS __constant_cpu_to_le32(0xC0000168)
  598 +#define STATUS_DISK_RECALIBRATE_FAILED __constant_cpu_to_le32(0xC0000169)
  599 +#define STATUS_DISK_OPERATION_FAILED __constant_cpu_to_le32(0xC000016A)
  600 +#define STATUS_DISK_RESET_FAILED __constant_cpu_to_le32(0xC000016B)
  601 +#define STATUS_SHARED_IRQ_BUSY __constant_cpu_to_le32(0xC000016C)
  602 +#define STATUS_FT_ORPHANING __constant_cpu_to_le32(0xC000016D)
  603 +#define STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT __constant_cpu_to_le32(0xC000016E)
  604 +#define STATUS_PARTITION_FAILURE __constant_cpu_to_le32(0xC0000172)
  605 +#define STATUS_INVALID_BLOCK_LENGTH __constant_cpu_to_le32(0xC0000173)
  606 +#define STATUS_DEVICE_NOT_PARTITIONED __constant_cpu_to_le32(0xC0000174)
  607 +#define STATUS_UNABLE_TO_LOCK_MEDIA __constant_cpu_to_le32(0xC0000175)
  608 +#define STATUS_UNABLE_TO_UNLOAD_MEDIA __constant_cpu_to_le32(0xC0000176)
  609 +#define STATUS_EOM_OVERFLOW __constant_cpu_to_le32(0xC0000177)
  610 +#define STATUS_NO_MEDIA __constant_cpu_to_le32(0xC0000178)
  611 +#define STATUS_NO_SUCH_MEMBER __constant_cpu_to_le32(0xC000017A)
  612 +#define STATUS_INVALID_MEMBER __constant_cpu_to_le32(0xC000017B)
  613 +#define STATUS_KEY_DELETED __constant_cpu_to_le32(0xC000017C)
  614 +#define STATUS_NO_LOG_SPACE __constant_cpu_to_le32(0xC000017D)
  615 +#define STATUS_TOO_MANY_SIDS __constant_cpu_to_le32(0xC000017E)
  616 +#define STATUS_LM_CROSS_ENCRYPTION_REQUIRED __constant_cpu_to_le32(0xC000017F)
  617 +#define STATUS_KEY_HAS_CHILDREN __constant_cpu_to_le32(0xC0000180)
  618 +#define STATUS_CHILD_MUST_BE_VOLATILE __constant_cpu_to_le32(0xC0000181)
  619 +#define STATUS_DEVICE_CONFIGURATION_ERROR __constant_cpu_to_le32(0xC0000182)
  620 +#define STATUS_DRIVER_INTERNAL_ERROR __constant_cpu_to_le32(0xC0000183)
  621 +#define STATUS_INVALID_DEVICE_STATE __constant_cpu_to_le32(0xC0000184)
  622 +#define STATUS_IO_DEVICE_ERROR __constant_cpu_to_le32(0xC0000185)
  623 +#define STATUS_DEVICE_PROTOCOL_ERROR __constant_cpu_to_le32(0xC0000186)
  624 +#define STATUS_BACKUP_CONTROLLER __constant_cpu_to_le32(0xC0000187)
  625 +#define STATUS_LOG_FILE_FULL __constant_cpu_to_le32(0xC0000188)
  626 +#define STATUS_TOO_LATE __constant_cpu_to_le32(0xC0000189)
  627 +#define STATUS_NO_TRUST_LSA_SECRET __constant_cpu_to_le32(0xC000018A)
  628 +#define STATUS_NO_TRUST_SAM_ACCOUNT __constant_cpu_to_le32(0xC000018B)
  629 +#define STATUS_TRUSTED_DOMAIN_FAILURE __constant_cpu_to_le32(0xC000018C)
  630 +#define STATUS_TRUSTED_RELATIONSHIP_FAILURE __constant_cpu_to_le32(0xC000018D)
  631 +#define STATUS_EVENTLOG_FILE_CORRUPT __constant_cpu_to_le32(0xC000018E)
  632 +#define STATUS_EVENTLOG_CANT_START __constant_cpu_to_le32(0xC000018F)
  633 +#define STATUS_TRUST_FAILURE __constant_cpu_to_le32(0xC0000190)
  634 +#define STATUS_MUTANT_LIMIT_EXCEEDED __constant_cpu_to_le32(0xC0000191)
  635 +#define STATUS_NETLOGON_NOT_STARTED __constant_cpu_to_le32(0xC0000192)
  636 +#define STATUS_ACCOUNT_EXPIRED __constant_cpu_to_le32(0xC0000193)
  637 +#define STATUS_POSSIBLE_DEADLOCK __constant_cpu_to_le32(0xC0000194)
  638 +#define STATUS_NETWORK_CREDENTIAL_CONFLICT __constant_cpu_to_le32(0xC0000195)
  639 +#define STATUS_REMOTE_SESSION_LIMIT __constant_cpu_to_le32(0xC0000196)
  640 +#define STATUS_EVENTLOG_FILE_CHANGED __constant_cpu_to_le32(0xC0000197)
  641 +#define STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT __constant_cpu_to_le32(0xC0000198)
  642 +#define STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT __constant_cpu_to_le32(0xC0000199)
  643 +#define STATUS_NOLOGON_SERVER_TRUST_ACCOUNT __constant_cpu_to_le32(0xC000019A)
  644 +#define STATUS_DOMAIN_TRUST_INCONSISTENT __constant_cpu_to_le32(0xC000019B)
  645 +#define STATUS_FS_DRIVER_REQUIRED __constant_cpu_to_le32(0xC000019C)
  646 +#define STATUS_IMAGE_ALREADY_LOADED_AS_DLL __constant_cpu_to_le32(0xC000019D)
  647 +#define STATUS_NETWORK_OPEN_RESTRICTION __constant_cpu_to_le32(0xC0000201)
  648 +#define STATUS_NO_USER_SESSION_KEY __constant_cpu_to_le32(0xC0000202)
  649 +#define STATUS_USER_SESSION_DELETED __constant_cpu_to_le32(0xC0000203)
  650 +#define STATUS_RESOURCE_LANG_NOT_FOUND __constant_cpu_to_le32(0xC0000204)
  651 +#define STATUS_INSUFF_SERVER_RESOURCES __constant_cpu_to_le32(0xC0000205)
  652 +#define STATUS_INVALID_BUFFER_SIZE __constant_cpu_to_le32(0xC0000206)
  653 +#define STATUS_INVALID_ADDRESS_COMPONENT __constant_cpu_to_le32(0xC0000207)
  654 +#define STATUS_INVALID_ADDRESS_WILDCARD __constant_cpu_to_le32(0xC0000208)
  655 +#define STATUS_TOO_MANY_ADDRESSES __constant_cpu_to_le32(0xC0000209)
  656 +#define STATUS_ADDRESS_ALREADY_EXISTS __constant_cpu_to_le32(0xC000020A)
  657 +#define STATUS_ADDRESS_CLOSED __constant_cpu_to_le32(0xC000020B)
  658 +#define STATUS_CONNECTION_DISCONNECTED __constant_cpu_to_le32(0xC000020C)
  659 +#define STATUS_CONNECTION_RESET __constant_cpu_to_le32(0xC000020D)
  660 +#define STATUS_TOO_MANY_NODES __constant_cpu_to_le32(0xC000020E)
  661 +#define STATUS_TRANSACTION_ABORTED __constant_cpu_to_le32(0xC000020F)
  662 +#define STATUS_TRANSACTION_TIMED_OUT __constant_cpu_to_le32(0xC0000210)
  663 +#define STATUS_TRANSACTION_NO_RELEASE __constant_cpu_to_le32(0xC0000211)
  664 +#define STATUS_TRANSACTION_NO_MATCH __constant_cpu_to_le32(0xC0000212)
  665 +#define STATUS_TRANSACTION_RESPONDED __constant_cpu_to_le32(0xC0000213)
  666 +#define STATUS_TRANSACTION_INVALID_ID __constant_cpu_to_le32(0xC0000214)
  667 +#define STATUS_TRANSACTION_INVALID_TYPE __constant_cpu_to_le32(0xC0000215)
  668 +#define STATUS_NOT_SERVER_SESSION __constant_cpu_to_le32(0xC0000216)
  669 +#define STATUS_NOT_CLIENT_SESSION __constant_cpu_to_le32(0xC0000217)
  670 +#define STATUS_CANNOT_LOAD_REGISTRY_FILE __constant_cpu_to_le32(0xC0000218)
  671 +#define STATUS_DEBUG_ATTACH_FAILED __constant_cpu_to_le32(0xC0000219)
  672 +#define STATUS_SYSTEM_PROCESS_TERMINATED __constant_cpu_to_le32(0xC000021A)
  673 +#define STATUS_DATA_NOT_ACCEPTED __constant_cpu_to_le32(0xC000021B)
  674 +#define STATUS_NO_BROWSER_SERVERS_FOUND __constant_cpu_to_le32(0xC000021C)
  675 +#define STATUS_VDM_HARD_ERROR __constant_cpu_to_le32(0xC000021D)
  676 +#define STATUS_DRIVER_CANCEL_TIMEOUT __constant_cpu_to_le32(0xC000021E)
  677 +#define STATUS_REPLY_MESSAGE_MISMATCH __constant_cpu_to_le32(0xC000021F)
  678 +#define STATUS_MAPPED_ALIGNMENT __constant_cpu_to_le32(0xC0000220)
  679 +#define STATUS_IMAGE_CHECKSUM_MISMATCH __constant_cpu_to_le32(0xC0000221)
  680 +#define STATUS_LOST_WRITEBEHIND_DATA __constant_cpu_to_le32(0xC0000222)
  681 +#define STATUS_CLIENT_SERVER_PARAMETERS_INVALID __constant_cpu_to_le32(0xC0000223)
  682 +#define STATUS_PASSWORD_MUST_CHANGE __constant_cpu_to_le32(0xC0000224)
  683 +#define STATUS_NOT_FOUND __constant_cpu_to_le32(0xC0000225)
  684 +#define STATUS_NOT_TINY_STREAM __constant_cpu_to_le32(0xC0000226)
  685 +#define STATUS_RECOVERY_FAILURE __constant_cpu_to_le32(0xC0000227)
  686 +#define STATUS_STACK_OVERFLOW_READ __constant_cpu_to_le32(0xC0000228)
  687 +#define STATUS_FAIL_CHECK __constant_cpu_to_le32(0xC0000229)
  688 +#define STATUS_DUPLICATE_OBJECTID __constant_cpu_to_le32(0xC000022A)
  689 +#define STATUS_OBJECTID_EXISTS __constant_cpu_to_le32(0xC000022B)
  690 +#define STATUS_CONVERT_TO_LARGE __constant_cpu_to_le32(0xC000022C)
  691 +#define STATUS_RETRY __constant_cpu_to_le32(0xC000022D)
  692 +#define STATUS_FOUND_OUT_OF_SCOPE __constant_cpu_to_le32(0xC000022E)
  693 +#define STATUS_ALLOCATE_BUCKET __constant_cpu_to_le32(0xC000022F)
  694 +#define STATUS_PROPSET_NOT_FOUND __constant_cpu_to_le32(0xC0000230)
  695 +#define STATUS_MARSHALL_OVERFLOW __constant_cpu_to_le32(0xC0000231)
  696 +#define STATUS_INVALID_VARIANT __constant_cpu_to_le32(0xC0000232)
  697 +#define STATUS_DOMAIN_CONTROLLER_NOT_FOUND __constant_cpu_to_le32(0xC0000233)
  698 +#define STATUS_ACCOUNT_LOCKED_OUT __constant_cpu_to_le32(0xC0000234)
  699 +#define STATUS_HANDLE_NOT_CLOSABLE __constant_cpu_to_le32(0xC0000235)
  700 +#define STATUS_CONNECTION_REFUSED __constant_cpu_to_le32(0xC0000236)
  701 +#define STATUS_GRACEFUL_DISCONNECT __constant_cpu_to_le32(0xC0000237)
  702 +#define STATUS_ADDRESS_ALREADY_ASSOCIATED __constant_cpu_to_le32(0xC0000238)
  703 +#define STATUS_ADDRESS_NOT_ASSOCIATED __constant_cpu_to_le32(0xC0000239)
  704 +#define STATUS_CONNECTION_INVALID __constant_cpu_to_le32(0xC000023A)
  705 +#define STATUS_CONNECTION_ACTIVE __constant_cpu_to_le32(0xC000023B)
  706 +#define STATUS_NETWORK_UNREACHABLE __constant_cpu_to_le32(0xC000023C)
  707 +#define STATUS_HOST_UNREACHABLE __constant_cpu_to_le32(0xC000023D)
  708 +#define STATUS_PROTOCOL_UNREACHABLE __constant_cpu_to_le32(0xC000023E)
  709 +#define STATUS_PORT_UNREACHABLE __constant_cpu_to_le32(0xC000023F)
  710 +#define STATUS_REQUEST_ABORTED __constant_cpu_to_le32(0xC0000240)
  711 +#define STATUS_CONNECTION_ABORTED __constant_cpu_to_le32(0xC0000241)
  712 +#define STATUS_BAD_COMPRESSION_BUFFER __constant_cpu_to_le32(0xC0000242)
  713 +#define STATUS_USER_MAPPED_FILE __constant_cpu_to_le32(0xC0000243)
  714 +#define STATUS_AUDIT_FAILED __constant_cpu_to_le32(0xC0000244)
  715 +#define STATUS_TIMER_RESOLUTION_NOT_SET __constant_cpu_to_le32(0xC0000245)
  716 +#define STATUS_CONNECTION_COUNT_LIMIT __constant_cpu_to_le32(0xC0000246)
  717 +#define STATUS_LOGIN_TIME_RESTRICTION __constant_cpu_to_le32(0xC0000247)
  718 +#define STATUS_LOGIN_WKSTA_RESTRICTION __constant_cpu_to_le32(0xC0000248)
  719 +#define STATUS_IMAGE_MP_UP_MISMATCH __constant_cpu_to_le32(0xC0000249)
  720 +#define STATUS_INSUFFICIENT_LOGON_INFO __constant_cpu_to_le32(0xC0000250)
  721 +#define STATUS_BAD_DLL_ENTRYPOINT __constant_cpu_to_le32(0xC0000251)
  722 +#define STATUS_BAD_SERVICE_ENTRYPOINT __constant_cpu_to_le32(0xC0000252)
  723 +#define STATUS_LPC_REPLY_LOST __constant_cpu_to_le32(0xC0000253)
  724 +#define STATUS_IP_ADDRESS_CONFLICT1 __constant_cpu_to_le32(0xC0000254)
  725 +#define STATUS_IP_ADDRESS_CONFLICT2 __constant_cpu_to_le32(0xC0000255)
  726 +#define STATUS_REGISTRY_QUOTA_LIMIT __constant_cpu_to_le32(0xC0000256)
  727 +#define STATUS_PATH_NOT_COVERED __constant_cpu_to_le32(0xC0000257)
  728 +#define STATUS_NO_CALLBACK_ACTIVE __constant_cpu_to_le32(0xC0000258)
  729 +#define STATUS_LICENSE_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000259)
  730 +#define STATUS_PWD_TOO_SHORT __constant_cpu_to_le32(0xC000025A)
  731 +#define STATUS_PWD_TOO_RECENT __constant_cpu_to_le32(0xC000025B)
  732 +#define STATUS_PWD_HISTORY_CONFLICT __constant_cpu_to_le32(0xC000025C)
  733 +#define STATUS_PLUGPLAY_NO_DEVICE __constant_cpu_to_le32(0xC000025E)
  734 +#define STATUS_UNSUPPORTED_COMPRESSION __constant_cpu_to_le32(0xC000025F)
  735 +#define STATUS_INVALID_HW_PROFILE __constant_cpu_to_le32(0xC0000260)
  736 +#define STATUS_INVALID_PLUGPLAY_DEVICE_PATH __constant_cpu_to_le32(0xC0000261)
  737 +#define STATUS_DRIVER_ORDINAL_NOT_FOUND __constant_cpu_to_le32(0xC0000262)
  738 +#define STATUS_DRIVER_ENTRYPOINT_NOT_FOUND __constant_cpu_to_le32(0xC0000263)
  739 +#define STATUS_RESOURCE_NOT_OWNED __constant_cpu_to_le32(0xC0000264)
  740 +#define STATUS_TOO_MANY_LINKS __constant_cpu_to_le32(0xC0000265)
  741 +#define STATUS_QUOTA_LIST_INCONSISTENT __constant_cpu_to_le32(0xC0000266)
  742 +#define STATUS_FILE_IS_OFFLINE __constant_cpu_to_le32(0xC0000267)
  743 +#define STATUS_EVALUATION_EXPIRATION __constant_cpu_to_le32(0xC0000268)
  744 +#define STATUS_ILLEGAL_DLL_RELOCATION __constant_cpu_to_le32(0xC0000269)
  745 +#define STATUS_LICENSE_VIOLATION __constant_cpu_to_le32(0xC000026A)
  746 +#define STATUS_DLL_INIT_FAILED_LOGOFF __constant_cpu_to_le32(0xC000026B)
  747 +#define STATUS_DRIVER_UNABLE_TO_LOAD __constant_cpu_to_le32(0xC000026C)
  748 +#define STATUS_DFS_UNAVAILABLE __constant_cpu_to_le32(0xC000026D)
  749 +#define STATUS_VOLUME_DISMOUNTED __constant_cpu_to_le32(0xC000026E)
  750 +#define STATUS_WX86_INTERNAL_ERROR __constant_cpu_to_le32(0xC000026F)
  751 +#define STATUS_WX86_FLOAT_STACK_CHECK __constant_cpu_to_le32(0xC0000270)
  752 +#define STATUS_VALIDATE_CONTINUE __constant_cpu_to_le32(0xC0000271)
  753 +#define STATUS_NO_MATCH __constant_cpu_to_le32(0xC0000272)
  754 +#define STATUS_NO_MORE_MATCHES __constant_cpu_to_le32(0xC0000273)
  755 +#define STATUS_NOT_A_REPARSE_POINT __constant_cpu_to_le32(0xC0000275)
  756 +#define STATUS_IO_REPARSE_TAG_INVALID __constant_cpu_to_le32(0xC0000276)
  757 +#define STATUS_IO_REPARSE_TAG_MISMATCH __constant_cpu_to_le32(0xC0000277)
  758 +#define STATUS_IO_REPARSE_DATA_INVALID __constant_cpu_to_le32(0xC0000278)
  759 +#define STATUS_IO_REPARSE_TAG_NOT_HANDLED __constant_cpu_to_le32(0xC0000279)
  760 +#define STATUS_REPARSE_POINT_NOT_RESOLVED __constant_cpu_to_le32(0xC0000280)
  761 +#define STATUS_DIRECTORY_IS_A_REPARSE_POINT __constant_cpu_to_le32(0xC0000281)
  762 +#define STATUS_RANGE_LIST_CONFLICT __constant_cpu_to_le32(0xC0000282)
  763 +#define STATUS_SOURCE_ELEMENT_EMPTY __constant_cpu_to_le32(0xC0000283)
  764 +#define STATUS_DESTINATION_ELEMENT_FULL __constant_cpu_to_le32(0xC0000284)
  765 +#define STATUS_ILLEGAL_ELEMENT_ADDRESS __constant_cpu_to_le32(0xC0000285)
  766 +#define STATUS_MAGAZINE_NOT_PRESENT __constant_cpu_to_le32(0xC0000286)
  767 +#define STATUS_REINITIALIZATION_NEEDED __constant_cpu_to_le32(0xC0000287)
  768 +#define STATUS_ENCRYPTION_FAILED __constant_cpu_to_le32(0xC000028A)
  769 +#define STATUS_DECRYPTION_FAILED __constant_cpu_to_le32(0xC000028B)
  770 +#define STATUS_RANGE_NOT_FOUND __constant_cpu_to_le32(0xC000028C)
  771 +#define STATUS_NO_RECOVERY_POLICY __constant_cpu_to_le32(0xC000028D)
  772 +#define STATUS_NO_EFS __constant_cpu_to_le32(0xC000028E)
  773 +#define STATUS_WRONG_EFS __constant_cpu_to_le32(0xC000028F)
  774 +#define STATUS_NO_USER_KEYS __constant_cpu_to_le32(0xC0000290)
  775 +#define STATUS_FILE_NOT_ENCRYPTED __constant_cpu_to_le32(0xC0000291)
  776 +#define STATUS_NOT_EXPORT_FORMAT __constant_cpu_to_le32(0xC0000292)
  777 +#define STATUS_FILE_ENCRYPTED __constant_cpu_to_le32(0xC0000293)
  778 +#define STATUS_WMI_GUID_NOT_FOUND __constant_cpu_to_le32(0xC0000295)
  779 +#define STATUS_WMI_INSTANCE_NOT_FOUND __constant_cpu_to_le32(0xC0000296)
  780 +#define STATUS_WMI_ITEMID_NOT_FOUND __constant_cpu_to_le32(0xC0000297)
  781 +#define STATUS_WMI_TRY_AGAIN __constant_cpu_to_le32(0xC0000298)
  782 +#define STATUS_SHARED_POLICY __constant_cpu_to_le32(0xC0000299)
  783 +#define STATUS_POLICY_OBJECT_NOT_FOUND __constant_cpu_to_le32(0xC000029A)
  784 +#define STATUS_POLICY_ONLY_IN_DS __constant_cpu_to_le32(0xC000029B)
  785 +#define STATUS_VOLUME_NOT_UPGRADED __constant_cpu_to_le32(0xC000029C)
  786 +#define STATUS_REMOTE_STORAGE_NOT_ACTIVE __constant_cpu_to_le32(0xC000029D)
  787 +#define STATUS_REMOTE_STORAGE_MEDIA_ERROR __constant_cpu_to_le32(0xC000029E)
  788 +#define STATUS_NO_TRACKING_SERVICE __constant_cpu_to_le32(0xC000029F)
  789 +#define STATUS_SERVER_SID_MISMATCH __constant_cpu_to_le32(0xC00002A0)
  790 +#define STATUS_DS_NO_ATTRIBUTE_OR_VALUE __constant_cpu_to_le32(0xC00002A1)
  791 +#define STATUS_DS_INVALID_ATTRIBUTE_SYNTAX __constant_cpu_to_le32(0xC00002A2)
  792 +#define STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED __constant_cpu_to_le32(0xC00002A3)
  793 +#define STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS __constant_cpu_to_le32(0xC00002A4)
  794 +#define STATUS_DS_BUSY __constant_cpu_to_le32(0xC00002A5)
  795 +#define STATUS_DS_UNAVAILABLE __constant_cpu_to_le32(0xC00002A6)
  796 +#define STATUS_DS_NO_RIDS_ALLOCATED __constant_cpu_to_le32(0xC00002A7)
  797 +#define STATUS_DS_NO_MORE_RIDS __constant_cpu_to_le32(0xC00002A8)
  798 +#define STATUS_DS_INCORRECT_ROLE_OWNER __constant_cpu_to_le32(0xC00002A9)
  799 +#define STATUS_DS_RIDMGR_INIT_ERROR __constant_cpu_to_le32(0xC00002AA)
  800 +#define STATUS_DS_OBJ_CLASS_VIOLATION __constant_cpu_to_le32(0xC00002AB)
  801 +#define STATUS_DS_CANT_ON_NON_LEAF __constant_cpu_to_le32(0xC00002AC)
  802 +#define STATUS_DS_CANT_ON_RDN __constant_cpu_to_le32(0xC00002AD)
  803 +#define STATUS_DS_CANT_MOD_OBJ_CLASS __constant_cpu_to_le32(0xC00002AE)
  804 +#define STATUS_DS_CROSS_DOM_MOVE_FAILED __constant_cpu_to_le32(0xC00002AF)
  805 +#define STATUS_DS_GC_NOT_AVAILABLE __constant_cpu_to_le32(0xC00002B0)
  806 +#define STATUS_DIRECTORY_SERVICE_REQUIRED __constant_cpu_to_le32(0xC00002B1)
  807 +#define STATUS_REPARSE_ATTRIBUTE_CONFLICT __constant_cpu_to_le32(0xC00002B2)
  808 +#define STATUS_CANT_ENABLE_DENY_ONLY __constant_cpu_to_le32(0xC00002B3)
  809 +#define STATUS_FLOAT_MULTIPLE_FAULTS __constant_cpu_to_le32(0xC00002B4)
  810 +#define STATUS_FLOAT_MULTIPLE_TRAPS __constant_cpu_to_le32(0xC00002B5)
  811 +#define STATUS_DEVICE_REMOVED __constant_cpu_to_le32(0xC00002B6)
  812 +#define STATUS_JOURNAL_DELETE_IN_PROGRESS __constant_cpu_to_le32(0xC00002B7)
  813 +#define STATUS_JOURNAL_NOT_ACTIVE __constant_cpu_to_le32(0xC00002B8)
  814 +#define STATUS_NOINTERFACE __constant_cpu_to_le32(0xC00002B9)
  815 +#define STATUS_DS_ADMIN_LIMIT_EXCEEDED __constant_cpu_to_le32(0xC00002C1)
  816 +#define STATUS_DRIVER_FAILED_SLEEP __constant_cpu_to_le32(0xC00002C2)
  817 +#define STATUS_MUTUAL_AUTHENTICATION_FAILED __constant_cpu_to_le32(0xC00002C3)
  818 +#define STATUS_CORRUPT_SYSTEM_FILE __constant_cpu_to_le32(0xC00002C4)
  819 +#define STATUS_DATATYPE_MISALIGNMENT_ERROR __constant_cpu_to_le32(0xC00002C5)
  820 +#define STATUS_WMI_READ_ONLY __constant_cpu_to_le32(0xC00002C6)
  821 +#define STATUS_WMI_SET_FAILURE __constant_cpu_to_le32(0xC00002C7)
  822 +#define STATUS_COMMITMENT_MINIMUM __constant_cpu_to_le32(0xC00002C8)
  823 +#define STATUS_REG_NAT_CONSUMPTION __constant_cpu_to_le32(0xC00002C9)
  824 +#define STATUS_TRANSPORT_FULL __constant_cpu_to_le32(0xC00002CA)
  825 +#define STATUS_DS_SAM_INIT_FAILURE __constant_cpu_to_le32(0xC00002CB)
  826 +#define STATUS_ONLY_IF_CONNECTED __constant_cpu_to_le32(0xC00002CC)
  827 +#define STATUS_DS_SENSITIVE_GROUP_VIOLATION __constant_cpu_to_le32(0xC00002CD)
  828 +#define STATUS_PNP_RESTART_ENUMERATION __constant_cpu_to_le32(0xC00002CE)
  829 +#define STATUS_JOURNAL_ENTRY_DELETED __constant_cpu_to_le32(0xC00002CF)
  830 +#define STATUS_DS_CANT_MOD_PRIMARYGROUPID __constant_cpu_to_le32(0xC00002D0)
  831 +#define STATUS_SYSTEM_IMAGE_BAD_SIGNATURE __constant_cpu_to_le32(0xC00002D1)
  832 +#define STATUS_PNP_REBOOT_REQUIRED __constant_cpu_to_le32(0xC00002D2)
  833 +#define STATUS_POWER_STATE_INVALID __constant_cpu_to_le32(0xC00002D3)
  834 +#define STATUS_DS_INVALID_GROUP_TYPE __constant_cpu_to_le32(0xC00002D4)
  835 +#define STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN __constant_cpu_to_le32(0xC00002D5)
  836 +#define STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN __constant_cpu_to_le32(0xC00002D6)
  837 +#define STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER __constant_cpu_to_le32(0xC00002D7)
  838 +#define STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER __constant_cpu_to_le32(0xC00002D8)
  839 +#define STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER __constant_cpu_to_le32(0xC00002D9)
  840 +#define STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER __constant_cpu_to_le32(0xC00002DA)
  841 +#define STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER __constant_cpu_to_le32(0xC00002DB)
  842 +#define STATUS_DS_HAVE_PRIMARY_MEMBERS __constant_cpu_to_le32(0xC00002DC)
  843 +#define STATUS_WMI_NOT_SUPPORTED __constant_cpu_to_le32(0xC00002DD)
  844 +#define STATUS_INSUFFICIENT_POWER __constant_cpu_to_le32(0xC00002DE)
  845 +#define STATUS_SAM_NEED_BOOTKEY_PASSWORD __constant_cpu_to_le32(0xC00002DF)
  846 +#define STATUS_SAM_NEED_BOOTKEY_FLOPPY __constant_cpu_to_le32(0xC00002E0)
  847 +#define STATUS_DS_CANT_START __constant_cpu_to_le32(0xC00002E1)
  848 +#define STATUS_DS_INIT_FAILURE __constant_cpu_to_le32(0xC00002E2)
  849 +#define STATUS_SAM_INIT_FAILURE __constant_cpu_to_le32(0xC00002E3)
  850 +#define STATUS_DS_GC_REQUIRED __constant_cpu_to_le32(0xC00002E4)
  851 +#define STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY __constant_cpu_to_le32(0xC00002E5)
  852 +#define STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS __constant_cpu_to_le32(0xC00002E6)
  853 +#define STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC00002E7)
  854 +#define STATUS_MULTIPLE_FAULT_VIOLATION __constant_cpu_to_le32(0xC00002E8)
  855 +#define STATUS_CURRENT_DOMAIN_NOT_ALLOWED __constant_cpu_to_le32(0xC00002E9)
  856 +#define STATUS_CANNOT_MAKE __constant_cpu_to_le32(0xC00002EA)
  857 +#define STATUS_SYSTEM_SHUTDOWN __constant_cpu_to_le32(0xC00002EB)
  858 +#define STATUS_DS_INIT_FAILURE_CONSOLE __constant_cpu_to_le32(0xC00002EC)
  859 +#define STATUS_DS_SAM_INIT_FAILURE_CONSOLE __constant_cpu_to_le32(0xC00002ED)
  860 +#define STATUS_UNFINISHED_CONTEXT_DELETED __constant_cpu_to_le32(0xC00002EE)
  861 +#define STATUS_NO_TGT_REPLY __constant_cpu_to_le32(0xC00002EF)
  862 +#define STATUS_OBJECTID_NOT_FOUND __constant_cpu_to_le32(0xC00002F0)
  863 +#define STATUS_NO_IP_ADDRESSES __constant_cpu_to_le32(0xC00002F1)
  864 +#define STATUS_WRONG_CREDENTIAL_HANDLE __constant_cpu_to_le32(0xC00002F2)
  865 +#define STATUS_CRYPTO_SYSTEM_INVALID __constant_cpu_to_le32(0xC00002F3)
  866 +#define STATUS_MAX_REFERRALS_EXCEEDED __constant_cpu_to_le32(0xC00002F4)
  867 +#define STATUS_MUST_BE_KDC __constant_cpu_to_le32(0xC00002F5)
  868 +#define STATUS_STRONG_CRYPTO_NOT_SUPPORTED __constant_cpu_to_le32(0xC00002F6)
  869 +#define STATUS_TOO_MANY_PRINCIPALS __constant_cpu_to_le32(0xC00002F7)
  870 +#define STATUS_NO_PA_DATA __constant_cpu_to_le32(0xC00002F8)
  871 +#define STATUS_PKINIT_NAME_MISMATCH __constant_cpu_to_le32(0xC00002F9)
  872 +#define STATUS_SMARTCARD_LOGON_REQUIRED __constant_cpu_to_le32(0xC00002FA)
  873 +#define STATUS_KDC_INVALID_REQUEST __constant_cpu_to_le32(0xC00002FB)
  874 +#define STATUS_KDC_UNABLE_TO_REFER __constant_cpu_to_le32(0xC00002FC)
  875 +#define STATUS_KDC_UNKNOWN_ETYPE __constant_cpu_to_le32(0xC00002FD)
  876 +#define STATUS_SHUTDOWN_IN_PROGRESS __constant_cpu_to_le32(0xC00002FE)
  877 +#define STATUS_SERVER_SHUTDOWN_IN_PROGRESS __constant_cpu_to_le32(0xC00002FF)
  878 +#define STATUS_NOT_SUPPORTED_ON_SBS __constant_cpu_to_le32(0xC0000300)
  879 +#define STATUS_WMI_GUID_DISCONNECTED __constant_cpu_to_le32(0xC0000301)
  880 +#define STATUS_WMI_ALREADY_DISABLED __constant_cpu_to_le32(0xC0000302)
  881 +#define STATUS_WMI_ALREADY_ENABLED __constant_cpu_to_le32(0xC0000303)
  882 +#define STATUS_MFT_TOO_FRAGMENTED __constant_cpu_to_le32(0xC0000304)
  883 +#define STATUS_COPY_PROTECTION_FAILURE __constant_cpu_to_le32(0xC0000305)
  884 +#define STATUS_CSS_AUTHENTICATION_FAILURE __constant_cpu_to_le32(0xC0000306)
  885 +#define STATUS_CSS_KEY_NOT_PRESENT __constant_cpu_to_le32(0xC0000307)
  886 +#define STATUS_CSS_KEY_NOT_ESTABLISHED __constant_cpu_to_le32(0xC0000308)
  887 +#define STATUS_CSS_SCRAMBLED_SECTOR __constant_cpu_to_le32(0xC0000309)
  888 +#define STATUS_CSS_REGION_MISMATCH __constant_cpu_to_le32(0xC000030A)
  889 +#define STATUS_CSS_RESETS_EXHAUSTED __constant_cpu_to_le32(0xC000030B)
  890 +#define STATUS_PKINIT_FAILURE __constant_cpu_to_le32(0xC0000320)
  891 +#define STATUS_SMARTCARD_SUBSYSTEM_FAILURE __constant_cpu_to_le32(0xC0000321)
  892 +#define STATUS_NO_KERB_KEY __constant_cpu_to_le32(0xC0000322)
  893 +#define STATUS_HOST_DOWN __constant_cpu_to_le32(0xC0000350)
  894 +#define STATUS_UNSUPPORTED_PREAUTH __constant_cpu_to_le32(0xC0000351)
  895 +#define STATUS_EFS_ALG_BLOB_TOO_BIG __constant_cpu_to_le32(0xC0000352)
  896 +#define STATUS_PORT_NOT_SET __constant_cpu_to_le32(0xC0000353)
  897 +#define STATUS_DEBUGGER_INACTIVE __constant_cpu_to_le32(0xC0000354)
  898 +#define STATUS_DS_VERSION_CHECK_FAILURE __constant_cpu_to_le32(0xC0000355)
  899 +#define STATUS_AUDITING_DISABLED __constant_cpu_to_le32(0xC0000356)
  900 +#define STATUS_PRENT4_MACHINE_ACCOUNT __constant_cpu_to_le32(0xC0000357)
  901 +#define STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER __constant_cpu_to_le32(0xC0000358)
  902 +#define STATUS_INVALID_IMAGE_WIN_32 __constant_cpu_to_le32(0xC0000359)
  903 +#define STATUS_INVALID_IMAGE_WIN_64 __constant_cpu_to_le32(0xC000035A)
  904 +#define STATUS_BAD_BINDINGS __constant_cpu_to_le32(0xC000035B)
  905 +#define STATUS_NETWORK_SESSION_EXPIRED __constant_cpu_to_le32(0xC000035C)
  906 +#define STATUS_APPHELP_BLOCK __constant_cpu_to_le32(0xC000035D)
  907 +#define STATUS_ALL_SIDS_FILTERED __constant_cpu_to_le32(0xC000035E)
  908 +#define STATUS_NOT_SAFE_MODE_DRIVER __constant_cpu_to_le32(0xC000035F)
  909 +#define STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT __constant_cpu_to_le32(0xC0000361)
  910 +#define STATUS_ACCESS_DISABLED_BY_POLICY_PATH __constant_cpu_to_le32(0xC0000362)
  911 +#define STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER __constant_cpu_to_le32(0xC0000363)
  912 +#define STATUS_ACCESS_DISABLED_BY_POLICY_OTHER __constant_cpu_to_le32(0xC0000364)
  913 +#define STATUS_FAILED_DRIVER_ENTRY __constant_cpu_to_le32(0xC0000365)
  914 +#define STATUS_DEVICE_ENUMERATION_ERROR __constant_cpu_to_le32(0xC0000366)
  915 +#define STATUS_MOUNT_POINT_NOT_RESOLVED __constant_cpu_to_le32(0xC0000368)
  916 +#define STATUS_INVALID_DEVICE_OBJECT_PARAMETER __constant_cpu_to_le32(0xC0000369)
  917 +#define STATUS_MCA_OCCURED __constant_cpu_to_le32(0xC000036A)
  918 +#define STATUS_DRIVER_BLOCKED_CRITICAL __constant_cpu_to_le32(0xC000036B)
  919 +#define STATUS_DRIVER_BLOCKED __constant_cpu_to_le32(0xC000036C)
  920 +#define STATUS_DRIVER_DATABASE_ERROR __constant_cpu_to_le32(0xC000036D)
  921 +#define STATUS_SYSTEM_HIVE_TOO_LARGE __constant_cpu_to_le32(0xC000036E)
  922 +#define STATUS_INVALID_IMPORT_OF_NON_DLL __constant_cpu_to_le32(0xC000036F)
  923 +#define STATUS_NO_SECRETS __constant_cpu_to_le32(0xC0000371)
  924 +#define STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY __constant_cpu_to_le32(0xC0000372)
  925 +#define STATUS_FAILED_STACK_SWITCH __constant_cpu_to_le32(0xC0000373)
  926 +#define STATUS_HEAP_CORRUPTION __constant_cpu_to_le32(0xC0000374)
  927 +#define STATUS_SMARTCARD_WRONG_PIN __constant_cpu_to_le32(0xC0000380)
  928 +#define STATUS_SMARTCARD_CARD_BLOCKED __constant_cpu_to_le32(0xC0000381)
  929 +#define STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED __constant_cpu_to_le32(0xC0000382)
  930 +#define STATUS_SMARTCARD_NO_CARD __constant_cpu_to_le32(0xC0000383)
  931 +#define STATUS_SMARTCARD_NO_KEY_CONTAINER __constant_cpu_to_le32(0xC0000384)
  932 +#define STATUS_SMARTCARD_NO_CERTIFICATE __constant_cpu_to_le32(0xC0000385)
  933 +#define STATUS_SMARTCARD_NO_KEYSET __constant_cpu_to_le32(0xC0000386)
  934 +#define STATUS_SMARTCARD_IO_ERROR __constant_cpu_to_le32(0xC0000387)
  935 +#define STATUS_DOWNGRADE_DETECTED __constant_cpu_to_le32(0xC0000388)
  936 +#define STATUS_SMARTCARD_CERT_REVOKED __constant_cpu_to_le32(0xC0000389)
  937 +#define STATUS_ISSUING_CA_UNTRUSTED __constant_cpu_to_le32(0xC000038A)
  938 +#define STATUS_REVOCATION_OFFLINE_C __constant_cpu_to_le32(0xC000038B)
  939 +#define STATUS_PKINIT_CLIENT_FAILURE __constant_cpu_to_le32(0xC000038C)
  940 +#define STATUS_SMARTCARD_CERT_EXPIRED __constant_cpu_to_le32(0xC000038D)
  941 +#define STATUS_DRIVER_FAILED_PRIOR_UNLOAD __constant_cpu_to_le32(0xC000038E)
  942 +#define STATUS_SMARTCARD_SILENT_CONTEXT __constant_cpu_to_le32(0xC000038F)
  943 +#define STATUS_PER_USER_TRUST_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000401)
  944 +#define STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000402)
  945 +#define STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000403)
  946 +#define STATUS_DS_NAME_NOT_UNIQUE __constant_cpu_to_le32(0xC0000404)
  947 +#define STATUS_DS_DUPLICATE_ID_FOUND __constant_cpu_to_le32(0xC0000405)
  948 +#define STATUS_DS_GROUP_CONVERSION_ERROR __constant_cpu_to_le32(0xC0000406)
  949 +#define STATUS_VOLSNAP_PREPARE_HIBERNATE __constant_cpu_to_le32(0xC0000407)
  950 +#define STATUS_USER2USER_REQUIRED __constant_cpu_to_le32(0xC0000408)
  951 +#define STATUS_STACK_BUFFER_OVERRUN __constant_cpu_to_le32(0xC0000409)
  952 +#define STATUS_NO_S4U_PROT_SUPPORT __constant_cpu_to_le32(0xC000040A)
  953 +#define STATUS_CROSSREALM_DELEGATION_FAILURE __constant_cpu_to_le32(0xC000040B)
  954 +#define STATUS_REVOCATION_OFFLINE_KDC __constant_cpu_to_le32(0xC000040C)
  955 +#define STATUS_ISSUING_CA_UNTRUSTED_KDC __constant_cpu_to_le32(0xC000040D)
  956 +#define STATUS_KDC_CERT_EXPIRED __constant_cpu_to_le32(0xC000040E)
  957 +#define STATUS_KDC_CERT_REVOKED __constant_cpu_to_le32(0xC000040F)
  958 +#define STATUS_PARAMETER_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000410)
  959 +#define STATUS_HIBERNATION_FAILURE __constant_cpu_to_le32(0xC0000411)
  960 +#define STATUS_DELAY_LOAD_FAILED __constant_cpu_to_le32(0xC0000412)
  961 +#define STATUS_AUTHENTICATION_FIREWALL_FAILED __constant_cpu_to_le32(0xC0000413)
  962 +#define STATUS_VDM_DISALLOWED __constant_cpu_to_le32(0xC0000414)
  963 +#define STATUS_HUNG_DISPLAY_DRIVER_THREAD __constant_cpu_to_le32(0xC0000415)
  964 +#define STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE __constant_cpu_to_le32(0xC0000416)
  965 +#define STATUS_INVALID_CRUNTIME_PARAMETER __constant_cpu_to_le32(0xC0000417)
  966 +#define STATUS_NTLM_BLOCKED __constant_cpu_to_le32(0xC0000418)
  967 +#define STATUS_ASSERTION_FAILURE __constant_cpu_to_le32(0xC0000420)
  968 +#define STATUS_VERIFIER_STOP __constant_cpu_to_le32(0xC0000421)
  969 +#define STATUS_CALLBACK_POP_STACK __constant_cpu_to_le32(0xC0000423)
  970 +#define STATUS_INCOMPATIBLE_DRIVER_BLOCKED __constant_cpu_to_le32(0xC0000424)
  971 +#define STATUS_HIVE_UNLOADED __constant_cpu_to_le32(0xC0000425)
  972 +#define STATUS_COMPRESSION_DISABLED __constant_cpu_to_le32(0xC0000426)
  973 +#define STATUS_FILE_SYSTEM_LIMITATION __constant_cpu_to_le32(0xC0000427)
  974 +#define STATUS_INVALID_IMAGE_HASH __constant_cpu_to_le32(0xC0000428)
  975 +#define STATUS_NOT_CAPABLE __constant_cpu_to_le32(0xC0000429)
  976 +#define STATUS_REQUEST_OUT_OF_SEQUENCE __constant_cpu_to_le32(0xC000042A)
  977 +#define STATUS_IMPLEMENTATION_LIMIT __constant_cpu_to_le32(0xC000042B)
  978 +#define STATUS_ELEVATION_REQUIRED __constant_cpu_to_le32(0xC000042C)
  979 +#define STATUS_BEYOND_VDL __constant_cpu_to_le32(0xC0000432)
  980 +#define STATUS_ENCOUNTERED_WRITE_IN_PROGRESS __constant_cpu_to_le32(0xC0000433)
  981 +#define STATUS_PTE_CHANGED __constant_cpu_to_le32(0xC0000434)
  982 +#define STATUS_PURGE_FAILED __constant_cpu_to_le32(0xC0000435)
  983 +#define STATUS_CRED_REQUIRES_CONFIRMATION __constant_cpu_to_le32(0xC0000440)
  984 +#define STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE __constant_cpu_to_le32(0xC0000441)
  985 +#define STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER __constant_cpu_to_le32(0xC0000442)
  986 +#define STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE __constant_cpu_to_le32(0xC0000443)
  987 +#define STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE __constant_cpu_to_le32(0xC0000444)
  988 +#define STATUS_CS_ENCRYPTION_FILE_NOT_CSE __constant_cpu_to_le32(0xC0000445)
  989 +#define STATUS_INVALID_LABEL __constant_cpu_to_le32(0xC0000446)
  990 +#define STATUS_DRIVER_PROCESS_TERMINATED __constant_cpu_to_le32(0xC0000450)
  991 +#define STATUS_AMBIGUOUS_SYSTEM_DEVICE __constant_cpu_to_le32(0xC0000451)
  992 +#define STATUS_SYSTEM_DEVICE_NOT_FOUND __constant_cpu_to_le32(0xC0000452)
  993 +#define STATUS_RESTART_BOOT_APPLICATION __constant_cpu_to_le32(0xC0000453)
  994 +#define STATUS_INVALID_TASK_NAME __constant_cpu_to_le32(0xC0000500)
  995 +#define STATUS_INVALID_TASK_INDEX __constant_cpu_to_le32(0xC0000501)
  996 +#define STATUS_THREAD_ALREADY_IN_TASK __constant_cpu_to_le32(0xC0000502)
  997 +#define STATUS_CALLBACK_BYPASS __constant_cpu_to_le32(0xC0000503)
  998 +#define STATUS_PORT_CLOSED __constant_cpu_to_le32(0xC0000700)
  999 +#define STATUS_MESSAGE_LOST __constant_cpu_to_le32(0xC0000701)
  1000 +#define STATUS_INVALID_MESSAGE __constant_cpu_to_le32(0xC0000702)
  1001 +#define STATUS_REQUEST_CANCELED __constant_cpu_to_le32(0xC0000703)
  1002 +#define STATUS_RECURSIVE_DISPATCH __constant_cpu_to_le32(0xC0000704)
  1003 +#define STATUS_LPC_RECEIVE_BUFFER_EXPECTED __constant_cpu_to_le32(0xC0000705)
  1004 +#define STATUS_LPC_INVALID_CONNECTION_USAGE __constant_cpu_to_le32(0xC0000706)
  1005 +#define STATUS_LPC_REQUESTS_NOT_ALLOWED __constant_cpu_to_le32(0xC0000707)
  1006 +#define STATUS_RESOURCE_IN_USE __constant_cpu_to_le32(0xC0000708)
  1007 +#define STATUS_HARDWARE_MEMORY_ERROR __constant_cpu_to_le32(0xC0000709)
  1008 +#define STATUS_THREADPOOL_HANDLE_EXCEPTION __constant_cpu_to_le32(0xC000070A)
  1009 +#define STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED __constant_cpu_to_le32(0xC000070B)
  1010 +#define STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED __constant_cpu_to_le32(0xC000070C)
  1011 +#define STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED __constant_cpu_to_le32(0xC000070D)
  1012 +#define STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED __constant_cpu_to_le32(0xC000070E)
  1013 +#define STATUS_THREADPOOL_RELEASED_DURING_OPERATION __constant_cpu_to_le32(0xC000070F)
  1014 +#define STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING __constant_cpu_to_le32(0xC0000710)
  1015 +#define STATUS_APC_RETURNED_WHILE_IMPERSONATING __constant_cpu_to_le32(0xC0000711)
  1016 +#define STATUS_PROCESS_IS_PROTECTED __constant_cpu_to_le32(0xC0000712)
  1017 +#define STATUS_MCA_EXCEPTION __constant_cpu_to_le32(0xC0000713)
  1018 +#define STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE __constant_cpu_to_le32(0xC0000714)
  1019 +#define STATUS_SYMLINK_CLASS_DISABLED __constant_cpu_to_le32(0xC0000715)
  1020 +#define STATUS_INVALID_IDN_NORMALIZATION __constant_cpu_to_le32(0xC0000716)
  1021 +#define STATUS_NO_UNICODE_TRANSLATION __constant_cpu_to_le32(0xC0000717)
  1022 +#define STATUS_ALREADY_REGISTERED __constant_cpu_to_le32(0xC0000718)
  1023 +#define STATUS_CONTEXT_MISMATCH __constant_cpu_to_le32(0xC0000719)
  1024 +#define STATUS_PORT_ALREADY_HAS_COMPLETION_LIST __constant_cpu_to_le32(0xC000071A)
  1025 +#define STATUS_CALLBACK_RETURNED_THREAD_PRIORITY __constant_cpu_to_le32(0xC000071B)
  1026 +#define STATUS_INVALID_THREAD __constant_cpu_to_le32(0xC000071C)
  1027 +#define STATUS_CALLBACK_RETURNED_TRANSACTION __constant_cpu_to_le32(0xC000071D)
  1028 +#define STATUS_CALLBACK_RETURNED_LDR_LOCK __constant_cpu_to_le32(0xC000071E)
  1029 +#define STATUS_CALLBACK_RETURNED_LANG __constant_cpu_to_le32(0xC000071F)
  1030 +#define STATUS_CALLBACK_RETURNED_PRI_BACK __constant_cpu_to_le32(0xC0000720)
  1031 +#define STATUS_CALLBACK_RETURNED_THREAD_AFFINITY __constant_cpu_to_le32(0xC0000721)
  1032 +#define STATUS_DISK_REPAIR_DISABLED __constant_cpu_to_le32(0xC0000800)
  1033 +#define STATUS_DS_DOMAIN_RENAME_IN_PROGRESS __constant_cpu_to_le32(0xC0000801)
  1034 +#define STATUS_DISK_QUOTA_EXCEEDED __constant_cpu_to_le32(0xC0000802)
  1035 +#define STATUS_CONTENT_BLOCKED __constant_cpu_to_le32(0xC0000804)
  1036 +#define STATUS_BAD_CLUSTERS __constant_cpu_to_le32(0xC0000805)
  1037 +#define STATUS_VOLUME_DIRTY __constant_cpu_to_le32(0xC0000806)
  1038 +#define STATUS_FILE_CHECKED_OUT __constant_cpu_to_le32(0xC0000901)
  1039 +#define STATUS_CHECKOUT_REQUIRED __constant_cpu_to_le32(0xC0000902)
  1040 +#define STATUS_BAD_FILE_TYPE __constant_cpu_to_le32(0xC0000903)
  1041 +#define STATUS_FILE_TOO_LARGE __constant_cpu_to_le32(0xC0000904)
  1042 +#define STATUS_FORMS_AUTH_REQUIRED __constant_cpu_to_le32(0xC0000905)
  1043 +#define STATUS_VIRUS_INFECTED __constant_cpu_to_le32(0xC0000906)
  1044 +#define STATUS_VIRUS_DELETED __constant_cpu_to_le32(0xC0000907)
  1045 +#define STATUS_BAD_MCFG_TABLE __constant_cpu_to_le32(0xC0000908)
  1046 +#define STATUS_WOW_ASSERTION __constant_cpu_to_le32(0xC0009898)
  1047 +#define STATUS_INVALID_SIGNATURE __constant_cpu_to_le32(0xC000A000)
  1048 +#define STATUS_HMAC_NOT_SUPPORTED __constant_cpu_to_le32(0xC000A001)
  1049 +#define STATUS_IPSEC_QUEUE_OVERFLOW __constant_cpu_to_le32(0xC000A010)
  1050 +#define STATUS_ND_QUEUE_OVERFLOW __constant_cpu_to_le32(0xC000A011)
  1051 +#define STATUS_HOPLIMIT_EXCEEDED __constant_cpu_to_le32(0xC000A012)
  1052 +#define STATUS_PROTOCOL_NOT_SUPPORTED __constant_cpu_to_le32(0xC000A013)
  1053 +#define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED __constant_cpu_to_le32(0xC000A080)
  1054 +#define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR __constant_cpu_to_le32(0xC000A081)
  1055 +#define STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR __constant_cpu_to_le32(0xC000A082)
  1056 +#define STATUS_XML_PARSE_ERROR __constant_cpu_to_le32(0xC000A083)
  1057 +#define STATUS_XMLDSIG_ERROR __constant_cpu_to_le32(0xC000A084)
  1058 +#define STATUS_WRONG_COMPARTMENT __constant_cpu_to_le32(0xC000A085)
  1059 +#define STATUS_AUTHIP_FAILURE __constant_cpu_to_le32(0xC000A086)
  1060 +#define DBG_NO_STATE_CHANGE __constant_cpu_to_le32(0xC0010001)
  1061 +#define DBG_APP_NOT_IDLE __constant_cpu_to_le32(0xC0010002)
  1062 +#define RPC_NT_INVALID_STRING_BINDING __constant_cpu_to_le32(0xC0020001)
  1063 +#define RPC_NT_WRONG_KIND_OF_BINDING __constant_cpu_to_le32(0xC0020002)
  1064 +#define RPC_NT_INVALID_BINDING __constant_cpu_to_le32(0xC0020003)
  1065 +#define RPC_NT_PROTSEQ_NOT_SUPPORTED __constant_cpu_to_le32(0xC0020004)
  1066 +#define RPC_NT_INVALID_RPC_PROTSEQ __constant_cpu_to_le32(0xC0020005)
  1067 +#define RPC_NT_INVALID_STRING_UUID __constant_cpu_to_le32(0xC0020006)
  1068 +#define RPC_NT_INVALID_ENDPOINT_FORMAT __constant_cpu_to_le32(0xC0020007)
  1069 +#define RPC_NT_INVALID_NET_ADDR __constant_cpu_to_le32(0xC0020008)
  1070 +#define RPC_NT_NO_ENDPOINT_FOUND __constant_cpu_to_le32(0xC0020009)
  1071 +#define RPC_NT_INVALID_TIMEOUT __constant_cpu_to_le32(0xC002000A)
  1072 +#define RPC_NT_OBJECT_NOT_FOUND __constant_cpu_to_le32(0xC002000B)
  1073 +#define RPC_NT_ALREADY_REGISTERED __constant_cpu_to_le32(0xC002000C)
  1074 +#define RPC_NT_TYPE_ALREADY_REGISTERED __constant_cpu_to_le32(0xC002000D)
  1075 +#define RPC_NT_ALREADY_LISTENING __constant_cpu_to_le32(0xC002000E)
  1076 +#define RPC_NT_NO_PROTSEQS_REGISTERED __constant_cpu_to_le32(0xC002000F)
  1077 +#define RPC_NT_NOT_LISTENING __constant_cpu_to_le32(0xC0020010)
  1078 +#define RPC_NT_UNKNOWN_MGR_TYPE __constant_cpu_to_le32(0xC0020011)
  1079 +#define RPC_NT_UNKNOWN_IF __constant_cpu_to_le32(0xC0020012)
  1080 +#define RPC_NT_NO_BINDINGS __constant_cpu_to_le32(0xC0020013)
  1081 +#define RPC_NT_NO_PROTSEQS __constant_cpu_to_le32(0xC0020014)
  1082 +#define RPC_NT_CANT_CREATE_ENDPOINT __constant_cpu_to_le32(0xC0020015)
  1083 +#define RPC_NT_OUT_OF_RESOURCES __constant_cpu_to_le32(0xC0020016)
  1084 +#define RPC_NT_SERVER_UNAVAILABLE __constant_cpu_to_le32(0xC0020017)
  1085 +#define RPC_NT_SERVER_TOO_BUSY __constant_cpu_to_le32(0xC0020018)
  1086 +#define RPC_NT_INVALID_NETWORK_OPTIONS __constant_cpu_to_le32(0xC0020019)
  1087 +#define RPC_NT_NO_CALL_ACTIVE __constant_cpu_to_le32(0xC002001A)
  1088 +#define RPC_NT_CALL_FAILED __constant_cpu_to_le32(0xC002001B)
  1089 +#define RPC_NT_CALL_FAILED_DNE __constant_cpu_to_le32(0xC002001C)
  1090 +#define RPC_NT_PROTOCOL_ERROR __constant_cpu_to_le32(0xC002001D)
  1091 +#define RPC_NT_UNSUPPORTED_TRANS_SYN __constant_cpu_to_le32(0xC002001F)
  1092 +#define RPC_NT_UNSUPPORTED_TYPE __constant_cpu_to_le32(0xC0020021)
  1093 +#define RPC_NT_INVALID_TAG __constant_cpu_to_le32(0xC0020022)
  1094 +#define RPC_NT_INVALID_BOUND __constant_cpu_to_le32(0xC0020023)
  1095 +#define RPC_NT_NO_ENTRY_NAME __constant_cpu_to_le32(0xC0020024)
  1096 +#define RPC_NT_INVALID_NAME_SYNTAX __constant_cpu_to_le32(0xC0020025)
  1097 +#define RPC_NT_UNSUPPORTED_NAME_SYNTAX __constant_cpu_to_le32(0xC0020026)
  1098 +#define RPC_NT_UUID_NO_ADDRESS __constant_cpu_to_le32(0xC0020028)
  1099 +#define RPC_NT_DUPLICATE_ENDPOINT __constant_cpu_to_le32(0xC0020029)
  1100 +#define RPC_NT_UNKNOWN_AUTHN_TYPE __constant_cpu_to_le32(0xC002002A)
  1101 +#define RPC_NT_MAX_CALLS_TOO_SMALL __constant_cpu_to_le32(0xC002002B)
  1102 +#define RPC_NT_STRING_TOO_LONG __constant_cpu_to_le32(0xC002002C)
  1103 +#define RPC_NT_PROTSEQ_NOT_FOUND __constant_cpu_to_le32(0xC002002D)
  1104 +#define RPC_NT_PROCNUM_OUT_OF_RANGE __constant_cpu_to_le32(0xC002002E)
  1105 +#define RPC_NT_BINDING_HAS_NO_AUTH __constant_cpu_to_le32(0xC002002F)
  1106 +#define RPC_NT_UNKNOWN_AUTHN_SERVICE __constant_cpu_to_le32(0xC0020030)
  1107 +#define RPC_NT_UNKNOWN_AUTHN_LEVEL __constant_cpu_to_le32(0xC0020031)
  1108 +#define RPC_NT_INVALID_AUTH_IDENTITY __constant_cpu_to_le32(0xC0020032)
  1109 +#define RPC_NT_UNKNOWN_AUTHZ_SERVICE __constant_cpu_to_le32(0xC0020033)
  1110 +#define EPT_NT_INVALID_ENTRY __constant_cpu_to_le32(0xC0020034)
  1111 +#define EPT_NT_CANT_PERFORM_OP __constant_cpu_to_le32(0xC0020035)
  1112 +#define EPT_NT_NOT_REGISTERED __constant_cpu_to_le32(0xC0020036)
  1113 +#define RPC_NT_NOTHING_TO_EXPORT __constant_cpu_to_le32(0xC0020037)
  1114 +#define RPC_NT_INCOMPLETE_NAME __constant_cpu_to_le32(0xC0020038)
  1115 +#define RPC_NT_INVALID_VERS_OPTION __constant_cpu_to_le32(0xC0020039)
  1116 +#define RPC_NT_NO_MORE_MEMBERS __constant_cpu_to_le32(0xC002003A)
  1117 +#define RPC_NT_NOT_ALL_OBJS_UNEXPORTED __constant_cpu_to_le32(0xC002003B)
  1118 +#define RPC_NT_INTERFACE_NOT_FOUND __constant_cpu_to_le32(0xC002003C)
  1119 +#define RPC_NT_ENTRY_ALREADY_EXISTS __constant_cpu_to_le32(0xC002003D)
  1120 +#define RPC_NT_ENTRY_NOT_FOUND __constant_cpu_to_le32(0xC002003E)
  1121 +#define RPC_NT_NAME_SERVICE_UNAVAILABLE __constant_cpu_to_le32(0xC002003F)
  1122 +#define RPC_NT_INVALID_NAF_ID __constant_cpu_to_le32(0xC0020040)
  1123 +#define RPC_NT_CANNOT_SUPPORT __constant_cpu_to_le32(0xC0020041)
  1124 +#define RPC_NT_NO_CONTEXT_AVAILABLE __constant_cpu_to_le32(0xC0020042)
  1125 +#define RPC_NT_INTERNAL_ERROR __constant_cpu_to_le32(0xC0020043)
  1126 +#define RPC_NT_ZERO_DIVIDE __constant_cpu_to_le32(0xC0020044)
  1127 +#define RPC_NT_ADDRESS_ERROR __constant_cpu_to_le32(0xC0020045)
  1128 +#define RPC_NT_FP_DIV_ZERO __constant_cpu_to_le32(0xC0020046)
  1129 +#define RPC_NT_FP_UNDERFLOW __constant_cpu_to_le32(0xC0020047)
  1130 +#define RPC_NT_FP_OVERFLOW __constant_cpu_to_le32(0xC0020048)
  1131 +#define RPC_NT_CALL_IN_PROGRESS __constant_cpu_to_le32(0xC0020049)
  1132 +#define RPC_NT_NO_MORE_BINDINGS __constant_cpu_to_le32(0xC002004A)
  1133 +#define RPC_NT_GROUP_MEMBER_NOT_FOUND __constant_cpu_to_le32(0xC002004B)
  1134 +#define EPT_NT_CANT_CREATE __constant_cpu_to_le32(0xC002004C)
  1135 +#define RPC_NT_INVALID_OBJECT __constant_cpu_to_le32(0xC002004D)
  1136 +#define RPC_NT_NO_INTERFACES __constant_cpu_to_le32(0xC002004F)
  1137 +#define RPC_NT_CALL_CANCELLED __constant_cpu_to_le32(0xC0020050)
  1138 +#define RPC_NT_BINDING_INCOMPLETE __constant_cpu_to_le32(0xC0020051)
  1139 +#define RPC_NT_COMM_FAILURE __constant_cpu_to_le32(0xC0020052)
  1140 +#define RPC_NT_UNSUPPORTED_AUTHN_LEVEL __constant_cpu_to_le32(0xC0020053)
  1141 +#define RPC_NT_NO_PRINC_NAME __constant_cpu_to_le32(0xC0020054)
  1142 +#define RPC_NT_NOT_RPC_ERROR __constant_cpu_to_le32(0xC0020055)
  1143 +#define RPC_NT_SEC_PKG_ERROR __constant_cpu_to_le32(0xC0020057)
  1144 +#define RPC_NT_NOT_CANCELLED __constant_cpu_to_le32(0xC0020058)
  1145 +#define RPC_NT_INVALID_ASYNC_HANDLE __constant_cpu_to_le32(0xC0020062)
  1146 +#define RPC_NT_INVALID_ASYNC_CALL __constant_cpu_to_le32(0xC0020063)
  1147 +#define RPC_NT_PROXY_ACCESS_DENIED __constant_cpu_to_le32(0xC0020064)
  1148 +#define RPC_NT_NO_MORE_ENTRIES __constant_cpu_to_le32(0xC0030001)
  1149 +#define RPC_NT_SS_CHAR_TRANS_OPEN_FAIL __constant_cpu_to_le32(0xC0030002)
  1150 +#define RPC_NT_SS_CHAR_TRANS_SHORT_FILE __constant_cpu_to_le32(0xC0030003)
  1151 +#define RPC_NT_SS_IN_NULL_CONTEXT __constant_cpu_to_le32(0xC0030004)
  1152 +#define RPC_NT_SS_CONTEXT_MISMATCH __constant_cpu_to_le32(0xC0030005)
  1153 +#define RPC_NT_SS_CONTEXT_DAMAGED __constant_cpu_to_le32(0xC0030006)
  1154 +#define RPC_NT_SS_HANDLES_MISMATCH __constant_cpu_to_le32(0xC0030007)
  1155 +#define RPC_NT_SS_CANNOT_GET_CALL_HANDLE __constant_cpu_to_le32(0xC0030008)
  1156 +#define RPC_NT_NULL_REF_POINTER __constant_cpu_to_le32(0xC0030009)
  1157 +#define RPC_NT_ENUM_VALUE_OUT_OF_RANGE __constant_cpu_to_le32(0xC003000A)
  1158 +#define RPC_NT_BYTE_COUNT_TOO_SMALL __constant_cpu_to_le32(0xC003000B)
  1159 +#define RPC_NT_BAD_STUB_DATA __constant_cpu_to_le32(0xC003000C)
  1160 +#define RPC_NT_INVALID_ES_ACTION __constant_cpu_to_le32(0xC0030059)
  1161 +#define RPC_NT_WRONG_ES_VERSION __constant_cpu_to_le32(0xC003005A)
  1162 +#define RPC_NT_WRONG_STUB_VERSION __constant_cpu_to_le32(0xC003005B)
  1163 +#define RPC_NT_INVALID_PIPE_OBJECT __constant_cpu_to_le32(0xC003005C)
  1164 +#define RPC_NT_INVALID_PIPE_OPERATION __constant_cpu_to_le32(0xC003005D)
  1165 +#define RPC_NT_WRONG_PIPE_VERSION __constant_cpu_to_le32(0xC003005E)
  1166 +#define RPC_NT_PIPE_CLOSED __constant_cpu_to_le32(0xC003005F)
  1167 +#define RPC_NT_PIPE_DISCIPLINE_ERROR __constant_cpu_to_le32(0xC0030060)
  1168 +#define RPC_NT_PIPE_EMPTY __constant_cpu_to_le32(0xC0030061)
  1169 +#define STATUS_PNP_BAD_MPS_TABLE __constant_cpu_to_le32(0xC0040035)
  1170 +#define STATUS_PNP_TRANSLATION_FAILED __constant_cpu_to_le32(0xC0040036)
  1171 +#define STATUS_PNP_IRQ_TRANSLATION_FAILED __constant_cpu_to_le32(0xC0040037)
  1172 +#define STATUS_PNP_INVALID_ID __constant_cpu_to_le32(0xC0040038)
  1173 +#define STATUS_IO_REISSUE_AS_CACHED __constant_cpu_to_le32(0xC0040039)
  1174 +#define STATUS_CTX_WINSTATION_NAME_INVALID __constant_cpu_to_le32(0xC00A0001)
  1175 +#define STATUS_CTX_INVALID_PD __constant_cpu_to_le32(0xC00A0002)
  1176 +#define STATUS_CTX_PD_NOT_FOUND __constant_cpu_to_le32(0xC00A0003)
  1177 +#define STATUS_CTX_CLOSE_PENDING __constant_cpu_to_le32(0xC00A0006)
  1178 +#define STATUS_CTX_NO_OUTBUF __constant_cpu_to_le32(0xC00A0007)
  1179 +#define STATUS_CTX_MODEM_INF_NOT_FOUND __constant_cpu_to_le32(0xC00A0008)
  1180 +#define STATUS_CTX_INVALID_MODEMNAME __constant_cpu_to_le32(0xC00A0009)
  1181 +#define STATUS_CTX_RESPONSE_ERROR __constant_cpu_to_le32(0xC00A000A)
  1182 +#define STATUS_CTX_MODEM_RESPONSE_TIMEOUT __constant_cpu_to_le32(0xC00A000B)
  1183 +#define STATUS_CTX_MODEM_RESPONSE_NO_CARRIER __constant_cpu_to_le32(0xC00A000C)
  1184 +#define STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE __constant_cpu_to_le32(0xC00A000D)
  1185 +#define STATUS_CTX_MODEM_RESPONSE_BUSY __constant_cpu_to_le32(0xC00A000E)
  1186 +#define STATUS_CTX_MODEM_RESPONSE_VOICE __constant_cpu_to_le32(0xC00A000F)
  1187 +#define STATUS_CTX_TD_ERROR __constant_cpu_to_le32(0xC00A0010)
  1188 +#define STATUS_CTX_LICENSE_CLIENT_INVALID __constant_cpu_to_le32(0xC00A0012)
  1189 +#define STATUS_CTX_LICENSE_NOT_AVAILABLE __constant_cpu_to_le32(0xC00A0013)
  1190 +#define STATUS_CTX_LICENSE_EXPIRED __constant_cpu_to_le32(0xC00A0014)
  1191 +#define STATUS_CTX_WINSTATION_NOT_FOUND __constant_cpu_to_le32(0xC00A0015)
  1192 +#define STATUS_CTX_WINSTATION_NAME_COLLISION __constant_cpu_to_le32(0xC00A0016)
  1193 +#define STATUS_CTX_WINSTATION_BUSY __constant_cpu_to_le32(0xC00A0017)
  1194 +#define STATUS_CTX_BAD_VIDEO_MODE __constant_cpu_to_le32(0xC00A0018)
  1195 +#define STATUS_CTX_GRAPHICS_INVALID __constant_cpu_to_le32(0xC00A0022)
  1196 +#define STATUS_CTX_NOT_CONSOLE __constant_cpu_to_le32(0xC00A0024)
  1197 +#define STATUS_CTX_CLIENT_QUERY_TIMEOUT __constant_cpu_to_le32(0xC00A0026)
  1198 +#define STATUS_CTX_CONSOLE_DISCONNECT __constant_cpu_to_le32(0xC00A0027)
  1199 +#define STATUS_CTX_CONSOLE_CONNECT __constant_cpu_to_le32(0xC00A0028)
  1200 +#define STATUS_CTX_SHADOW_DENIED __constant_cpu_to_le32(0xC00A002A)
  1201 +#define STATUS_CTX_WINSTATION_ACCESS_DENIED __constant_cpu_to_le32(0xC00A002B)
  1202 +#define STATUS_CTX_INVALID_WD __constant_cpu_to_le32(0xC00A002E)
  1203 +#define STATUS_CTX_WD_NOT_FOUND __constant_cpu_to_le32(0xC00A002F)
  1204 +#define STATUS_CTX_SHADOW_INVALID __constant_cpu_to_le32(0xC00A0030)
  1205 +#define STATUS_CTX_SHADOW_DISABLED __constant_cpu_to_le32(0xC00A0031)
  1206 +#define STATUS_RDP_PROTOCOL_ERROR __constant_cpu_to_le32(0xC00A0032)
  1207 +#define STATUS_CTX_CLIENT_LICENSE_NOT_SET __constant_cpu_to_le32(0xC00A0033)
  1208 +#define STATUS_CTX_CLIENT_LICENSE_IN_USE __constant_cpu_to_le32(0xC00A0034)
  1209 +#define STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE __constant_cpu_to_le32(0xC00A0035)
  1210 +#define STATUS_CTX_SHADOW_NOT_RUNNING __constant_cpu_to_le32(0xC00A0036)
  1211 +#define STATUS_CTX_LOGON_DISABLED __constant_cpu_to_le32(0xC00A0037)
  1212 +#define STATUS_CTX_SECURITY_LAYER_ERROR __constant_cpu_to_le32(0xC00A0038)
  1213 +#define STATUS_TS_INCOMPATIBLE_SESSIONS __constant_cpu_to_le32(0xC00A0039)
  1214 +#define STATUS_MUI_FILE_NOT_FOUND __constant_cpu_to_le32(0xC00B0001)
  1215 +#define STATUS_MUI_INVALID_FILE __constant_cpu_to_le32(0xC00B0002)
  1216 +#define STATUS_MUI_INVALID_RC_CONFIG __constant_cpu_to_le32(0xC00B0003)
  1217 +#define STATUS_MUI_INVALID_LOCALE_NAME __constant_cpu_to_le32(0xC00B0004)
  1218 +#define STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME __constant_cpu_to_le32(0xC00B0005)
  1219 +#define STATUS_MUI_FILE_NOT_LOADED __constant_cpu_to_le32(0xC00B0006)
  1220 +#define STATUS_RESOURCE_ENUM_USER_STOP __constant_cpu_to_le32(0xC00B0007)
  1221 +#define STATUS_CLUSTER_INVALID_NODE __constant_cpu_to_le32(0xC0130001)
  1222 +#define STATUS_CLUSTER_NODE_EXISTS __constant_cpu_to_le32(0xC0130002)
  1223 +#define STATUS_CLUSTER_JOIN_IN_PROGRESS __constant_cpu_to_le32(0xC0130003)
  1224 +#define STATUS_CLUSTER_NODE_NOT_FOUND __constant_cpu_to_le32(0xC0130004)
  1225 +#define STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND __constant_cpu_to_le32(0xC0130005)
  1226 +#define STATUS_CLUSTER_NETWORK_EXISTS __constant_cpu_to_le32(0xC0130006)
  1227 +#define STATUS_CLUSTER_NETWORK_NOT_FOUND __constant_cpu_to_le32(0xC0130007)
  1228 +#define STATUS_CLUSTER_NETINTERFACE_EXISTS __constant_cpu_to_le32(0xC0130008)
  1229 +#define STATUS_CLUSTER_NETINTERFACE_NOT_FOUND __constant_cpu_to_le32(0xC0130009)
  1230 +#define STATUS_CLUSTER_INVALID_REQUEST __constant_cpu_to_le32(0xC013000A)
  1231 +#define STATUS_CLUSTER_INVALID_NETWORK_PROVIDER __constant_cpu_to_le32(0xC013000B)
  1232 +#define STATUS_CLUSTER_NODE_DOWN __constant_cpu_to_le32(0xC013000C)
  1233 +#define STATUS_CLUSTER_NODE_UNREACHABLE __constant_cpu_to_le32(0xC013000D)
  1234 +#define STATUS_CLUSTER_NODE_NOT_MEMBER __constant_cpu_to_le32(0xC013000E)
  1235 +#define STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS __constant_cpu_to_le32(0xC013000F)
  1236 +#define STATUS_CLUSTER_INVALID_NETWORK __constant_cpu_to_le32(0xC0130010)
  1237 +#define STATUS_CLUSTER_NO_NET_ADAPTERS __constant_cpu_to_le32(0xC0130011)
  1238 +#define STATUS_CLUSTER_NODE_UP __constant_cpu_to_le32(0xC0130012)
  1239 +#define STATUS_CLUSTER_NODE_PAUSED __constant_cpu_to_le32(0xC0130013)
  1240 +#define STATUS_CLUSTER_NODE_NOT_PAUSED __constant_cpu_to_le32(0xC0130014)
  1241 +#define STATUS_CLUSTER_NO_SECURITY_CONTEXT __constant_cpu_to_le32(0xC0130015)
  1242 +#define STATUS_CLUSTER_NETWORK_NOT_INTERNAL __constant_cpu_to_le32(0xC0130016)
  1243 +#define STATUS_CLUSTER_POISONED __constant_cpu_to_le32(0xC0130017)
  1244 +#define STATUS_ACPI_INVALID_OPCODE __constant_cpu_to_le32(0xC0140001)
  1245 +#define STATUS_ACPI_STACK_OVERFLOW __constant_cpu_to_le32(0xC0140002)
  1246 +#define STATUS_ACPI_ASSERT_FAILED __constant_cpu_to_le32(0xC0140003)
  1247 +#define STATUS_ACPI_INVALID_INDEX __constant_cpu_to_le32(0xC0140004)
  1248 +#define STATUS_ACPI_INVALID_ARGUMENT __constant_cpu_to_le32(0xC0140005)
  1249 +#define STATUS_ACPI_FATAL __constant_cpu_to_le32(0xC0140006)
  1250 +#define STATUS_ACPI_INVALID_SUPERNAME __constant_cpu_to_le32(0xC0140007)
  1251 +#define STATUS_ACPI_INVALID_ARGTYPE __constant_cpu_to_le32(0xC0140008)
  1252 +#define STATUS_ACPI_INVALID_OBJTYPE __constant_cpu_to_le32(0xC0140009)
  1253 +#define STATUS_ACPI_INVALID_TARGETTYPE __constant_cpu_to_le32(0xC014000A)
  1254 +#define STATUS_ACPI_INCORRECT_ARGUMENT_COUNT __constant_cpu_to_le32(0xC014000B)
  1255 +#define STATUS_ACPI_ADDRESS_NOT_MAPPED __constant_cpu_to_le32(0xC014000C)
  1256 +#define STATUS_ACPI_INVALID_EVENTTYPE __constant_cpu_to_le32(0xC014000D)
  1257 +#define STATUS_ACPI_HANDLER_COLLISION __constant_cpu_to_le32(0xC014000E)
  1258 +#define STATUS_ACPI_INVALID_DATA __constant_cpu_to_le32(0xC014000F)
  1259 +#define STATUS_ACPI_INVALID_REGION __constant_cpu_to_le32(0xC0140010)
  1260 +#define STATUS_ACPI_INVALID_ACCESS_SIZE __constant_cpu_to_le32(0xC0140011)
  1261 +#define STATUS_ACPI_ACQUIRE_GLOBAL_LOCK __constant_cpu_to_le32(0xC0140012)
  1262 +#define STATUS_ACPI_ALREADY_INITIALIZED __constant_cpu_to_le32(0xC0140013)
  1263 +#define STATUS_ACPI_NOT_INITIALIZED __constant_cpu_to_le32(0xC0140014)
  1264 +#define STATUS_ACPI_INVALID_MUTEX_LEVEL __constant_cpu_to_le32(0xC0140015)
  1265 +#define STATUS_ACPI_MUTEX_NOT_OWNED __constant_cpu_to_le32(0xC0140016)
  1266 +#define STATUS_ACPI_MUTEX_NOT_OWNER __constant_cpu_to_le32(0xC0140017)
  1267 +#define STATUS_ACPI_RS_ACCESS __constant_cpu_to_le32(0xC0140018)
  1268 +#define STATUS_ACPI_INVALID_TABLE __constant_cpu_to_le32(0xC0140019)
  1269 +#define STATUS_ACPI_REG_HANDLER_FAILED __constant_cpu_to_le32(0xC0140020)
  1270 +#define STATUS_ACPI_POWER_REQUEST_FAILED __constant_cpu_to_le32(0xC0140021)
  1271 +#define STATUS_SXS_SECTION_NOT_FOUND __constant_cpu_to_le32(0xC0150001)
  1272 +#define STATUS_SXS_CANT_GEN_ACTCTX __constant_cpu_to_le32(0xC0150002)
  1273 +#define STATUS_SXS_INVALID_ACTCTXDATA_FORMAT __constant_cpu_to_le32(0xC0150003)
  1274 +#define STATUS_SXS_ASSEMBLY_NOT_FOUND __constant_cpu_to_le32(0xC0150004)
  1275 +#define STATUS_SXS_MANIFEST_FORMAT_ERROR __constant_cpu_to_le32(0xC0150005)
  1276 +#define STATUS_SXS_MANIFEST_PARSE_ERROR __constant_cpu_to_le32(0xC0150006)
  1277 +#define STATUS_SXS_ACTIVATION_CONTEXT_DISABLED __constant_cpu_to_le32(0xC0150007)
  1278 +#define STATUS_SXS_KEY_NOT_FOUND __constant_cpu_to_le32(0xC0150008)
  1279 +#define STATUS_SXS_VERSION_CONFLICT __constant_cpu_to_le32(0xC0150009)
  1280 +#define STATUS_SXS_WRONG_SECTION_TYPE __constant_cpu_to_le32(0xC015000A)
  1281 +#define STATUS_SXS_THREAD_QUERIES_DISABLED __constant_cpu_to_le32(0xC015000B)
  1282 +#define STATUS_SXS_ASSEMBLY_MISSING __constant_cpu_to_le32(0xC015000C)
  1283 +#define STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET __constant_cpu_to_le32(0xC015000E)
  1284 +#define STATUS_SXS_EARLY_DEACTIVATION __constant_cpu_to_le32(0xC015000F)
  1285 +#define STATUS_SXS_INVALID_DEACTIVATION __constant_cpu_to_le32(0xC0150010)
  1286 +#define STATUS_SXS_MULTIPLE_DEACTIVATION __constant_cpu_to_le32(0xC0150011)
  1287 +#define STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY __constant_cpu_to_le32(0xC0150012)
  1288 +#define STATUS_SXS_PROCESS_TERMINATION_REQUESTED __constant_cpu_to_le32(0xC0150013)
  1289 +#define STATUS_SXS_CORRUPT_ACTIVATION_STACK __constant_cpu_to_le32(0xC0150014)
  1290 +#define STATUS_SXS_CORRUPTION __constant_cpu_to_le32(0xC0150015)
  1291 +#define STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE __constant_cpu_to_le32(0xC0150016)
  1292 +#define STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME __constant_cpu_to_le32(0xC0150017)
  1293 +#define STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE __constant_cpu_to_le32(0xC0150018)
  1294 +#define STATUS_SXS_IDENTITY_PARSE_ERROR __constant_cpu_to_le32(0xC0150019)
  1295 +#define STATUS_SXS_COMPONENT_STORE_CORRUPT __constant_cpu_to_le32(0xC015001A)
  1296 +#define STATUS_SXS_FILE_HASH_MISMATCH __constant_cpu_to_le32(0xC015001B)
  1297 +#define STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT __constant_cpu_to_le32(0xC015001C)
  1298 +#define STATUS_SXS_IDENTITIES_DIFFERENT __constant_cpu_to_le32(0xC015001D)
  1299 +#define STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT __constant_cpu_to_le32(0xC015001E)
  1300 +#define STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY __constant_cpu_to_le32(0xC015001F)
  1301 +#define STATUS_ADVANCED_INSTALLER_FAILED __constant_cpu_to_le32(0xC0150020)
  1302 +#define STATUS_XML_ENCODING_MISMATCH __constant_cpu_to_le32(0xC0150021)
  1303 +#define STATUS_SXS_MANIFEST_TOO_BIG __constant_cpu_to_le32(0xC0150022)
  1304 +#define STATUS_SXS_SETTING_NOT_REGISTERED __constant_cpu_to_le32(0xC0150023)
  1305 +#define STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE __constant_cpu_to_le32(0xC0150024)
  1306 +#define STATUS_SMI_PRIMITIVE_INSTALLER_FAILED __constant_cpu_to_le32(0xC0150025)
  1307 +#define STATUS_GENERIC_COMMAND_FAILED __constant_cpu_to_le32(0xC0150026)
  1308 +#define STATUS_SXS_FILE_HASH_MISSING __constant_cpu_to_le32(0xC0150027)
  1309 +#define STATUS_TRANSACTIONAL_CONFLICT __constant_cpu_to_le32(0xC0190001)
  1310 +#define STATUS_INVALID_TRANSACTION __constant_cpu_to_le32(0xC0190002)
  1311 +#define STATUS_TRANSACTION_NOT_ACTIVE __constant_cpu_to_le32(0xC0190003)
  1312 +#define STATUS_TM_INITIALIZATION_FAILED __constant_cpu_to_le32(0xC0190004)
  1313 +#define STATUS_RM_NOT_ACTIVE __constant_cpu_to_le32(0xC0190005)
  1314 +#define STATUS_RM_METADATA_CORRUPT __constant_cpu_to_le32(0xC0190006)
  1315 +#define STATUS_TRANSACTION_NOT_JOINED __constant_cpu_to_le32(0xC0190007)
  1316 +#define STATUS_DIRECTORY_NOT_RM __constant_cpu_to_le32(0xC0190008)
  1317 +#define STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE __constant_cpu_to_le32(0xC019000A)
  1318 +#define STATUS_LOG_RESIZE_INVALID_SIZE __constant_cpu_to_le32(0xC019000B)
  1319 +#define STATUS_REMOTE_FILE_VERSION_MISMATCH __constant_cpu_to_le32(0xC019000C)
  1320 +#define STATUS_CRM_PROTOCOL_ALREADY_EXISTS __constant_cpu_to_le32(0xC019000F)
  1321 +#define STATUS_TRANSACTION_PROPAGATION_FAILED __constant_cpu_to_le32(0xC0190010)
  1322 +#define STATUS_CRM_PROTOCOL_NOT_FOUND __constant_cpu_to_le32(0xC0190011)
  1323 +#define STATUS_TRANSACTION_SUPERIOR_EXISTS __constant_cpu_to_le32(0xC0190012)
  1324 +#define STATUS_TRANSACTION_REQUEST_NOT_VALID __constant_cpu_to_le32(0xC0190013)
  1325 +#define STATUS_TRANSACTION_NOT_REQUESTED __constant_cpu_to_le32(0xC0190014)
  1326 +#define STATUS_TRANSACTION_ALREADY_ABORTED __constant_cpu_to_le32(0xC0190015)
  1327 +#define STATUS_TRANSACTION_ALREADY_COMMITTED __constant_cpu_to_le32(0xC0190016)
  1328 +#define STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER __constant_cpu_to_le32(0xC0190017)
  1329 +#define STATUS_CURRENT_TRANSACTION_NOT_VALID __constant_cpu_to_le32(0xC0190018)
  1330 +#define STATUS_LOG_GROWTH_FAILED __constant_cpu_to_le32(0xC0190019)
  1331 +#define STATUS_OBJECT_NO_LONGER_EXISTS __constant_cpu_to_le32(0xC0190021)
  1332 +#define STATUS_STREAM_MINIVERSION_NOT_FOUND __constant_cpu_to_le32(0xC0190022)
  1333 +#define STATUS_STREAM_MINIVERSION_NOT_VALID __constant_cpu_to_le32(0xC0190023)
  1334 +#define STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION __constant_cpu_to_le32(0xC0190024)
  1335 +#define STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT __constant_cpu_to_le32(0xC0190025)
  1336 +#define STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS __constant_cpu_to_le32(0xC0190026)
  1337 +#define STATUS_HANDLE_NO_LONGER_VALID __constant_cpu_to_le32(0xC0190028)
  1338 +#define STATUS_LOG_CORRUPTION_DETECTED __constant_cpu_to_le32(0xC0190030)
  1339 +#define STATUS_RM_DISCONNECTED __constant_cpu_to_le32(0xC0190032)
  1340 +#define STATUS_ENLISTMENT_NOT_SUPERIOR __constant_cpu_to_le32(0xC0190033)
  1341 +#define STATUS_FILE_IDENTITY_NOT_PERSISTENT __constant_cpu_to_le32(0xC0190036)
  1342 +#define STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY __constant_cpu_to_le32(0xC0190037)
  1343 +#define STATUS_CANT_CROSS_RM_BOUNDARY __constant_cpu_to_le32(0xC0190038)
  1344 +#define STATUS_TXF_DIR_NOT_EMPTY __constant_cpu_to_le32(0xC0190039)
  1345 +#define STATUS_INDOUBT_TRANSACTIONS_EXIST __constant_cpu_to_le32(0xC019003A)
  1346 +#define STATUS_TM_VOLATILE __constant_cpu_to_le32(0xC019003B)
  1347 +#define STATUS_ROLLBACK_TIMER_EXPIRED __constant_cpu_to_le32(0xC019003C)
  1348 +#define STATUS_TXF_ATTRIBUTE_CORRUPT __constant_cpu_to_le32(0xC019003D)
  1349 +#define STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION __constant_cpu_to_le32(0xC019003E)
  1350 +#define STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED __constant_cpu_to_le32(0xC019003F)
  1351 +#define STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE __constant_cpu_to_le32(0xC0190040)
  1352 +#define STATUS_TRANSACTION_REQUIRED_PROMOTION __constant_cpu_to_le32(0xC0190043)
  1353 +#define STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION __constant_cpu_to_le32(0xC0190044)
  1354 +#define STATUS_TRANSACTIONS_NOT_FROZEN __constant_cpu_to_le32(0xC0190045)
  1355 +#define STATUS_TRANSACTION_FREEZE_IN_PROGRESS __constant_cpu_to_le32(0xC0190046)
  1356 +#define STATUS_NOT_SNAPSHOT_VOLUME __constant_cpu_to_le32(0xC0190047)
  1357 +#define STATUS_NO_SAVEPOINT_WITH_OPEN_FILES __constant_cpu_to_le32(0xC0190048)
  1358 +#define STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION __constant_cpu_to_le32(0xC0190049)
  1359 +#define STATUS_TM_IDENTITY_MISMATCH __constant_cpu_to_le32(0xC019004A)
  1360 +#define STATUS_FLOATED_SECTION __constant_cpu_to_le32(0xC019004B)
  1361 +#define STATUS_CANNOT_ACCEPT_TRANSACTED_WORK __constant_cpu_to_le32(0xC019004C)
  1362 +#define STATUS_CANNOT_ABORT_TRANSACTIONS __constant_cpu_to_le32(0xC019004D)
  1363 +#define STATUS_TRANSACTION_NOT_FOUND __constant_cpu_to_le32(0xC019004E)
  1364 +#define STATUS_RESOURCEMANAGER_NOT_FOUND __constant_cpu_to_le32(0xC019004F)
  1365 +#define STATUS_ENLISTMENT_NOT_FOUND __constant_cpu_to_le32(0xC0190050)
  1366 +#define STATUS_TRANSACTIONMANAGER_NOT_FOUND __constant_cpu_to_le32(0xC0190051)
  1367 +#define STATUS_TRANSACTIONMANAGER_NOT_ONLINE __constant_cpu_to_le32(0xC0190052)
  1368 +#define STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION __constant_cpu_to_le32(0xC0190053)
  1369 +#define STATUS_TRANSACTION_NOT_ROOT __constant_cpu_to_le32(0xC0190054)
  1370 +#define STATUS_TRANSACTION_OBJECT_EXPIRED __constant_cpu_to_le32(0xC0190055)
  1371 +#define STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION __constant_cpu_to_le32(0xC0190056)
  1372 +#define STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED __constant_cpu_to_le32(0xC0190057)
  1373 +#define STATUS_TRANSACTION_RECORD_TOO_LONG __constant_cpu_to_le32(0xC0190058)
  1374 +#define STATUS_NO_LINK_TRACKING_IN_TRANSACTION __constant_cpu_to_le32(0xC0190059)
  1375 +#define STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION __constant_cpu_to_le32(0xC019005A)
  1376 +#define STATUS_TRANSACTION_INTEGRITY_VIOLATED __constant_cpu_to_le32(0xC019005B)
  1377 +#define STATUS_LOG_SECTOR_INVALID __constant_cpu_to_le32(0xC01A0001)
  1378 +#define STATUS_LOG_SECTOR_PARITY_INVALID __constant_cpu_to_le32(0xC01A0002)
  1379 +#define STATUS_LOG_SECTOR_REMAPPED __constant_cpu_to_le32(0xC01A0003)
  1380 +#define STATUS_LOG_BLOCK_INCOMPLETE __constant_cpu_to_le32(0xC01A0004)
  1381 +#define STATUS_LOG_INVALID_RANGE __constant_cpu_to_le32(0xC01A0005)
  1382 +#define STATUS_LOG_BLOCKS_EXHAUSTED __constant_cpu_to_le32(0xC01A0006)
  1383 +#define STATUS_LOG_READ_CONTEXT_INVALID __constant_cpu_to_le32(0xC01A0007)
  1384 +#define STATUS_LOG_RESTART_INVALID __constant_cpu_to_le32(0xC01A0008)
  1385 +#define STATUS_LOG_BLOCK_VERSION __constant_cpu_to_le32(0xC01A0009)
  1386 +#define STATUS_LOG_BLOCK_INVALID __constant_cpu_to_le32(0xC01A000A)
  1387 +#define STATUS_LOG_READ_MODE_INVALID __constant_cpu_to_le32(0xC01A000B)
  1388 +#define STATUS_LOG_METADATA_CORRUPT __constant_cpu_to_le32(0xC01A000D)
  1389 +#define STATUS_LOG_METADATA_INVALID __constant_cpu_to_le32(0xC01A000E)
  1390 +#define STATUS_LOG_METADATA_INCONSISTENT __constant_cpu_to_le32(0xC01A000F)
  1391 +#define STATUS_LOG_RESERVATION_INVALID __constant_cpu_to_le32(0xC01A0010)
  1392 +#define STATUS_LOG_CANT_DELETE __constant_cpu_to_le32(0xC01A0011)
  1393 +#define STATUS_LOG_CONTAINER_LIMIT_EXCEEDED __constant_cpu_to_le32(0xC01A0012)
  1394 +#define STATUS_LOG_START_OF_LOG __constant_cpu_to_le32(0xC01A0013)
  1395 +#define STATUS_LOG_POLICY_ALREADY_INSTALLED __constant_cpu_to_le32(0xC01A0014)
  1396 +#define STATUS_LOG_POLICY_NOT_INSTALLED __constant_cpu_to_le32(0xC01A0015)
  1397 +#define STATUS_LOG_POLICY_INVALID __constant_cpu_to_le32(0xC01A0016)
  1398 +#define STATUS_LOG_POLICY_CONFLICT __constant_cpu_to_le32(0xC01A0017)
  1399 +#define STATUS_LOG_PINNED_ARCHIVE_TAIL __constant_cpu_to_le32(0xC01A0018)
  1400 +#define STATUS_LOG_RECORD_NONEXISTENT __constant_cpu_to_le32(0xC01A0019)
  1401 +#define STATUS_LOG_RECORDS_RESERVED_INVALID __constant_cpu_to_le32(0xC01A001A)
  1402 +#define STATUS_LOG_SPACE_RESERVED_INVALID __constant_cpu_to_le32(0xC01A001B)
  1403 +#define STATUS_LOG_TAIL_INVALID __constant_cpu_to_le32(0xC01A001C)
  1404 +#define STATUS_LOG_FULL __constant_cpu_to_le32(0xC01A001D)
  1405 +#define STATUS_LOG_MULTIPLEXED __constant_cpu_to_le32(0xC01A001E)
  1406 +#define STATUS_LOG_DEDICATED __constant_cpu_to_le32(0xC01A001F)
  1407 +#define STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS __constant_cpu_to_le32(0xC01A0020)
  1408 +#define STATUS_LOG_ARCHIVE_IN_PROGRESS __constant_cpu_to_le32(0xC01A0021)
  1409 +#define STATUS_LOG_EPHEMERAL __constant_cpu_to_le32(0xC01A0022)
  1410 +#define STATUS_LOG_NOT_ENOUGH_CONTAINERS __constant_cpu_to_le32(0xC01A0023)
  1411 +#define STATUS_LOG_CLIENT_ALREADY_REGISTERED __constant_cpu_to_le32(0xC01A0024)
  1412 +#define STATUS_LOG_CLIENT_NOT_REGISTERED __constant_cpu_to_le32(0xC01A0025)
  1413 +#define STATUS_LOG_FULL_HANDLER_IN_PROGRESS __constant_cpu_to_le32(0xC01A0026)
  1414 +#define STATUS_LOG_CONTAINER_READ_FAILED __constant_cpu_to_le32(0xC01A0027)
  1415 +#define STATUS_LOG_CONTAINER_WRITE_FAILED __constant_cpu_to_le32(0xC01A0028)
  1416 +#define STATUS_LOG_CONTAINER_OPEN_FAILED __constant_cpu_to_le32(0xC01A0029)
  1417 +#define STATUS_LOG_CONTAINER_STATE_INVALID __constant_cpu_to_le32(0xC01A002A)
  1418 +#define STATUS_LOG_STATE_INVALID __constant_cpu_to_le32(0xC01A002B)
  1419 +#define STATUS_LOG_PINNED __constant_cpu_to_le32(0xC01A002C)
  1420 +#define STATUS_LOG_METADATA_FLUSH_FAILED __constant_cpu_to_le32(0xC01A002D)
  1421 +#define STATUS_LOG_INCONSISTENT_SECURITY __constant_cpu_to_le32(0xC01A002E)
  1422 +#define STATUS_LOG_APPENDED_FLUSH_FAILED __constant_cpu_to_le32(0xC01A002F)
  1423 +#define STATUS_LOG_PINNED_RESERVATION __constant_cpu_to_le32(0xC01A0030)
  1424 +#define STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD __constant_cpu_to_le32(0xC01B00EA)
  1425 +#define STATUS_FLT_NO_HANDLER_DEFINED __constant_cpu_to_le32(0xC01C0001)
  1426 +#define STATUS_FLT_CONTEXT_ALREADY_DEFINED __constant_cpu_to_le32(0xC01C0002)
  1427 +#define STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST __constant_cpu_to_le32(0xC01C0003)
  1428 +#define STATUS_FLT_DISALLOW_FAST_IO __constant_cpu_to_le32(0xC01C0004)
  1429 +#define STATUS_FLT_INVALID_NAME_REQUEST __constant_cpu_to_le32(0xC01C0005)
  1430 +#define STATUS_FLT_NOT_SAFE_TO_POST_OPERATION __constant_cpu_to_le32(0xC01C0006)
  1431 +#define STATUS_FLT_NOT_INITIALIZED __constant_cpu_to_le32(0xC01C0007)
  1432 +#define STATUS_FLT_FILTER_NOT_READY __constant_cpu_to_le32(0xC01C0008)
  1433 +#define STATUS_FLT_POST_OPERATION_CLEANUP __constant_cpu_to_le32(0xC01C0009)
  1434 +#define STATUS_FLT_INTERNAL_ERROR __constant_cpu_to_le32(0xC01C000A)
  1435 +#define STATUS_FLT_DELETING_OBJECT __constant_cpu_to_le32(0xC01C000B)
  1436 +#define STATUS_FLT_MUST_BE_NONPAGED_POOL __constant_cpu_to_le32(0xC01C000C)
  1437 +#define STATUS_FLT_DUPLICATE_ENTRY __constant_cpu_to_le32(0xC01C000D)
  1438 +#define STATUS_FLT_CBDQ_DISABLED __constant_cpu_to_le32(0xC01C000E)
  1439 +#define STATUS_FLT_DO_NOT_ATTACH __constant_cpu_to_le32(0xC01C000F)
  1440 +#define STATUS_FLT_DO_NOT_DETACH __constant_cpu_to_le32(0xC01C0010)
  1441 +#define STATUS_FLT_INSTANCE_ALTITUDE_COLLISION __constant_cpu_to_le32(0xC01C0011)
  1442 +#define STATUS_FLT_INSTANCE_NAME_COLLISION __constant_cpu_to_le32(0xC01C0012)
  1443 +#define STATUS_FLT_FILTER_NOT_FOUND __constant_cpu_to_le32(0xC01C0013)
  1444 +#define STATUS_FLT_VOLUME_NOT_FOUND __constant_cpu_to_le32(0xC01C0014)
  1445 +#define STATUS_FLT_INSTANCE_NOT_FOUND __constant_cpu_to_le32(0xC01C0015)
  1446 +#define STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND __constant_cpu_to_le32(0xC01C0016)
  1447 +#define STATUS_FLT_INVALID_CONTEXT_REGISTRATION __constant_cpu_to_le32(0xC01C0017)
  1448 +#define STATUS_FLT_NAME_CACHE_MISS __constant_cpu_to_le32(0xC01C0018)
  1449 +#define STATUS_FLT_NO_DEVICE_OBJECT __constant_cpu_to_le32(0xC01C0019)
  1450 +#define STATUS_FLT_VOLUME_ALREADY_MOUNTED __constant_cpu_to_le32(0xC01C001A)
  1451 +#define STATUS_FLT_ALREADY_ENLISTED __constant_cpu_to_le32(0xC01C001B)
  1452 +#define STATUS_FLT_CONTEXT_ALREADY_LINKED __constant_cpu_to_le32(0xC01C001C)
  1453 +#define STATUS_FLT_NO_WAITER_FOR_REPLY __constant_cpu_to_le32(0xC01C0020)
  1454 +#define STATUS_MONITOR_NO_DESCRIPTOR __constant_cpu_to_le32(0xC01D0001)
  1455 +#define STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT __constant_cpu_to_le32(0xC01D0002)
  1456 +#define STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM __constant_cpu_to_le32(0xC01D0003)
  1457 +#define STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK __constant_cpu_to_le32(0xC01D0004)
  1458 +#define STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED __constant_cpu_to_le32(0xC01D0005)
  1459 +#define STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK __constant_cpu_to_le32(0xC01D0006)
  1460 +#define STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK __constant_cpu_to_le32(0xC01D0007)
  1461 +#define STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA __constant_cpu_to_le32(0xC01D0008)
  1462 +#define STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK __constant_cpu_to_le32(0xC01D0009)
  1463 +#define STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER __constant_cpu_to_le32(0xC01E0000)
  1464 +#define STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER __constant_cpu_to_le32(0xC01E0001)
  1465 +#define STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER __constant_cpu_to_le32(0xC01E0002)
  1466 +#define STATUS_GRAPHICS_ADAPTER_WAS_RESET __constant_cpu_to_le32(0xC01E0003)
  1467 +#define STATUS_GRAPHICS_INVALID_DRIVER_MODEL __constant_cpu_to_le32(0xC01E0004)
  1468 +#define STATUS_GRAPHICS_PRESENT_MODE_CHANGED __constant_cpu_to_le32(0xC01E0005)
  1469 +#define STATUS_GRAPHICS_PRESENT_OCCLUDED __constant_cpu_to_le32(0xC01E0006)
  1470 +#define STATUS_GRAPHICS_PRESENT_DENIED __constant_cpu_to_le32(0xC01E0007)
  1471 +#define STATUS_GRAPHICS_CANNOTCOLORCONVERT __constant_cpu_to_le32(0xC01E0008)
  1472 +#define STATUS_GRAPHICS_NO_VIDEO_MEMORY __constant_cpu_to_le32(0xC01E0100)
  1473 +#define STATUS_GRAPHICS_CANT_LOCK_MEMORY __constant_cpu_to_le32(0xC01E0101)
  1474 +#define STATUS_GRAPHICS_ALLOCATION_BUSY __constant_cpu_to_le32(0xC01E0102)
  1475 +#define STATUS_GRAPHICS_TOO_MANY_REFERENCES __constant_cpu_to_le32(0xC01E0103)
  1476 +#define STATUS_GRAPHICS_TRY_AGAIN_LATER __constant_cpu_to_le32(0xC01E0104)
  1477 +#define STATUS_GRAPHICS_TRY_AGAIN_NOW __constant_cpu_to_le32(0xC01E0105)
  1478 +#define STATUS_GRAPHICS_ALLOCATION_INVALID __constant_cpu_to_le32(0xC01E0106)
  1479 +#define STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE __constant_cpu_to_le32(0xC01E0107)
  1480 +#define STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED __constant_cpu_to_le32(0xC01E0108)
  1481 +#define STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION __constant_cpu_to_le32(0xC01E0109)
  1482 +#define STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE __constant_cpu_to_le32(0xC01E0110)
  1483 +#define STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION __constant_cpu_to_le32(0xC01E0111)
  1484 +#define STATUS_GRAPHICS_ALLOCATION_CLOSED __constant_cpu_to_le32(0xC01E0112)
  1485 +#define STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE __constant_cpu_to_le32(0xC01E0113)
  1486 +#define STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE __constant_cpu_to_le32(0xC01E0114)
  1487 +#define STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE __constant_cpu_to_le32(0xC01E0115)
  1488 +#define STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST __constant_cpu_to_le32(0xC01E0116)
  1489 +#define STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE __constant_cpu_to_le32(0xC01E0200)
  1490 +#define STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY __constant_cpu_to_le32(0xC01E0300)
  1491 +#define STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0301)
  1492 +#define STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0302)
  1493 +#define STATUS_GRAPHICS_INVALID_VIDPN __constant_cpu_to_le32(0xC01E0303)
  1494 +#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE __constant_cpu_to_le32(0xC01E0304)
  1495 +#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET __constant_cpu_to_le32(0xC01E0305)
  1496 +#define STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0306)
  1497 +#define STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET __constant_cpu_to_le32(0xC01E0308)
  1498 +#define STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET __constant_cpu_to_le32(0xC01E0309)
  1499 +#define STATUS_GRAPHICS_INVALID_FREQUENCY __constant_cpu_to_le32(0xC01E030A)
  1500 +#define STATUS_GRAPHICS_INVALID_ACTIVE_REGION __constant_cpu_to_le32(0xC01E030B)
  1501 +#define STATUS_GRAPHICS_INVALID_TOTAL_REGION __constant_cpu_to_le32(0xC01E030C)
  1502 +#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE __constant_cpu_to_le32(0xC01E0310)
  1503 +#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE __constant_cpu_to_le32(0xC01E0311)
  1504 +#define STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET __constant_cpu_to_le32(0xC01E0312)
  1505 +#define STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY __constant_cpu_to_le32(0xC01E0313)
  1506 +#define STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET __constant_cpu_to_le32(0xC01E0314)
  1507 +#define STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET __constant_cpu_to_le32(0xC01E0315)
  1508 +#define STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET __constant_cpu_to_le32(0xC01E0316)
  1509 +#define STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET __constant_cpu_to_le32(0xC01E0317)
  1510 +#define STATUS_GRAPHICS_TARGET_ALREADY_IN_SET __constant_cpu_to_le32(0xC01E0318)
  1511 +#define STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH __constant_cpu_to_le32(0xC01E0319)
  1512 +#define STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY __constant_cpu_to_le32(0xC01E031A)
  1513 +#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET __constant_cpu_to_le32(0xC01E031B)
  1514 +#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE __constant_cpu_to_le32(0xC01E031C)
  1515 +#define STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET __constant_cpu_to_le32(0xC01E031D)
  1516 +#define STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET __constant_cpu_to_le32(0xC01E031F)
  1517 +#define STATUS_GRAPHICS_STALE_MODESET __constant_cpu_to_le32(0xC01E0320)
  1518 +#define STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET __constant_cpu_to_le32(0xC01E0321)
  1519 +#define STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE __constant_cpu_to_le32(0xC01E0322)
  1520 +#define STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN __constant_cpu_to_le32(0xC01E0323)
  1521 +#define STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE __constant_cpu_to_le32(0xC01E0324)
  1522 +#define STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION __constant_cpu_to_le32(0xC01E0325)
  1523 +#define STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES __constant_cpu_to_le32(0xC01E0326)
  1524 +#define STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY __constant_cpu_to_le32(0xC01E0327)
  1525 +#define STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE __constant_cpu_to_le32(0xC01E0328)
  1526 +#define STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET __constant_cpu_to_le32(0xC01E0329)
  1527 +#define STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET __constant_cpu_to_le32(0xC01E032A)
  1528 +#define STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR __constant_cpu_to_le32(0xC01E032B)
  1529 +#define STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET __constant_cpu_to_le32(0xC01E032C)
  1530 +#define STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET __constant_cpu_to_le32(0xC01E032D)
  1531 +#define STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE __constant_cpu_to_le32(0xC01E032E)
  1532 +#define STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE __constant_cpu_to_le32(0xC01E032F)
  1533 +#define STATUS_GRAPHICS_RESOURCES_NOT_RELATED __constant_cpu_to_le32(0xC01E0330)
  1534 +#define STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE __constant_cpu_to_le32(0xC01E0331)
  1535 +#define STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE __constant_cpu_to_le32(0xC01E0332)
  1536 +#define STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET __constant_cpu_to_le32(0xC01E0333)
  1537 +#define STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER __constant_cpu_to_le32(0xC01E0334)
  1538 +#define STATUS_GRAPHICS_NO_VIDPNMGR __constant_cpu_to_le32(0xC01E0335)
  1539 +#define STATUS_GRAPHICS_NO_ACTIVE_VIDPN __constant_cpu_to_le32(0xC01E0336)
  1540 +#define STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY __constant_cpu_to_le32(0xC01E0337)
  1541 +#define STATUS_GRAPHICS_MONITOR_NOT_CONNECTED __constant_cpu_to_le32(0xC01E0338)
  1542 +#define STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY __constant_cpu_to_le32(0xC01E0339)
  1543 +#define STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE __constant_cpu_to_le32(0xC01E033A)
  1544 +#define STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE __constant_cpu_to_le32(0xC01E033B)
  1545 +#define STATUS_GRAPHICS_INVALID_STRIDE __constant_cpu_to_le32(0xC01E033C)
  1546 +#define STATUS_GRAPHICS_INVALID_PIXELFORMAT __constant_cpu_to_le32(0xC01E033D)
  1547 +#define STATUS_GRAPHICS_INVALID_COLORBASIS __constant_cpu_to_le32(0xC01E033E)
  1548 +#define STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE __constant_cpu_to_le32(0xC01E033F)
  1549 +#define STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY __constant_cpu_to_le32(0xC01E0340)
  1550 +#define STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT __constant_cpu_to_le32(0xC01E0341)
  1551 +#define STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE __constant_cpu_to_le32(0xC01E0342)
  1552 +#define STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN __constant_cpu_to_le32(0xC01E0343)
  1553 +#define STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL __constant_cpu_to_le32(0xC01E0344)
  1554 +#define STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION __constant_cpu_to_le32(0xC01E0345)
  1555 +#define STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0346)
  1556 +#define STATUS_GRAPHICS_INVALID_GAMMA_RAMP __constant_cpu_to_le32(0xC01E0347)
  1557 +#define STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0348)
  1558 +#define STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0349)
  1559 +#define STATUS_GRAPHICS_MODE_NOT_IN_MODESET __constant_cpu_to_le32(0xC01E034A)
  1560 +#define STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON __constant_cpu_to_le32(0xC01E034D)
  1561 +#define STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE __constant_cpu_to_le32(0xC01E034E)
  1562 +#define STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE __constant_cpu_to_le32(0xC01E034F)
  1563 +#define STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS __constant_cpu_to_le32(0xC01E0350)
  1564 +#define STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING __constant_cpu_to_le32(0xC01E0352)
  1565 +#define STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED __constant_cpu_to_le32(0xC01E0353)
  1566 +#define STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS __constant_cpu_to_le32(0xC01E0354)
  1567 +#define STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT __constant_cpu_to_le32(0xC01E0355)
  1568 +#define STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM __constant_cpu_to_le32(0xC01E0356)
  1569 +#define STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN __constant_cpu_to_le32(0xC01E0357)
  1570 +#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT __constant_cpu_to_le32(0xC01E0358)
  1571 +#define STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED __constant_cpu_to_le32(0xC01E0359)
  1572 +#define STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION __constant_cpu_to_le32(0xC01E035A)
  1573 +#define STATUS_GRAPHICS_INVALID_CLIENT_TYPE __constant_cpu_to_le32(0xC01E035B)
  1574 +#define STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET __constant_cpu_to_le32(0xC01E035C)
  1575 +#define STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED __constant_cpu_to_le32(0xC01E0400)
  1576 +#define STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0401)
  1577 +#define STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER __constant_cpu_to_le32(0xC01E0430)
  1578 +#define STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED __constant_cpu_to_le32(0xC01E0431)
  1579 +#define STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED __constant_cpu_to_le32(0xC01E0432)
  1580 +#define STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY __constant_cpu_to_le32(0xC01E0433)
  1581 +#define STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED __constant_cpu_to_le32(0xC01E0434)
  1582 +#define STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON __constant_cpu_to_le32(0xC01E0435)
  1583 +#define STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE __constant_cpu_to_le32(0xC01E0436)
  1584 +#define STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER __constant_cpu_to_le32(0xC01E0438)
  1585 +#define STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED __constant_cpu_to_le32(0xC01E043B)
  1586 +#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS __constant_cpu_to_le32(0xC01E051C)
  1587 +#define STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST __constant_cpu_to_le32(0xC01E051D)
  1588 +#define STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR __constant_cpu_to_le32(0xC01E051E)
  1589 +#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS __constant_cpu_to_le32(0xC01E051F)
  1590 +#define STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0520)
  1591 +#define STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST __constant_cpu_to_le32(0xC01E0521)
  1592 +#define STATUS_GRAPHICS_OPM_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0500)
  1593 +#define STATUS_GRAPHICS_COPP_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0501)
  1594 +#define STATUS_GRAPHICS_UAB_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0502)
  1595 +#define STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS __constant_cpu_to_le32(0xC01E0503)
  1596 +#define STATUS_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL __constant_cpu_to_le32(0xC01E0504)
  1597 +#define STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST __constant_cpu_to_le32(0xC01E0505)
  1598 +#define STATUS_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME __constant_cpu_to_le32(0xC01E0506)
  1599 +#define STATUS_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP __constant_cpu_to_le32(0xC01E0507)
  1600 +#define STATUS_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0508)
  1601 +#define STATUS_GRAPHICS_OPM_INVALID_POINTER __constant_cpu_to_le32(0xC01E050A)
  1602 +#define STATUS_GRAPHICS_OPM_INTERNAL_ERROR __constant_cpu_to_le32(0xC01E050B)
  1603 +#define STATUS_GRAPHICS_OPM_INVALID_HANDLE __constant_cpu_to_le32(0xC01E050C)
  1604 +#define STATUS_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE __constant_cpu_to_le32(0xC01E050D)
  1605 +#define STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH __constant_cpu_to_le32(0xC01E050E)
  1606 +#define STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED __constant_cpu_to_le32(0xC01E050F)
  1607 +#define STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED __constant_cpu_to_le32(0xC01E0510)
  1608 +#define STATUS_GRAPHICS_PVP_HFS_FAILED __constant_cpu_to_le32(0xC01E0511)
  1609 +#define STATUS_GRAPHICS_OPM_INVALID_SRM __constant_cpu_to_le32(0xC01E0512)
  1610 +#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP __constant_cpu_to_le32(0xC01E0513)
  1611 +#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP __constant_cpu_to_le32(0xC01E0514)
  1612 +#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA __constant_cpu_to_le32(0xC01E0515)
  1613 +#define STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET __constant_cpu_to_le32(0xC01E0516)
  1614 +#define STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH __constant_cpu_to_le32(0xC01E0517)
  1615 +#define STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE __constant_cpu_to_le32(0xC01E0518)
  1616 +#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS __constant_cpu_to_le32(0xC01E051A)
  1617 +#define STATUS_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS __constant_cpu_to_le32(0xC01E051B)
  1618 +#define STATUS_GRAPHICS_I2C_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0580)
  1619 +#define STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST __constant_cpu_to_le32(0xC01E0581)
  1620 +#define STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA __constant_cpu_to_le32(0xC01E0582)
  1621 +#define STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA __constant_cpu_to_le32(0xC01E0583)
  1622 +#define STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E0584)
  1623 +#define STATUS_GRAPHICS_DDCCI_INVALID_DATA __constant_cpu_to_le32(0xC01E0585)
  1624 +#define STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE __constant_cpu_to_le32(0xC01E0586)
  1625 +#define STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING __constant_cpu_to_le32(0xC01E0587)
  1626 +#define STATUS_GRAPHICS_MCA_INTERNAL_ERROR __constant_cpu_to_le32(0xC01E0588)
  1627 +#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND __constant_cpu_to_le32(0xC01E0589)
  1628 +#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH __constant_cpu_to_le32(0xC01E058A)
  1629 +#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM __constant_cpu_to_le32(0xC01E058B)
  1630 +#define STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE __constant_cpu_to_le32(0xC01E058C)
  1631 +#define STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS __constant_cpu_to_le32(0xC01E058D)
  1632 +#define STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED __constant_cpu_to_le32(0xC01E05E0)
  1633 +#define STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME __constant_cpu_to_le32(0xC01E05E1)
  1634 +#define STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP __constant_cpu_to_le32(0xC01E05E2)
  1635 +#define STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED __constant_cpu_to_le32(0xC01E05E3)
  1636 +#define STATUS_GRAPHICS_INVALID_POINTER __constant_cpu_to_le32(0xC01E05E4)
  1637 +#define STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE __constant_cpu_to_le32(0xC01E05E5)
  1638 +#define STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL __constant_cpu_to_le32(0xC01E05E6)
  1639 +#define STATUS_GRAPHICS_INTERNAL_ERROR __constant_cpu_to_le32(0xC01E05E7)
  1640 +#define STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS __constant_cpu_to_le32(0xC01E05E8)
  1641 +#define STATUS_FVE_LOCKED_VOLUME __constant_cpu_to_le32(0xC0210000)
  1642 +#define STATUS_FVE_NOT_ENCRYPTED __constant_cpu_to_le32(0xC0210001)
  1643 +#define STATUS_FVE_BAD_INFORMATION __constant_cpu_to_le32(0xC0210002)
  1644 +#define STATUS_FVE_TOO_SMALL __constant_cpu_to_le32(0xC0210003)
  1645 +#define STATUS_FVE_FAILED_WRONG_FS __constant_cpu_to_le32(0xC0210004)
  1646 +#define STATUS_FVE_FAILED_BAD_FS __constant_cpu_to_le32(0xC0210005)
  1647 +#define STATUS_FVE_FS_NOT_EXTENDED __constant_cpu_to_le32(0xC0210006)
  1648 +#define STATUS_FVE_FS_MOUNTED __constant_cpu_to_le32(0xC0210007)
  1649 +#define STATUS_FVE_NO_LICENSE __constant_cpu_to_le32(0xC0210008)
  1650 +#define STATUS_FVE_ACTION_NOT_ALLOWED __constant_cpu_to_le32(0xC0210009)
  1651 +#define STATUS_FVE_BAD_DATA __constant_cpu_to_le32(0xC021000A)
  1652 +#define STATUS_FVE_VOLUME_NOT_BOUND __constant_cpu_to_le32(0xC021000B)
  1653 +#define STATUS_FVE_NOT_DATA_VOLUME __constant_cpu_to_le32(0xC021000C)
  1654 +#define STATUS_FVE_CONV_READ_ERROR __constant_cpu_to_le32(0xC021000D)
  1655 +#define STATUS_FVE_CONV_WRITE_ERROR __constant_cpu_to_le32(0xC021000E)
  1656 +#define STATUS_FVE_OVERLAPPED_UPDATE __constant_cpu_to_le32(0xC021000F)
  1657 +#define STATUS_FVE_FAILED_SECTOR_SIZE __constant_cpu_to_le32(0xC0210010)
  1658 +#define STATUS_FVE_FAILED_AUTHENTICATION __constant_cpu_to_le32(0xC0210011)
  1659 +#define STATUS_FVE_NOT_OS_VOLUME __constant_cpu_to_le32(0xC0210012)
  1660 +#define STATUS_FVE_KEYFILE_NOT_FOUND __constant_cpu_to_le32(0xC0210013)
  1661 +#define STATUS_FVE_KEYFILE_INVALID __constant_cpu_to_le32(0xC0210014)
  1662 +#define STATUS_FVE_KEYFILE_NO_VMK __constant_cpu_to_le32(0xC0210015)
  1663 +#define STATUS_FVE_TPM_DISABLED __constant_cpu_to_le32(0xC0210016)
  1664 +#define STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO __constant_cpu_to_le32(0xC0210017)
  1665 +#define STATUS_FVE_TPM_INVALID_PCR __constant_cpu_to_le32(0xC0210018)
  1666 +#define STATUS_FVE_TPM_NO_VMK __constant_cpu_to_le32(0xC0210019)
  1667 +#define STATUS_FVE_PIN_INVALID __constant_cpu_to_le32(0xC021001A)
  1668 +#define STATUS_FVE_AUTH_INVALID_APPLICATION __constant_cpu_to_le32(0xC021001B)
  1669 +#define STATUS_FVE_AUTH_INVALID_CONFIG __constant_cpu_to_le32(0xC021001C)
  1670 +#define STATUS_FVE_DEBUGGER_ENABLED __constant_cpu_to_le32(0xC021001D)
  1671 +#define STATUS_FVE_DRY_RUN_FAILED __constant_cpu_to_le32(0xC021001E)
  1672 +#define STATUS_FVE_BAD_METADATA_POINTER __constant_cpu_to_le32(0xC021001F)
  1673 +#define STATUS_FVE_OLD_METADATA_COPY __constant_cpu_to_le32(0xC0210020)
  1674 +#define STATUS_FVE_REBOOT_REQUIRED __constant_cpu_to_le32(0xC0210021)
  1675 +#define STATUS_FVE_RAW_ACCESS __constant_cpu_to_le32(0xC0210022)
  1676 +#define STATUS_FVE_RAW_BLOCKED __constant_cpu_to_le32(0xC0210023)
  1677 +#define STATUS_FWP_CALLOUT_NOT_FOUND __constant_cpu_to_le32(0xC0220001)
  1678 +#define STATUS_FWP_CONDITION_NOT_FOUND __constant_cpu_to_le32(0xC0220002)
  1679 +#define STATUS_FWP_FILTER_NOT_FOUND __constant_cpu_to_le32(0xC0220003)
  1680 +#define STATUS_FWP_LAYER_NOT_FOUND __constant_cpu_to_le32(0xC0220004)
  1681 +#define STATUS_FWP_PROVIDER_NOT_FOUND __constant_cpu_to_le32(0xC0220005)
  1682 +#define STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND __constant_cpu_to_le32(0xC0220006)
  1683 +#define STATUS_FWP_SUBLAYER_NOT_FOUND __constant_cpu_to_le32(0xC0220007)
  1684 +#define STATUS_FWP_NOT_FOUND __constant_cpu_to_le32(0xC0220008)
  1685 +#define STATUS_FWP_ALREADY_EXISTS __constant_cpu_to_le32(0xC0220009)
  1686 +#define STATUS_FWP_IN_USE __constant_cpu_to_le32(0xC022000A)
  1687 +#define STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS __constant_cpu_to_le32(0xC022000B)
  1688 +#define STATUS_FWP_WRONG_SESSION __constant_cpu_to_le32(0xC022000C)
  1689 +#define STATUS_FWP_NO_TXN_IN_PROGRESS __constant_cpu_to_le32(0xC022000D)
  1690 +#define STATUS_FWP_TXN_IN_PROGRESS __constant_cpu_to_le32(0xC022000E)
  1691 +#define STATUS_FWP_TXN_ABORTED __constant_cpu_to_le32(0xC022000F)
  1692 +#define STATUS_FWP_SESSION_ABORTED __constant_cpu_to_le32(0xC0220010)
  1693 +#define STATUS_FWP_INCOMPATIBLE_TXN __constant_cpu_to_le32(0xC0220011)
  1694 +#define STATUS_FWP_TIMEOUT __constant_cpu_to_le32(0xC0220012)
  1695 +#define STATUS_FWP_NET_EVENTS_DISABLED __constant_cpu_to_le32(0xC0220013)
  1696 +#define STATUS_FWP_INCOMPATIBLE_LAYER __constant_cpu_to_le32(0xC0220014)
  1697 +#define STATUS_FWP_KM_CLIENTS_ONLY __constant_cpu_to_le32(0xC0220015)
  1698 +#define STATUS_FWP_LIFETIME_MISMATCH __constant_cpu_to_le32(0xC0220016)
  1699 +#define STATUS_FWP_BUILTIN_OBJECT __constant_cpu_to_le32(0xC0220017)
  1700 +#define STATUS_FWP_TOO_MANY_BOOTTIME_FILTERS __constant_cpu_to_le32(0xC0220018)
  1701 +#define STATUS_FWP_TOO_MANY_CALLOUTS __constant_cpu_to_le32(0xC0220018)
  1702 +#define STATUS_FWP_NOTIFICATION_DROPPED __constant_cpu_to_le32(0xC0220019)
  1703 +#define STATUS_FWP_TRAFFIC_MISMATCH __constant_cpu_to_le32(0xC022001A)
  1704 +#define STATUS_FWP_INCOMPATIBLE_SA_STATE __constant_cpu_to_le32(0xC022001B)
  1705 +#define STATUS_FWP_NULL_POINTER __constant_cpu_to_le32(0xC022001C)
  1706 +#define STATUS_FWP_INVALID_ENUMERATOR __constant_cpu_to_le32(0xC022001D)
  1707 +#define STATUS_FWP_INVALID_FLAGS __constant_cpu_to_le32(0xC022001E)
  1708 +#define STATUS_FWP_INVALID_NET_MASK __constant_cpu_to_le32(0xC022001F)
  1709 +#define STATUS_FWP_INVALID_RANGE __constant_cpu_to_le32(0xC0220020)
  1710 +#define STATUS_FWP_INVALID_INTERVAL __constant_cpu_to_le32(0xC0220021)
  1711 +#define STATUS_FWP_ZERO_LENGTH_ARRAY __constant_cpu_to_le32(0xC0220022)
  1712 +#define STATUS_FWP_NULL_DISPLAY_NAME __constant_cpu_to_le32(0xC0220023)
  1713 +#define STATUS_FWP_INVALID_ACTION_TYPE __constant_cpu_to_le32(0xC0220024)
  1714 +#define STATUS_FWP_INVALID_WEIGHT __constant_cpu_to_le32(0xC0220025)
  1715 +#define STATUS_FWP_MATCH_TYPE_MISMATCH __constant_cpu_to_le32(0xC0220026)
  1716 +#define STATUS_FWP_TYPE_MISMATCH __constant_cpu_to_le32(0xC0220027)
  1717 +#define STATUS_FWP_OUT_OF_BOUNDS __constant_cpu_to_le32(0xC0220028)
  1718 +#define STATUS_FWP_RESERVED __constant_cpu_to_le32(0xC0220029)
  1719 +#define STATUS_FWP_DUPLICATE_CONDITION __constant_cpu_to_le32(0xC022002A)
  1720 +#define STATUS_FWP_DUPLICATE_KEYMOD __constant_cpu_to_le32(0xC022002B)
  1721 +#define STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER __constant_cpu_to_le32(0xC022002C)
  1722 +#define STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER __constant_cpu_to_le32(0xC022002D)
  1723 +#define STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER __constant_cpu_to_le32(0xC022002E)
  1724 +#define STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT __constant_cpu_to_le32(0xC022002F)
  1725 +#define STATUS_FWP_INCOMPATIBLE_AUTH_METHOD __constant_cpu_to_le32(0xC0220030)
  1726 +#define STATUS_FWP_INCOMPATIBLE_DH_GROUP __constant_cpu_to_le32(0xC0220031)
  1727 +#define STATUS_FWP_EM_NOT_SUPPORTED __constant_cpu_to_le32(0xC0220032)
  1728 +#define STATUS_FWP_NEVER_MATCH __constant_cpu_to_le32(0xC0220033)
  1729 +#define STATUS_FWP_PROVIDER_CONTEXT_MISMATCH __constant_cpu_to_le32(0xC0220034)
  1730 +#define STATUS_FWP_INVALID_PARAMETER __constant_cpu_to_le32(0xC0220035)
  1731 +#define STATUS_FWP_TOO_MANY_SUBLAYERS __constant_cpu_to_le32(0xC0220036)
  1732 +#define STATUS_FWP_CALLOUT_NOTIFICATION_FAILED __constant_cpu_to_le32(0xC0220037)
  1733 +#define STATUS_FWP_INCOMPATIBLE_AUTH_CONFIG __constant_cpu_to_le32(0xC0220038)
  1734 +#define STATUS_FWP_INCOMPATIBLE_CIPHER_CONFIG __constant_cpu_to_le32(0xC0220039)
  1735 +#define STATUS_FWP_TCPIP_NOT_READY __constant_cpu_to_le32(0xC0220100)
  1736 +#define STATUS_FWP_INJECT_HANDLE_CLOSING __constant_cpu_to_le32(0xC0220101)
  1737 +#define STATUS_FWP_INJECT_HANDLE_STALE __constant_cpu_to_le32(0xC0220102)
  1738 +#define STATUS_FWP_CANNOT_PEND __constant_cpu_to_le32(0xC0220103)
  1739 +#define STATUS_NDIS_CLOSING __constant_cpu_to_le32(0xC0230002)
  1740 +#define STATUS_NDIS_BAD_VERSION __constant_cpu_to_le32(0xC0230004)
  1741 +#define STATUS_NDIS_BAD_CHARACTERISTICS __constant_cpu_to_le32(0xC0230005)
  1742 +#define STATUS_NDIS_ADAPTER_NOT_FOUND __constant_cpu_to_le32(0xC0230006)
  1743 +#define STATUS_NDIS_OPEN_FAILED __constant_cpu_to_le32(0xC0230007)
  1744 +#define STATUS_NDIS_DEVICE_FAILED __constant_cpu_to_le32(0xC0230008)
  1745 +#define STATUS_NDIS_MULTICAST_FULL __constant_cpu_to_le32(0xC0230009)
  1746 +#define STATUS_NDIS_MULTICAST_EXISTS __constant_cpu_to_le32(0xC023000A)
  1747 +#define STATUS_NDIS_MULTICAST_NOT_FOUND __constant_cpu_to_le32(0xC023000B)
  1748 +#define STATUS_NDIS_REQUEST_ABORTED __constant_cpu_to_le32(0xC023000C)
  1749 +#define STATUS_NDIS_RESET_IN_PROGRESS __constant_cpu_to_le32(0xC023000D)
  1750 +#define STATUS_NDIS_INVALID_PACKET __constant_cpu_to_le32(0xC023000F)
  1751 +#define STATUS_NDIS_INVALID_DEVICE_REQUEST __constant_cpu_to_le32(0xC0230010)
  1752 +#define STATUS_NDIS_ADAPTER_NOT_READY __constant_cpu_to_le32(0xC0230011)
  1753 +#define STATUS_NDIS_INVALID_LENGTH __constant_cpu_to_le32(0xC0230014)
  1754 +#define STATUS_NDIS_INVALID_DATA __constant_cpu_to_le32(0xC0230015)
  1755 +#define STATUS_NDIS_BUFFER_TOO_SHORT __constant_cpu_to_le32(0xC0230016)
  1756 +#define STATUS_NDIS_INVALID_OID __constant_cpu_to_le32(0xC0230017)
  1757 +#define STATUS_NDIS_ADAPTER_REMOVED __constant_cpu_to_le32(0xC0230018)
  1758 +#define STATUS_NDIS_UNSUPPORTED_MEDIA __constant_cpu_to_le32(0xC0230019)
  1759 +#define STATUS_NDIS_GROUP_ADDRESS_IN_USE __constant_cpu_to_le32(0xC023001A)
  1760 +#define STATUS_NDIS_FILE_NOT_FOUND __constant_cpu_to_le32(0xC023001B)
  1761 +#define STATUS_NDIS_ERROR_READING_FILE __constant_cpu_to_le32(0xC023001C)
  1762 +#define STATUS_NDIS_ALREADY_MAPPED __constant_cpu_to_le32(0xC023001D)
  1763 +#define STATUS_NDIS_RESOURCE_CONFLICT __constant_cpu_to_le32(0xC023001E)
  1764 +#define STATUS_NDIS_MEDIA_DISCONNECTED __constant_cpu_to_le32(0xC023001F)
  1765 +#define STATUS_NDIS_INVALID_ADDRESS __constant_cpu_to_le32(0xC0230022)
  1766 +#define STATUS_NDIS_PAUSED __constant_cpu_to_le32(0xC023002A)
  1767 +#define STATUS_NDIS_INTERFACE_NOT_FOUND __constant_cpu_to_le32(0xC023002B)
  1768 +#define STATUS_NDIS_UNSUPPORTED_REVISION __constant_cpu_to_le32(0xC023002C)
  1769 +#define STATUS_NDIS_INVALID_PORT __constant_cpu_to_le32(0xC023002D)
  1770 +#define STATUS_NDIS_INVALID_PORT_STATE __constant_cpu_to_le32(0xC023002E)
  1771 +#define STATUS_NDIS_LOW_POWER_STATE __constant_cpu_to_le32(0xC023002F)
  1772 +#define STATUS_NDIS_NOT_SUPPORTED __constant_cpu_to_le32(0xC02300BB)
  1773 +#define STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED __constant_cpu_to_le32(0xC0232000)
  1774 +#define STATUS_NDIS_DOT11_MEDIA_IN_USE __constant_cpu_to_le32(0xC0232001)
  1775 +#define STATUS_NDIS_DOT11_POWER_STATE_INVALID __constant_cpu_to_le32(0xC0232002)
  1776 +#define STATUS_IPSEC_BAD_SPI __constant_cpu_to_le32(0xC0360001)
  1777 +#define STATUS_IPSEC_SA_LIFETIME_EXPIRED __constant_cpu_to_le32(0xC0360002)
  1778 +#define STATUS_IPSEC_WRONG_SA __constant_cpu_to_le32(0xC0360003)
  1779 +#define STATUS_IPSEC_REPLAY_CHECK_FAILED __constant_cpu_to_le32(0xC0360004)
  1780 +#define STATUS_IPSEC_INVALID_PACKET __constant_cpu_to_le32(0xC0360005)
  1781 +#define STATUS_IPSEC_INTEGRITY_CHECK_FAILED __constant_cpu_to_le32(0xC0360006)
  1782 +#define STATUS_IPSEC_CLEAR_TEXT_DROP __constant_cpu_to_le32(0xC0360007)