18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * fs/cifs/smb2status.h 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * SMB2 Status code (network error) definitions 58c2ecf20Sopenharmony_ci * Definitions are from MS-ERREF 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * Copyright (c) International Business Machines Corp., 2009,2011 88c2ecf20Sopenharmony_ci * Author(s): Steve French (sfrench@us.ibm.com) 98c2ecf20Sopenharmony_ci * 108c2ecf20Sopenharmony_ci * This library is free software; you can redistribute it and/or modify 118c2ecf20Sopenharmony_ci * it under the terms of the GNU Lesser General Public License as published 128c2ecf20Sopenharmony_ci * by the Free Software Foundation; either version 2.1 of the License, or 138c2ecf20Sopenharmony_ci * (at your option) any later version. 148c2ecf20Sopenharmony_ci * 158c2ecf20Sopenharmony_ci * This library is distributed in the hope that it will be useful, 168c2ecf20Sopenharmony_ci * but WITHOUT ANY WARRANTY; without even the implied warranty of 178c2ecf20Sopenharmony_ci * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 188c2ecf20Sopenharmony_ci * the GNU Lesser General Public License for more details. 198c2ecf20Sopenharmony_ci * 208c2ecf20Sopenharmony_ci * You should have received a copy of the GNU Lesser General Public License 218c2ecf20Sopenharmony_ci * along with this library; if not, write to the Free Software 228c2ecf20Sopenharmony_ci * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 238c2ecf20Sopenharmony_ci */ 248c2ecf20Sopenharmony_ci 258c2ecf20Sopenharmony_ci/* 268c2ecf20Sopenharmony_ci * 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 278c2ecf20Sopenharmony_ci * SEV C N <-------Facility--------> <------Error Status Code------> 288c2ecf20Sopenharmony_ci * 298c2ecf20Sopenharmony_ci * C is set if "customer defined" error, N bit is reserved and MBZ 308c2ecf20Sopenharmony_ci */ 318c2ecf20Sopenharmony_ci 328c2ecf20Sopenharmony_ci#define STATUS_SEVERITY_SUCCESS __constant_cpu_to_le32(0x0000) 338c2ecf20Sopenharmony_ci#define STATUS_SEVERITY_INFORMATIONAL cpu_to_le32(0x0001) 348c2ecf20Sopenharmony_ci#define STATUS_SEVERITY_WARNING cpu_to_le32(0x0002) 358c2ecf20Sopenharmony_ci#define STATUS_SEVERITY_ERROR cpu_to_le32(0x0003) 368c2ecf20Sopenharmony_ci 378c2ecf20Sopenharmony_cistruct ntstatus { 388c2ecf20Sopenharmony_ci /* Facility is the high 12 bits of the following field */ 398c2ecf20Sopenharmony_ci __le32 Facility; /* low 2 bits Severity, next is Customer, then rsrvd */ 408c2ecf20Sopenharmony_ci __le32 Code; 418c2ecf20Sopenharmony_ci}; 428c2ecf20Sopenharmony_ci 438c2ecf20Sopenharmony_ci#define STATUS_SUCCESS cpu_to_le32(0x00000000) 448c2ecf20Sopenharmony_ci#define STATUS_WAIT_0 cpu_to_le32(0x00000000) 458c2ecf20Sopenharmony_ci#define STATUS_WAIT_1 cpu_to_le32(0x00000001) 468c2ecf20Sopenharmony_ci#define STATUS_WAIT_2 cpu_to_le32(0x00000002) 478c2ecf20Sopenharmony_ci#define STATUS_WAIT_3 cpu_to_le32(0x00000003) 488c2ecf20Sopenharmony_ci#define STATUS_WAIT_63 cpu_to_le32(0x0000003F) 498c2ecf20Sopenharmony_ci#define STATUS_ABANDONED cpu_to_le32(0x00000080) 508c2ecf20Sopenharmony_ci#define STATUS_ABANDONED_WAIT_0 cpu_to_le32(0x00000080) 518c2ecf20Sopenharmony_ci#define STATUS_ABANDONED_WAIT_63 cpu_to_le32(0x000000BF) 528c2ecf20Sopenharmony_ci#define STATUS_USER_APC cpu_to_le32(0x000000C0) 538c2ecf20Sopenharmony_ci#define STATUS_KERNEL_APC cpu_to_le32(0x00000100) 548c2ecf20Sopenharmony_ci#define STATUS_ALERTED cpu_to_le32(0x00000101) 558c2ecf20Sopenharmony_ci#define STATUS_TIMEOUT cpu_to_le32(0x00000102) 568c2ecf20Sopenharmony_ci#define STATUS_PENDING cpu_to_le32(0x00000103) 578c2ecf20Sopenharmony_ci#define STATUS_REPARSE cpu_to_le32(0x00000104) 588c2ecf20Sopenharmony_ci#define STATUS_MORE_ENTRIES cpu_to_le32(0x00000105) 598c2ecf20Sopenharmony_ci#define STATUS_NOT_ALL_ASSIGNED cpu_to_le32(0x00000106) 608c2ecf20Sopenharmony_ci#define STATUS_SOME_NOT_MAPPED cpu_to_le32(0x00000107) 618c2ecf20Sopenharmony_ci#define STATUS_OPLOCK_BREAK_IN_PROGRESS cpu_to_le32(0x00000108) 628c2ecf20Sopenharmony_ci#define STATUS_VOLUME_MOUNTED cpu_to_le32(0x00000109) 638c2ecf20Sopenharmony_ci#define STATUS_RXACT_COMMITTED cpu_to_le32(0x0000010A) 648c2ecf20Sopenharmony_ci#define STATUS_NOTIFY_CLEANUP cpu_to_le32(0x0000010B) 658c2ecf20Sopenharmony_ci#define STATUS_NOTIFY_ENUM_DIR cpu_to_le32(0x0000010C) 668c2ecf20Sopenharmony_ci#define STATUS_NO_QUOTAS_FOR_ACCOUNT cpu_to_le32(0x0000010D) 678c2ecf20Sopenharmony_ci#define STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED cpu_to_le32(0x0000010E) 688c2ecf20Sopenharmony_ci#define STATUS_PAGE_FAULT_TRANSITION cpu_to_le32(0x00000110) 698c2ecf20Sopenharmony_ci#define STATUS_PAGE_FAULT_DEMAND_ZERO cpu_to_le32(0x00000111) 708c2ecf20Sopenharmony_ci#define STATUS_PAGE_FAULT_COPY_ON_WRITE cpu_to_le32(0x00000112) 718c2ecf20Sopenharmony_ci#define STATUS_PAGE_FAULT_GUARD_PAGE cpu_to_le32(0x00000113) 728c2ecf20Sopenharmony_ci#define STATUS_PAGE_FAULT_PAGING_FILE cpu_to_le32(0x00000114) 738c2ecf20Sopenharmony_ci#define STATUS_CACHE_PAGE_LOCKED cpu_to_le32(0x00000115) 748c2ecf20Sopenharmony_ci#define STATUS_CRASH_DUMP cpu_to_le32(0x00000116) 758c2ecf20Sopenharmony_ci#define STATUS_BUFFER_ALL_ZEROS cpu_to_le32(0x00000117) 768c2ecf20Sopenharmony_ci#define STATUS_REPARSE_OBJECT cpu_to_le32(0x00000118) 778c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_REQUIREMENTS_CHANGED cpu_to_le32(0x00000119) 788c2ecf20Sopenharmony_ci#define STATUS_TRANSLATION_COMPLETE cpu_to_le32(0x00000120) 798c2ecf20Sopenharmony_ci#define STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY cpu_to_le32(0x00000121) 808c2ecf20Sopenharmony_ci#define STATUS_NOTHING_TO_TERMINATE cpu_to_le32(0x00000122) 818c2ecf20Sopenharmony_ci#define STATUS_PROCESS_NOT_IN_JOB cpu_to_le32(0x00000123) 828c2ecf20Sopenharmony_ci#define STATUS_PROCESS_IN_JOB cpu_to_le32(0x00000124) 838c2ecf20Sopenharmony_ci#define STATUS_VOLSNAP_HIBERNATE_READY cpu_to_le32(0x00000125) 848c2ecf20Sopenharmony_ci#define STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY cpu_to_le32(0x00000126) 858c2ecf20Sopenharmony_ci#define STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED cpu_to_le32(0x00000127) 868c2ecf20Sopenharmony_ci#define STATUS_INTERRUPT_STILL_CONNECTED cpu_to_le32(0x00000128) 878c2ecf20Sopenharmony_ci#define STATUS_PROCESS_CLONED cpu_to_le32(0x00000129) 888c2ecf20Sopenharmony_ci#define STATUS_FILE_LOCKED_WITH_ONLY_READERS cpu_to_le32(0x0000012A) 898c2ecf20Sopenharmony_ci#define STATUS_FILE_LOCKED_WITH_WRITERS cpu_to_le32(0x0000012B) 908c2ecf20Sopenharmony_ci#define STATUS_RESOURCEMANAGER_READ_ONLY cpu_to_le32(0x00000202) 918c2ecf20Sopenharmony_ci#define STATUS_WAIT_FOR_OPLOCK cpu_to_le32(0x00000367) 928c2ecf20Sopenharmony_ci#define DBG_EXCEPTION_HANDLED cpu_to_le32(0x00010001) 938c2ecf20Sopenharmony_ci#define DBG_CONTINUE cpu_to_le32(0x00010002) 948c2ecf20Sopenharmony_ci#define STATUS_FLT_IO_COMPLETE cpu_to_le32(0x001C0001) 958c2ecf20Sopenharmony_ci#define STATUS_OBJECT_NAME_EXISTS cpu_to_le32(0x40000000) 968c2ecf20Sopenharmony_ci#define STATUS_THREAD_WAS_SUSPENDED cpu_to_le32(0x40000001) 978c2ecf20Sopenharmony_ci#define STATUS_WORKING_SET_LIMIT_RANGE cpu_to_le32(0x40000002) 988c2ecf20Sopenharmony_ci#define STATUS_IMAGE_NOT_AT_BASE cpu_to_le32(0x40000003) 998c2ecf20Sopenharmony_ci#define STATUS_RXACT_STATE_CREATED cpu_to_le32(0x40000004) 1008c2ecf20Sopenharmony_ci#define STATUS_SEGMENT_NOTIFICATION cpu_to_le32(0x40000005) 1018c2ecf20Sopenharmony_ci#define STATUS_LOCAL_USER_SESSION_KEY cpu_to_le32(0x40000006) 1028c2ecf20Sopenharmony_ci#define STATUS_BAD_CURRENT_DIRECTORY cpu_to_le32(0x40000007) 1038c2ecf20Sopenharmony_ci#define STATUS_SERIAL_MORE_WRITES cpu_to_le32(0x40000008) 1048c2ecf20Sopenharmony_ci#define STATUS_REGISTRY_RECOVERED cpu_to_le32(0x40000009) 1058c2ecf20Sopenharmony_ci#define STATUS_FT_READ_RECOVERY_FROM_BACKUP cpu_to_le32(0x4000000A) 1068c2ecf20Sopenharmony_ci#define STATUS_FT_WRITE_RECOVERY cpu_to_le32(0x4000000B) 1078c2ecf20Sopenharmony_ci#define STATUS_SERIAL_COUNTER_TIMEOUT cpu_to_le32(0x4000000C) 1088c2ecf20Sopenharmony_ci#define STATUS_NULL_LM_PASSWORD cpu_to_le32(0x4000000D) 1098c2ecf20Sopenharmony_ci#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH cpu_to_le32(0x4000000E) 1108c2ecf20Sopenharmony_ci#define STATUS_RECEIVE_PARTIAL cpu_to_le32(0x4000000F) 1118c2ecf20Sopenharmony_ci#define STATUS_RECEIVE_EXPEDITED cpu_to_le32(0x40000010) 1128c2ecf20Sopenharmony_ci#define STATUS_RECEIVE_PARTIAL_EXPEDITED cpu_to_le32(0x40000011) 1138c2ecf20Sopenharmony_ci#define STATUS_EVENT_DONE cpu_to_le32(0x40000012) 1148c2ecf20Sopenharmony_ci#define STATUS_EVENT_PENDING cpu_to_le32(0x40000013) 1158c2ecf20Sopenharmony_ci#define STATUS_CHECKING_FILE_SYSTEM cpu_to_le32(0x40000014) 1168c2ecf20Sopenharmony_ci#define STATUS_FATAL_APP_EXIT cpu_to_le32(0x40000015) 1178c2ecf20Sopenharmony_ci#define STATUS_PREDEFINED_HANDLE cpu_to_le32(0x40000016) 1188c2ecf20Sopenharmony_ci#define STATUS_WAS_UNLOCKED cpu_to_le32(0x40000017) 1198c2ecf20Sopenharmony_ci#define STATUS_SERVICE_NOTIFICATION cpu_to_le32(0x40000018) 1208c2ecf20Sopenharmony_ci#define STATUS_WAS_LOCKED cpu_to_le32(0x40000019) 1218c2ecf20Sopenharmony_ci#define STATUS_LOG_HARD_ERROR cpu_to_le32(0x4000001A) 1228c2ecf20Sopenharmony_ci#define STATUS_ALREADY_WIN32 cpu_to_le32(0x4000001B) 1238c2ecf20Sopenharmony_ci#define STATUS_WX86_UNSIMULATE cpu_to_le32(0x4000001C) 1248c2ecf20Sopenharmony_ci#define STATUS_WX86_CONTINUE cpu_to_le32(0x4000001D) 1258c2ecf20Sopenharmony_ci#define STATUS_WX86_SINGLE_STEP cpu_to_le32(0x4000001E) 1268c2ecf20Sopenharmony_ci#define STATUS_WX86_BREAKPOINT cpu_to_le32(0x4000001F) 1278c2ecf20Sopenharmony_ci#define STATUS_WX86_EXCEPTION_CONTINUE cpu_to_le32(0x40000020) 1288c2ecf20Sopenharmony_ci#define STATUS_WX86_EXCEPTION_LASTCHANCE cpu_to_le32(0x40000021) 1298c2ecf20Sopenharmony_ci#define STATUS_WX86_EXCEPTION_CHAIN cpu_to_le32(0x40000022) 1308c2ecf20Sopenharmony_ci#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE cpu_to_le32(0x40000023) 1318c2ecf20Sopenharmony_ci#define STATUS_NO_YIELD_PERFORMED cpu_to_le32(0x40000024) 1328c2ecf20Sopenharmony_ci#define STATUS_TIMER_RESUME_IGNORED cpu_to_le32(0x40000025) 1338c2ecf20Sopenharmony_ci#define STATUS_ARBITRATION_UNHANDLED cpu_to_le32(0x40000026) 1348c2ecf20Sopenharmony_ci#define STATUS_CARDBUS_NOT_SUPPORTED cpu_to_le32(0x40000027) 1358c2ecf20Sopenharmony_ci#define STATUS_WX86_CREATEWX86TIB cpu_to_le32(0x40000028) 1368c2ecf20Sopenharmony_ci#define STATUS_MP_PROCESSOR_MISMATCH cpu_to_le32(0x40000029) 1378c2ecf20Sopenharmony_ci#define STATUS_HIBERNATED cpu_to_le32(0x4000002A) 1388c2ecf20Sopenharmony_ci#define STATUS_RESUME_HIBERNATION cpu_to_le32(0x4000002B) 1398c2ecf20Sopenharmony_ci#define STATUS_FIRMWARE_UPDATED cpu_to_le32(0x4000002C) 1408c2ecf20Sopenharmony_ci#define STATUS_DRIVERS_LEAKING_LOCKED_PAGES cpu_to_le32(0x4000002D) 1418c2ecf20Sopenharmony_ci#define STATUS_MESSAGE_RETRIEVED cpu_to_le32(0x4000002E) 1428c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_POWERSTATE_TRANSITION cpu_to_le32(0x4000002F) 1438c2ecf20Sopenharmony_ci#define STATUS_ALPC_CHECK_COMPLETION_LIST cpu_to_le32(0x40000030) 1448c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION cpu_to_le32(0x40000031) 1458c2ecf20Sopenharmony_ci#define STATUS_ACCESS_AUDIT_BY_POLICY cpu_to_le32(0x40000032) 1468c2ecf20Sopenharmony_ci#define STATUS_ABANDON_HIBERFILE cpu_to_le32(0x40000033) 1478c2ecf20Sopenharmony_ci#define STATUS_BIZRULES_NOT_ENABLED cpu_to_le32(0x40000034) 1488c2ecf20Sopenharmony_ci#define STATUS_WAKE_SYSTEM cpu_to_le32(0x40000294) 1498c2ecf20Sopenharmony_ci#define STATUS_DS_SHUTTING_DOWN cpu_to_le32(0x40000370) 1508c2ecf20Sopenharmony_ci#define DBG_REPLY_LATER cpu_to_le32(0x40010001) 1518c2ecf20Sopenharmony_ci#define DBG_UNABLE_TO_PROVIDE_HANDLE cpu_to_le32(0x40010002) 1528c2ecf20Sopenharmony_ci#define DBG_TERMINATE_THREAD cpu_to_le32(0x40010003) 1538c2ecf20Sopenharmony_ci#define DBG_TERMINATE_PROCESS cpu_to_le32(0x40010004) 1548c2ecf20Sopenharmony_ci#define DBG_CONTROL_C cpu_to_le32(0x40010005) 1558c2ecf20Sopenharmony_ci#define DBG_PRINTEXCEPTION_C cpu_to_le32(0x40010006) 1568c2ecf20Sopenharmony_ci#define DBG_RIPEXCEPTION cpu_to_le32(0x40010007) 1578c2ecf20Sopenharmony_ci#define DBG_CONTROL_BREAK cpu_to_le32(0x40010008) 1588c2ecf20Sopenharmony_ci#define DBG_COMMAND_EXCEPTION cpu_to_le32(0x40010009) 1598c2ecf20Sopenharmony_ci#define RPC_NT_UUID_LOCAL_ONLY cpu_to_le32(0x40020056) 1608c2ecf20Sopenharmony_ci#define RPC_NT_SEND_INCOMPLETE cpu_to_le32(0x400200AF) 1618c2ecf20Sopenharmony_ci#define STATUS_CTX_CDM_CONNECT cpu_to_le32(0x400A0004) 1628c2ecf20Sopenharmony_ci#define STATUS_CTX_CDM_DISCONNECT cpu_to_le32(0x400A0005) 1638c2ecf20Sopenharmony_ci#define STATUS_SXS_RELEASE_ACTIVATION_CONTEXT cpu_to_le32(0x4015000D) 1648c2ecf20Sopenharmony_ci#define STATUS_RECOVERY_NOT_NEEDED cpu_to_le32(0x40190034) 1658c2ecf20Sopenharmony_ci#define STATUS_RM_ALREADY_STARTED cpu_to_le32(0x40190035) 1668c2ecf20Sopenharmony_ci#define STATUS_LOG_NO_RESTART cpu_to_le32(0x401A000C) 1678c2ecf20Sopenharmony_ci#define STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST cpu_to_le32(0x401B00EC) 1688c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PARTIAL_DATA_POPULATED cpu_to_le32(0x401E000A) 1698c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DRIVER_MISMATCH cpu_to_le32(0x401E0117) 1708c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MODE_NOT_PINNED cpu_to_le32(0x401E0307) 1718c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_PREFERRED_MODE cpu_to_le32(0x401E031E) 1728c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DATASET_IS_EMPTY cpu_to_le32(0x401E034B) 1738c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET cpu_to_le32(0x401E034C) 1748c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED cpu_to_le32(0x401E0351) 1758c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS cpu_to_le32(0x401E042F) 1768c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_LEADLINK_START_DEFERRED cpu_to_le32(0x401E0437) 1778c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY cpu_to_le32(0x401E0439) 1788c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_START_DEFERRED cpu_to_le32(0x401E043A) 1798c2ecf20Sopenharmony_ci#define STATUS_NDIS_INDICATION_REQUIRED cpu_to_le32(0x40230001) 1808c2ecf20Sopenharmony_ci#define STATUS_GUARD_PAGE_VIOLATION cpu_to_le32(0x80000001) 1818c2ecf20Sopenharmony_ci#define STATUS_DATATYPE_MISALIGNMENT cpu_to_le32(0x80000002) 1828c2ecf20Sopenharmony_ci#define STATUS_BREAKPOINT cpu_to_le32(0x80000003) 1838c2ecf20Sopenharmony_ci#define STATUS_SINGLE_STEP cpu_to_le32(0x80000004) 1848c2ecf20Sopenharmony_ci#define STATUS_BUFFER_OVERFLOW cpu_to_le32(0x80000005) 1858c2ecf20Sopenharmony_ci#define STATUS_NO_MORE_FILES cpu_to_le32(0x80000006) 1868c2ecf20Sopenharmony_ci#define STATUS_WAKE_SYSTEM_DEBUGGER cpu_to_le32(0x80000007) 1878c2ecf20Sopenharmony_ci#define STATUS_HANDLES_CLOSED cpu_to_le32(0x8000000A) 1888c2ecf20Sopenharmony_ci#define STATUS_NO_INHERITANCE cpu_to_le32(0x8000000B) 1898c2ecf20Sopenharmony_ci#define STATUS_GUID_SUBSTITUTION_MADE cpu_to_le32(0x8000000C) 1908c2ecf20Sopenharmony_ci#define STATUS_PARTIAL_COPY cpu_to_le32(0x8000000D) 1918c2ecf20Sopenharmony_ci#define STATUS_DEVICE_PAPER_EMPTY cpu_to_le32(0x8000000E) 1928c2ecf20Sopenharmony_ci#define STATUS_DEVICE_POWERED_OFF cpu_to_le32(0x8000000F) 1938c2ecf20Sopenharmony_ci#define STATUS_DEVICE_OFF_LINE cpu_to_le32(0x80000010) 1948c2ecf20Sopenharmony_ci#define STATUS_DEVICE_BUSY cpu_to_le32(0x80000011) 1958c2ecf20Sopenharmony_ci#define STATUS_NO_MORE_EAS cpu_to_le32(0x80000012) 1968c2ecf20Sopenharmony_ci#define STATUS_INVALID_EA_NAME cpu_to_le32(0x80000013) 1978c2ecf20Sopenharmony_ci#define STATUS_EA_LIST_INCONSISTENT cpu_to_le32(0x80000014) 1988c2ecf20Sopenharmony_ci#define STATUS_INVALID_EA_FLAG cpu_to_le32(0x80000015) 1998c2ecf20Sopenharmony_ci#define STATUS_VERIFY_REQUIRED cpu_to_le32(0x80000016) 2008c2ecf20Sopenharmony_ci#define STATUS_EXTRANEOUS_INFORMATION cpu_to_le32(0x80000017) 2018c2ecf20Sopenharmony_ci#define STATUS_RXACT_COMMIT_NECESSARY cpu_to_le32(0x80000018) 2028c2ecf20Sopenharmony_ci#define STATUS_NO_MORE_ENTRIES cpu_to_le32(0x8000001A) 2038c2ecf20Sopenharmony_ci#define STATUS_FILEMARK_DETECTED cpu_to_le32(0x8000001B) 2048c2ecf20Sopenharmony_ci#define STATUS_MEDIA_CHANGED cpu_to_le32(0x8000001C) 2058c2ecf20Sopenharmony_ci#define STATUS_BUS_RESET cpu_to_le32(0x8000001D) 2068c2ecf20Sopenharmony_ci#define STATUS_END_OF_MEDIA cpu_to_le32(0x8000001E) 2078c2ecf20Sopenharmony_ci#define STATUS_BEGINNING_OF_MEDIA cpu_to_le32(0x8000001F) 2088c2ecf20Sopenharmony_ci#define STATUS_MEDIA_CHECK cpu_to_le32(0x80000020) 2098c2ecf20Sopenharmony_ci#define STATUS_SETMARK_DETECTED cpu_to_le32(0x80000021) 2108c2ecf20Sopenharmony_ci#define STATUS_NO_DATA_DETECTED cpu_to_le32(0x80000022) 2118c2ecf20Sopenharmony_ci#define STATUS_REDIRECTOR_HAS_OPEN_HANDLES cpu_to_le32(0x80000023) 2128c2ecf20Sopenharmony_ci#define STATUS_SERVER_HAS_OPEN_HANDLES cpu_to_le32(0x80000024) 2138c2ecf20Sopenharmony_ci#define STATUS_ALREADY_DISCONNECTED cpu_to_le32(0x80000025) 2148c2ecf20Sopenharmony_ci#define STATUS_LONGJUMP cpu_to_le32(0x80000026) 2158c2ecf20Sopenharmony_ci#define STATUS_CLEANER_CARTRIDGE_INSTALLED cpu_to_le32(0x80000027) 2168c2ecf20Sopenharmony_ci#define STATUS_PLUGPLAY_QUERY_VETOED cpu_to_le32(0x80000028) 2178c2ecf20Sopenharmony_ci#define STATUS_UNWIND_CONSOLIDATE cpu_to_le32(0x80000029) 2188c2ecf20Sopenharmony_ci#define STATUS_REGISTRY_HIVE_RECOVERED cpu_to_le32(0x8000002A) 2198c2ecf20Sopenharmony_ci#define STATUS_DLL_MIGHT_BE_INSECURE cpu_to_le32(0x8000002B) 2208c2ecf20Sopenharmony_ci#define STATUS_DLL_MIGHT_BE_INCOMPATIBLE cpu_to_le32(0x8000002C) 2218c2ecf20Sopenharmony_ci#define STATUS_STOPPED_ON_SYMLINK cpu_to_le32(0x8000002D) 2228c2ecf20Sopenharmony_ci#define STATUS_DEVICE_REQUIRES_CLEANING cpu_to_le32(0x80000288) 2238c2ecf20Sopenharmony_ci#define STATUS_DEVICE_DOOR_OPEN cpu_to_le32(0x80000289) 2248c2ecf20Sopenharmony_ci#define STATUS_DATA_LOST_REPAIR cpu_to_le32(0x80000803) 2258c2ecf20Sopenharmony_ci#define DBG_EXCEPTION_NOT_HANDLED cpu_to_le32(0x80010001) 2268c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_ALREADY_UP cpu_to_le32(0x80130001) 2278c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_ALREADY_DOWN cpu_to_le32(0x80130002) 2288c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_ALREADY_ONLINE cpu_to_le32(0x80130003) 2298c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE cpu_to_le32(0x80130004) 2308c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_ALREADY_MEMBER cpu_to_le32(0x80130005) 2318c2ecf20Sopenharmony_ci#define STATUS_COULD_NOT_RESIZE_LOG cpu_to_le32(0x80190009) 2328c2ecf20Sopenharmony_ci#define STATUS_NO_TXF_METADATA cpu_to_le32(0x80190029) 2338c2ecf20Sopenharmony_ci#define STATUS_CANT_RECOVER_WITH_HANDLE_OPEN cpu_to_le32(0x80190031) 2348c2ecf20Sopenharmony_ci#define STATUS_TXF_METADATA_ALREADY_PRESENT cpu_to_le32(0x80190041) 2358c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET cpu_to_le32(0x80190042) 2368c2ecf20Sopenharmony_ci#define STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED cpu_to_le32(0x801B00EB) 2378c2ecf20Sopenharmony_ci#define STATUS_FLT_BUFFER_TOO_SMALL cpu_to_le32(0x801C0001) 2388c2ecf20Sopenharmony_ci#define STATUS_FVE_PARTIAL_METADATA cpu_to_le32(0x80210001) 2398c2ecf20Sopenharmony_ci#define STATUS_UNSUCCESSFUL cpu_to_le32(0xC0000001) 2408c2ecf20Sopenharmony_ci#define STATUS_NOT_IMPLEMENTED cpu_to_le32(0xC0000002) 2418c2ecf20Sopenharmony_ci#define STATUS_INVALID_INFO_CLASS cpu_to_le32(0xC0000003) 2428c2ecf20Sopenharmony_ci#define STATUS_INFO_LENGTH_MISMATCH cpu_to_le32(0xC0000004) 2438c2ecf20Sopenharmony_ci#define STATUS_ACCESS_VIOLATION cpu_to_le32(0xC0000005) 2448c2ecf20Sopenharmony_ci#define STATUS_IN_PAGE_ERROR cpu_to_le32(0xC0000006) 2458c2ecf20Sopenharmony_ci#define STATUS_PAGEFILE_QUOTA cpu_to_le32(0xC0000007) 2468c2ecf20Sopenharmony_ci#define STATUS_INVALID_HANDLE cpu_to_le32(0xC0000008) 2478c2ecf20Sopenharmony_ci#define STATUS_BAD_INITIAL_STACK cpu_to_le32(0xC0000009) 2488c2ecf20Sopenharmony_ci#define STATUS_BAD_INITIAL_PC cpu_to_le32(0xC000000A) 2498c2ecf20Sopenharmony_ci#define STATUS_INVALID_CID cpu_to_le32(0xC000000B) 2508c2ecf20Sopenharmony_ci#define STATUS_TIMER_NOT_CANCELED cpu_to_le32(0xC000000C) 2518c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER cpu_to_le32(0xC000000D) 2528c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_DEVICE cpu_to_le32(0xC000000E) 2538c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_FILE cpu_to_le32(0xC000000F) 2548c2ecf20Sopenharmony_ci#define STATUS_INVALID_DEVICE_REQUEST cpu_to_le32(0xC0000010) 2558c2ecf20Sopenharmony_ci#define STATUS_END_OF_FILE cpu_to_le32(0xC0000011) 2568c2ecf20Sopenharmony_ci#define STATUS_WRONG_VOLUME cpu_to_le32(0xC0000012) 2578c2ecf20Sopenharmony_ci#define STATUS_NO_MEDIA_IN_DEVICE cpu_to_le32(0xC0000013) 2588c2ecf20Sopenharmony_ci#define STATUS_UNRECOGNIZED_MEDIA cpu_to_le32(0xC0000014) 2598c2ecf20Sopenharmony_ci#define STATUS_NONEXISTENT_SECTOR cpu_to_le32(0xC0000015) 2608c2ecf20Sopenharmony_ci#define STATUS_MORE_PROCESSING_REQUIRED cpu_to_le32(0xC0000016) 2618c2ecf20Sopenharmony_ci#define STATUS_NO_MEMORY cpu_to_le32(0xC0000017) 2628c2ecf20Sopenharmony_ci#define STATUS_CONFLICTING_ADDRESSES cpu_to_le32(0xC0000018) 2638c2ecf20Sopenharmony_ci#define STATUS_NOT_MAPPED_VIEW cpu_to_le32(0xC0000019) 2648c2ecf20Sopenharmony_ci#define STATUS_UNABLE_TO_FREE_VM cpu_to_le32(0xC000001A) 2658c2ecf20Sopenharmony_ci#define STATUS_UNABLE_TO_DELETE_SECTION cpu_to_le32(0xC000001B) 2668c2ecf20Sopenharmony_ci#define STATUS_INVALID_SYSTEM_SERVICE cpu_to_le32(0xC000001C) 2678c2ecf20Sopenharmony_ci#define STATUS_ILLEGAL_INSTRUCTION cpu_to_le32(0xC000001D) 2688c2ecf20Sopenharmony_ci#define STATUS_INVALID_LOCK_SEQUENCE cpu_to_le32(0xC000001E) 2698c2ecf20Sopenharmony_ci#define STATUS_INVALID_VIEW_SIZE cpu_to_le32(0xC000001F) 2708c2ecf20Sopenharmony_ci#define STATUS_INVALID_FILE_FOR_SECTION cpu_to_le32(0xC0000020) 2718c2ecf20Sopenharmony_ci#define STATUS_ALREADY_COMMITTED cpu_to_le32(0xC0000021) 2728c2ecf20Sopenharmony_ci#define STATUS_ACCESS_DENIED cpu_to_le32(0xC0000022) 2738c2ecf20Sopenharmony_ci#define STATUS_BUFFER_TOO_SMALL cpu_to_le32(0xC0000023) 2748c2ecf20Sopenharmony_ci#define STATUS_OBJECT_TYPE_MISMATCH cpu_to_le32(0xC0000024) 2758c2ecf20Sopenharmony_ci#define STATUS_NONCONTINUABLE_EXCEPTION cpu_to_le32(0xC0000025) 2768c2ecf20Sopenharmony_ci#define STATUS_INVALID_DISPOSITION cpu_to_le32(0xC0000026) 2778c2ecf20Sopenharmony_ci#define STATUS_UNWIND cpu_to_le32(0xC0000027) 2788c2ecf20Sopenharmony_ci#define STATUS_BAD_STACK cpu_to_le32(0xC0000028) 2798c2ecf20Sopenharmony_ci#define STATUS_INVALID_UNWIND_TARGET cpu_to_le32(0xC0000029) 2808c2ecf20Sopenharmony_ci#define STATUS_NOT_LOCKED cpu_to_le32(0xC000002A) 2818c2ecf20Sopenharmony_ci#define STATUS_PARITY_ERROR cpu_to_le32(0xC000002B) 2828c2ecf20Sopenharmony_ci#define STATUS_UNABLE_TO_DECOMMIT_VM cpu_to_le32(0xC000002C) 2838c2ecf20Sopenharmony_ci#define STATUS_NOT_COMMITTED cpu_to_le32(0xC000002D) 2848c2ecf20Sopenharmony_ci#define STATUS_INVALID_PORT_ATTRIBUTES cpu_to_le32(0xC000002E) 2858c2ecf20Sopenharmony_ci#define STATUS_PORT_MESSAGE_TOO_LONG cpu_to_le32(0xC000002F) 2868c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_MIX cpu_to_le32(0xC0000030) 2878c2ecf20Sopenharmony_ci#define STATUS_INVALID_QUOTA_LOWER cpu_to_le32(0xC0000031) 2888c2ecf20Sopenharmony_ci#define STATUS_DISK_CORRUPT_ERROR cpu_to_le32(0xC0000032) 2898c2ecf20Sopenharmony_ci#define STATUS_OBJECT_NAME_INVALID cpu_to_le32(0xC0000033) 2908c2ecf20Sopenharmony_ci#define STATUS_OBJECT_NAME_NOT_FOUND cpu_to_le32(0xC0000034) 2918c2ecf20Sopenharmony_ci#define STATUS_OBJECT_NAME_COLLISION cpu_to_le32(0xC0000035) 2928c2ecf20Sopenharmony_ci#define STATUS_PORT_DISCONNECTED cpu_to_le32(0xC0000037) 2938c2ecf20Sopenharmony_ci#define STATUS_DEVICE_ALREADY_ATTACHED cpu_to_le32(0xC0000038) 2948c2ecf20Sopenharmony_ci#define STATUS_OBJECT_PATH_INVALID cpu_to_le32(0xC0000039) 2958c2ecf20Sopenharmony_ci#define STATUS_OBJECT_PATH_NOT_FOUND cpu_to_le32(0xC000003A) 2968c2ecf20Sopenharmony_ci#define STATUS_OBJECT_PATH_SYNTAX_BAD cpu_to_le32(0xC000003B) 2978c2ecf20Sopenharmony_ci#define STATUS_DATA_OVERRUN cpu_to_le32(0xC000003C) 2988c2ecf20Sopenharmony_ci#define STATUS_DATA_LATE_ERROR cpu_to_le32(0xC000003D) 2998c2ecf20Sopenharmony_ci#define STATUS_DATA_ERROR cpu_to_le32(0xC000003E) 3008c2ecf20Sopenharmony_ci#define STATUS_CRC_ERROR cpu_to_le32(0xC000003F) 3018c2ecf20Sopenharmony_ci#define STATUS_SECTION_TOO_BIG cpu_to_le32(0xC0000040) 3028c2ecf20Sopenharmony_ci#define STATUS_PORT_CONNECTION_REFUSED cpu_to_le32(0xC0000041) 3038c2ecf20Sopenharmony_ci#define STATUS_INVALID_PORT_HANDLE cpu_to_le32(0xC0000042) 3048c2ecf20Sopenharmony_ci#define STATUS_SHARING_VIOLATION cpu_to_le32(0xC0000043) 3058c2ecf20Sopenharmony_ci#define STATUS_QUOTA_EXCEEDED cpu_to_le32(0xC0000044) 3068c2ecf20Sopenharmony_ci#define STATUS_INVALID_PAGE_PROTECTION cpu_to_le32(0xC0000045) 3078c2ecf20Sopenharmony_ci#define STATUS_MUTANT_NOT_OWNED cpu_to_le32(0xC0000046) 3088c2ecf20Sopenharmony_ci#define STATUS_SEMAPHORE_LIMIT_EXCEEDED cpu_to_le32(0xC0000047) 3098c2ecf20Sopenharmony_ci#define STATUS_PORT_ALREADY_SET cpu_to_le32(0xC0000048) 3108c2ecf20Sopenharmony_ci#define STATUS_SECTION_NOT_IMAGE cpu_to_le32(0xC0000049) 3118c2ecf20Sopenharmony_ci#define STATUS_SUSPEND_COUNT_EXCEEDED cpu_to_le32(0xC000004A) 3128c2ecf20Sopenharmony_ci#define STATUS_THREAD_IS_TERMINATING cpu_to_le32(0xC000004B) 3138c2ecf20Sopenharmony_ci#define STATUS_BAD_WORKING_SET_LIMIT cpu_to_le32(0xC000004C) 3148c2ecf20Sopenharmony_ci#define STATUS_INCOMPATIBLE_FILE_MAP cpu_to_le32(0xC000004D) 3158c2ecf20Sopenharmony_ci#define STATUS_SECTION_PROTECTION cpu_to_le32(0xC000004E) 3168c2ecf20Sopenharmony_ci#define STATUS_EAS_NOT_SUPPORTED cpu_to_le32(0xC000004F) 3178c2ecf20Sopenharmony_ci#define STATUS_EA_TOO_LARGE cpu_to_le32(0xC0000050) 3188c2ecf20Sopenharmony_ci#define STATUS_NONEXISTENT_EA_ENTRY cpu_to_le32(0xC0000051) 3198c2ecf20Sopenharmony_ci#define STATUS_NO_EAS_ON_FILE cpu_to_le32(0xC0000052) 3208c2ecf20Sopenharmony_ci#define STATUS_EA_CORRUPT_ERROR cpu_to_le32(0xC0000053) 3218c2ecf20Sopenharmony_ci#define STATUS_FILE_LOCK_CONFLICT cpu_to_le32(0xC0000054) 3228c2ecf20Sopenharmony_ci#define STATUS_LOCK_NOT_GRANTED cpu_to_le32(0xC0000055) 3238c2ecf20Sopenharmony_ci#define STATUS_DELETE_PENDING cpu_to_le32(0xC0000056) 3248c2ecf20Sopenharmony_ci#define STATUS_CTL_FILE_NOT_SUPPORTED cpu_to_le32(0xC0000057) 3258c2ecf20Sopenharmony_ci#define STATUS_UNKNOWN_REVISION cpu_to_le32(0xC0000058) 3268c2ecf20Sopenharmony_ci#define STATUS_REVISION_MISMATCH cpu_to_le32(0xC0000059) 3278c2ecf20Sopenharmony_ci#define STATUS_INVALID_OWNER cpu_to_le32(0xC000005A) 3288c2ecf20Sopenharmony_ci#define STATUS_INVALID_PRIMARY_GROUP cpu_to_le32(0xC000005B) 3298c2ecf20Sopenharmony_ci#define STATUS_NO_IMPERSONATION_TOKEN cpu_to_le32(0xC000005C) 3308c2ecf20Sopenharmony_ci#define STATUS_CANT_DISABLE_MANDATORY cpu_to_le32(0xC000005D) 3318c2ecf20Sopenharmony_ci#define STATUS_NO_LOGON_SERVERS cpu_to_le32(0xC000005E) 3328c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_LOGON_SESSION cpu_to_le32(0xC000005F) 3338c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_PRIVILEGE cpu_to_le32(0xC0000060) 3348c2ecf20Sopenharmony_ci#define STATUS_PRIVILEGE_NOT_HELD cpu_to_le32(0xC0000061) 3358c2ecf20Sopenharmony_ci#define STATUS_INVALID_ACCOUNT_NAME cpu_to_le32(0xC0000062) 3368c2ecf20Sopenharmony_ci#define STATUS_USER_EXISTS cpu_to_le32(0xC0000063) 3378c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_USER cpu_to_le32(0xC0000064) 3388c2ecf20Sopenharmony_ci#define STATUS_GROUP_EXISTS cpu_to_le32(0xC0000065) 3398c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_GROUP cpu_to_le32(0xC0000066) 3408c2ecf20Sopenharmony_ci#define STATUS_MEMBER_IN_GROUP cpu_to_le32(0xC0000067) 3418c2ecf20Sopenharmony_ci#define STATUS_MEMBER_NOT_IN_GROUP cpu_to_le32(0xC0000068) 3428c2ecf20Sopenharmony_ci#define STATUS_LAST_ADMIN cpu_to_le32(0xC0000069) 3438c2ecf20Sopenharmony_ci#define STATUS_WRONG_PASSWORD cpu_to_le32(0xC000006A) 3448c2ecf20Sopenharmony_ci#define STATUS_ILL_FORMED_PASSWORD cpu_to_le32(0xC000006B) 3458c2ecf20Sopenharmony_ci#define STATUS_PASSWORD_RESTRICTION cpu_to_le32(0xC000006C) 3468c2ecf20Sopenharmony_ci#define STATUS_LOGON_FAILURE cpu_to_le32(0xC000006D) 3478c2ecf20Sopenharmony_ci#define STATUS_ACCOUNT_RESTRICTION cpu_to_le32(0xC000006E) 3488c2ecf20Sopenharmony_ci#define STATUS_INVALID_LOGON_HOURS cpu_to_le32(0xC000006F) 3498c2ecf20Sopenharmony_ci#define STATUS_INVALID_WORKSTATION cpu_to_le32(0xC0000070) 3508c2ecf20Sopenharmony_ci#define STATUS_PASSWORD_EXPIRED cpu_to_le32(0xC0000071) 3518c2ecf20Sopenharmony_ci#define STATUS_ACCOUNT_DISABLED cpu_to_le32(0xC0000072) 3528c2ecf20Sopenharmony_ci#define STATUS_NONE_MAPPED cpu_to_le32(0xC0000073) 3538c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_LUIDS_REQUESTED cpu_to_le32(0xC0000074) 3548c2ecf20Sopenharmony_ci#define STATUS_LUIDS_EXHAUSTED cpu_to_le32(0xC0000075) 3558c2ecf20Sopenharmony_ci#define STATUS_INVALID_SUB_AUTHORITY cpu_to_le32(0xC0000076) 3568c2ecf20Sopenharmony_ci#define STATUS_INVALID_ACL cpu_to_le32(0xC0000077) 3578c2ecf20Sopenharmony_ci#define STATUS_INVALID_SID cpu_to_le32(0xC0000078) 3588c2ecf20Sopenharmony_ci#define STATUS_INVALID_SECURITY_DESCR cpu_to_le32(0xC0000079) 3598c2ecf20Sopenharmony_ci#define STATUS_PROCEDURE_NOT_FOUND cpu_to_le32(0xC000007A) 3608c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_FORMAT cpu_to_le32(0xC000007B) 3618c2ecf20Sopenharmony_ci#define STATUS_NO_TOKEN cpu_to_le32(0xC000007C) 3628c2ecf20Sopenharmony_ci#define STATUS_BAD_INHERITANCE_ACL cpu_to_le32(0xC000007D) 3638c2ecf20Sopenharmony_ci#define STATUS_RANGE_NOT_LOCKED cpu_to_le32(0xC000007E) 3648c2ecf20Sopenharmony_ci#define STATUS_DISK_FULL cpu_to_le32(0xC000007F) 3658c2ecf20Sopenharmony_ci#define STATUS_SERVER_DISABLED cpu_to_le32(0xC0000080) 3668c2ecf20Sopenharmony_ci#define STATUS_SERVER_NOT_DISABLED cpu_to_le32(0xC0000081) 3678c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_GUIDS_REQUESTED cpu_to_le32(0xC0000082) 3688c2ecf20Sopenharmony_ci#define STATUS_GUIDS_EXHAUSTED cpu_to_le32(0xC0000083) 3698c2ecf20Sopenharmony_ci#define STATUS_INVALID_ID_AUTHORITY cpu_to_le32(0xC0000084) 3708c2ecf20Sopenharmony_ci#define STATUS_AGENTS_EXHAUSTED cpu_to_le32(0xC0000085) 3718c2ecf20Sopenharmony_ci#define STATUS_INVALID_VOLUME_LABEL cpu_to_le32(0xC0000086) 3728c2ecf20Sopenharmony_ci#define STATUS_SECTION_NOT_EXTENDED cpu_to_le32(0xC0000087) 3738c2ecf20Sopenharmony_ci#define STATUS_NOT_MAPPED_DATA cpu_to_le32(0xC0000088) 3748c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_DATA_NOT_FOUND cpu_to_le32(0xC0000089) 3758c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_TYPE_NOT_FOUND cpu_to_le32(0xC000008A) 3768c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_NAME_NOT_FOUND cpu_to_le32(0xC000008B) 3778c2ecf20Sopenharmony_ci#define STATUS_ARRAY_BOUNDS_EXCEEDED cpu_to_le32(0xC000008C) 3788c2ecf20Sopenharmony_ci#define STATUS_FLOAT_DENORMAL_OPERAND cpu_to_le32(0xC000008D) 3798c2ecf20Sopenharmony_ci#define STATUS_FLOAT_DIVIDE_BY_ZERO cpu_to_le32(0xC000008E) 3808c2ecf20Sopenharmony_ci#define STATUS_FLOAT_INEXACT_RESULT cpu_to_le32(0xC000008F) 3818c2ecf20Sopenharmony_ci#define STATUS_FLOAT_INVALID_OPERATION cpu_to_le32(0xC0000090) 3828c2ecf20Sopenharmony_ci#define STATUS_FLOAT_OVERFLOW cpu_to_le32(0xC0000091) 3838c2ecf20Sopenharmony_ci#define STATUS_FLOAT_STACK_CHECK cpu_to_le32(0xC0000092) 3848c2ecf20Sopenharmony_ci#define STATUS_FLOAT_UNDERFLOW cpu_to_le32(0xC0000093) 3858c2ecf20Sopenharmony_ci#define STATUS_INTEGER_DIVIDE_BY_ZERO cpu_to_le32(0xC0000094) 3868c2ecf20Sopenharmony_ci#define STATUS_INTEGER_OVERFLOW cpu_to_le32(0xC0000095) 3878c2ecf20Sopenharmony_ci#define STATUS_PRIVILEGED_INSTRUCTION cpu_to_le32(0xC0000096) 3888c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_PAGING_FILES cpu_to_le32(0xC0000097) 3898c2ecf20Sopenharmony_ci#define STATUS_FILE_INVALID cpu_to_le32(0xC0000098) 3908c2ecf20Sopenharmony_ci#define STATUS_ALLOTTED_SPACE_EXCEEDED cpu_to_le32(0xC0000099) 3918c2ecf20Sopenharmony_ci#define STATUS_INSUFFICIENT_RESOURCES cpu_to_le32(0xC000009A) 3928c2ecf20Sopenharmony_ci#define STATUS_DFS_EXIT_PATH_FOUND cpu_to_le32(0xC000009B) 3938c2ecf20Sopenharmony_ci#define STATUS_DEVICE_DATA_ERROR cpu_to_le32(0xC000009C) 3948c2ecf20Sopenharmony_ci#define STATUS_DEVICE_NOT_CONNECTED cpu_to_le32(0xC000009D) 3958c2ecf20Sopenharmony_ci#define STATUS_DEVICE_POWER_FAILURE cpu_to_le32(0xC000009E) 3968c2ecf20Sopenharmony_ci#define STATUS_FREE_VM_NOT_AT_BASE cpu_to_le32(0xC000009F) 3978c2ecf20Sopenharmony_ci#define STATUS_MEMORY_NOT_ALLOCATED cpu_to_le32(0xC00000A0) 3988c2ecf20Sopenharmony_ci#define STATUS_WORKING_SET_QUOTA cpu_to_le32(0xC00000A1) 3998c2ecf20Sopenharmony_ci#define STATUS_MEDIA_WRITE_PROTECTED cpu_to_le32(0xC00000A2) 4008c2ecf20Sopenharmony_ci#define STATUS_DEVICE_NOT_READY cpu_to_le32(0xC00000A3) 4018c2ecf20Sopenharmony_ci#define STATUS_INVALID_GROUP_ATTRIBUTES cpu_to_le32(0xC00000A4) 4028c2ecf20Sopenharmony_ci#define STATUS_BAD_IMPERSONATION_LEVEL cpu_to_le32(0xC00000A5) 4038c2ecf20Sopenharmony_ci#define STATUS_CANT_OPEN_ANONYMOUS cpu_to_le32(0xC00000A6) 4048c2ecf20Sopenharmony_ci#define STATUS_BAD_VALIDATION_CLASS cpu_to_le32(0xC00000A7) 4058c2ecf20Sopenharmony_ci#define STATUS_BAD_TOKEN_TYPE cpu_to_le32(0xC00000A8) 4068c2ecf20Sopenharmony_ci#define STATUS_BAD_MASTER_BOOT_RECORD cpu_to_le32(0xC00000A9) 4078c2ecf20Sopenharmony_ci#define STATUS_INSTRUCTION_MISALIGNMENT cpu_to_le32(0xC00000AA) 4088c2ecf20Sopenharmony_ci#define STATUS_INSTANCE_NOT_AVAILABLE cpu_to_le32(0xC00000AB) 4098c2ecf20Sopenharmony_ci#define STATUS_PIPE_NOT_AVAILABLE cpu_to_le32(0xC00000AC) 4108c2ecf20Sopenharmony_ci#define STATUS_INVALID_PIPE_STATE cpu_to_le32(0xC00000AD) 4118c2ecf20Sopenharmony_ci#define STATUS_PIPE_BUSY cpu_to_le32(0xC00000AE) 4128c2ecf20Sopenharmony_ci#define STATUS_ILLEGAL_FUNCTION cpu_to_le32(0xC00000AF) 4138c2ecf20Sopenharmony_ci#define STATUS_PIPE_DISCONNECTED cpu_to_le32(0xC00000B0) 4148c2ecf20Sopenharmony_ci#define STATUS_PIPE_CLOSING cpu_to_le32(0xC00000B1) 4158c2ecf20Sopenharmony_ci#define STATUS_PIPE_CONNECTED cpu_to_le32(0xC00000B2) 4168c2ecf20Sopenharmony_ci#define STATUS_PIPE_LISTENING cpu_to_le32(0xC00000B3) 4178c2ecf20Sopenharmony_ci#define STATUS_INVALID_READ_MODE cpu_to_le32(0xC00000B4) 4188c2ecf20Sopenharmony_ci#define STATUS_IO_TIMEOUT cpu_to_le32(0xC00000B5) 4198c2ecf20Sopenharmony_ci#define STATUS_FILE_FORCED_CLOSED cpu_to_le32(0xC00000B6) 4208c2ecf20Sopenharmony_ci#define STATUS_PROFILING_NOT_STARTED cpu_to_le32(0xC00000B7) 4218c2ecf20Sopenharmony_ci#define STATUS_PROFILING_NOT_STOPPED cpu_to_le32(0xC00000B8) 4228c2ecf20Sopenharmony_ci#define STATUS_COULD_NOT_INTERPRET cpu_to_le32(0xC00000B9) 4238c2ecf20Sopenharmony_ci#define STATUS_FILE_IS_A_DIRECTORY cpu_to_le32(0xC00000BA) 4248c2ecf20Sopenharmony_ci#define STATUS_NOT_SUPPORTED cpu_to_le32(0xC00000BB) 4258c2ecf20Sopenharmony_ci#define STATUS_REMOTE_NOT_LISTENING cpu_to_le32(0xC00000BC) 4268c2ecf20Sopenharmony_ci#define STATUS_DUPLICATE_NAME cpu_to_le32(0xC00000BD) 4278c2ecf20Sopenharmony_ci#define STATUS_BAD_NETWORK_PATH cpu_to_le32(0xC00000BE) 4288c2ecf20Sopenharmony_ci#define STATUS_NETWORK_BUSY cpu_to_le32(0xC00000BF) 4298c2ecf20Sopenharmony_ci#define STATUS_DEVICE_DOES_NOT_EXIST cpu_to_le32(0xC00000C0) 4308c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_COMMANDS cpu_to_le32(0xC00000C1) 4318c2ecf20Sopenharmony_ci#define STATUS_ADAPTER_HARDWARE_ERROR cpu_to_le32(0xC00000C2) 4328c2ecf20Sopenharmony_ci#define STATUS_INVALID_NETWORK_RESPONSE cpu_to_le32(0xC00000C3) 4338c2ecf20Sopenharmony_ci#define STATUS_UNEXPECTED_NETWORK_ERROR cpu_to_le32(0xC00000C4) 4348c2ecf20Sopenharmony_ci#define STATUS_BAD_REMOTE_ADAPTER cpu_to_le32(0xC00000C5) 4358c2ecf20Sopenharmony_ci#define STATUS_PRINT_QUEUE_FULL cpu_to_le32(0xC00000C6) 4368c2ecf20Sopenharmony_ci#define STATUS_NO_SPOOL_SPACE cpu_to_le32(0xC00000C7) 4378c2ecf20Sopenharmony_ci#define STATUS_PRINT_CANCELLED cpu_to_le32(0xC00000C8) 4388c2ecf20Sopenharmony_ci#define STATUS_NETWORK_NAME_DELETED cpu_to_le32(0xC00000C9) 4398c2ecf20Sopenharmony_ci#define STATUS_NETWORK_ACCESS_DENIED cpu_to_le32(0xC00000CA) 4408c2ecf20Sopenharmony_ci#define STATUS_BAD_DEVICE_TYPE cpu_to_le32(0xC00000CB) 4418c2ecf20Sopenharmony_ci#define STATUS_BAD_NETWORK_NAME cpu_to_le32(0xC00000CC) 4428c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_NAMES cpu_to_le32(0xC00000CD) 4438c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_SESSIONS cpu_to_le32(0xC00000CE) 4448c2ecf20Sopenharmony_ci#define STATUS_SHARING_PAUSED cpu_to_le32(0xC00000CF) 4458c2ecf20Sopenharmony_ci#define STATUS_REQUEST_NOT_ACCEPTED cpu_to_le32(0xC00000D0) 4468c2ecf20Sopenharmony_ci#define STATUS_REDIRECTOR_PAUSED cpu_to_le32(0xC00000D1) 4478c2ecf20Sopenharmony_ci#define STATUS_NET_WRITE_FAULT cpu_to_le32(0xC00000D2) 4488c2ecf20Sopenharmony_ci#define STATUS_PROFILING_AT_LIMIT cpu_to_le32(0xC00000D3) 4498c2ecf20Sopenharmony_ci#define STATUS_NOT_SAME_DEVICE cpu_to_le32(0xC00000D4) 4508c2ecf20Sopenharmony_ci#define STATUS_FILE_RENAMED cpu_to_le32(0xC00000D5) 4518c2ecf20Sopenharmony_ci#define STATUS_VIRTUAL_CIRCUIT_CLOSED cpu_to_le32(0xC00000D6) 4528c2ecf20Sopenharmony_ci#define STATUS_NO_SECURITY_ON_OBJECT cpu_to_le32(0xC00000D7) 4538c2ecf20Sopenharmony_ci#define STATUS_CANT_WAIT cpu_to_le32(0xC00000D8) 4548c2ecf20Sopenharmony_ci#define STATUS_PIPE_EMPTY cpu_to_le32(0xC00000D9) 4558c2ecf20Sopenharmony_ci#define STATUS_CANT_ACCESS_DOMAIN_INFO cpu_to_le32(0xC00000DA) 4568c2ecf20Sopenharmony_ci#define STATUS_CANT_TERMINATE_SELF cpu_to_le32(0xC00000DB) 4578c2ecf20Sopenharmony_ci#define STATUS_INVALID_SERVER_STATE cpu_to_le32(0xC00000DC) 4588c2ecf20Sopenharmony_ci#define STATUS_INVALID_DOMAIN_STATE cpu_to_le32(0xC00000DD) 4598c2ecf20Sopenharmony_ci#define STATUS_INVALID_DOMAIN_ROLE cpu_to_le32(0xC00000DE) 4608c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_DOMAIN cpu_to_le32(0xC00000DF) 4618c2ecf20Sopenharmony_ci#define STATUS_DOMAIN_EXISTS cpu_to_le32(0xC00000E0) 4628c2ecf20Sopenharmony_ci#define STATUS_DOMAIN_LIMIT_EXCEEDED cpu_to_le32(0xC00000E1) 4638c2ecf20Sopenharmony_ci#define STATUS_OPLOCK_NOT_GRANTED cpu_to_le32(0xC00000E2) 4648c2ecf20Sopenharmony_ci#define STATUS_INVALID_OPLOCK_PROTOCOL cpu_to_le32(0xC00000E3) 4658c2ecf20Sopenharmony_ci#define STATUS_INTERNAL_DB_CORRUPTION cpu_to_le32(0xC00000E4) 4668c2ecf20Sopenharmony_ci#define STATUS_INTERNAL_ERROR cpu_to_le32(0xC00000E5) 4678c2ecf20Sopenharmony_ci#define STATUS_GENERIC_NOT_MAPPED cpu_to_le32(0xC00000E6) 4688c2ecf20Sopenharmony_ci#define STATUS_BAD_DESCRIPTOR_FORMAT cpu_to_le32(0xC00000E7) 4698c2ecf20Sopenharmony_ci#define STATUS_INVALID_USER_BUFFER cpu_to_le32(0xC00000E8) 4708c2ecf20Sopenharmony_ci#define STATUS_UNEXPECTED_IO_ERROR cpu_to_le32(0xC00000E9) 4718c2ecf20Sopenharmony_ci#define STATUS_UNEXPECTED_MM_CREATE_ERR cpu_to_le32(0xC00000EA) 4728c2ecf20Sopenharmony_ci#define STATUS_UNEXPECTED_MM_MAP_ERROR cpu_to_le32(0xC00000EB) 4738c2ecf20Sopenharmony_ci#define STATUS_UNEXPECTED_MM_EXTEND_ERR cpu_to_le32(0xC00000EC) 4748c2ecf20Sopenharmony_ci#define STATUS_NOT_LOGON_PROCESS cpu_to_le32(0xC00000ED) 4758c2ecf20Sopenharmony_ci#define STATUS_LOGON_SESSION_EXISTS cpu_to_le32(0xC00000EE) 4768c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_1 cpu_to_le32(0xC00000EF) 4778c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_2 cpu_to_le32(0xC00000F0) 4788c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_3 cpu_to_le32(0xC00000F1) 4798c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_4 cpu_to_le32(0xC00000F2) 4808c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_5 cpu_to_le32(0xC00000F3) 4818c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_6 cpu_to_le32(0xC00000F4) 4828c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_7 cpu_to_le32(0xC00000F5) 4838c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_8 cpu_to_le32(0xC00000F6) 4848c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_9 cpu_to_le32(0xC00000F7) 4858c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_10 cpu_to_le32(0xC00000F8) 4868c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_11 cpu_to_le32(0xC00000F9) 4878c2ecf20Sopenharmony_ci#define STATUS_INVALID_PARAMETER_12 cpu_to_le32(0xC00000FA) 4888c2ecf20Sopenharmony_ci#define STATUS_REDIRECTOR_NOT_STARTED cpu_to_le32(0xC00000FB) 4898c2ecf20Sopenharmony_ci#define STATUS_REDIRECTOR_STARTED cpu_to_le32(0xC00000FC) 4908c2ecf20Sopenharmony_ci#define STATUS_STACK_OVERFLOW cpu_to_le32(0xC00000FD) 4918c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_PACKAGE cpu_to_le32(0xC00000FE) 4928c2ecf20Sopenharmony_ci#define STATUS_BAD_FUNCTION_TABLE cpu_to_le32(0xC00000FF) 4938c2ecf20Sopenharmony_ci#define STATUS_VARIABLE_NOT_FOUND cpu_to_le32(0xC0000100) 4948c2ecf20Sopenharmony_ci#define STATUS_DIRECTORY_NOT_EMPTY cpu_to_le32(0xC0000101) 4958c2ecf20Sopenharmony_ci#define STATUS_FILE_CORRUPT_ERROR cpu_to_le32(0xC0000102) 4968c2ecf20Sopenharmony_ci#define STATUS_NOT_A_DIRECTORY cpu_to_le32(0xC0000103) 4978c2ecf20Sopenharmony_ci#define STATUS_BAD_LOGON_SESSION_STATE cpu_to_le32(0xC0000104) 4988c2ecf20Sopenharmony_ci#define STATUS_LOGON_SESSION_COLLISION cpu_to_le32(0xC0000105) 4998c2ecf20Sopenharmony_ci#define STATUS_NAME_TOO_LONG cpu_to_le32(0xC0000106) 5008c2ecf20Sopenharmony_ci#define STATUS_FILES_OPEN cpu_to_le32(0xC0000107) 5018c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_IN_USE cpu_to_le32(0xC0000108) 5028c2ecf20Sopenharmony_ci#define STATUS_MESSAGE_NOT_FOUND cpu_to_le32(0xC0000109) 5038c2ecf20Sopenharmony_ci#define STATUS_PROCESS_IS_TERMINATING cpu_to_le32(0xC000010A) 5048c2ecf20Sopenharmony_ci#define STATUS_INVALID_LOGON_TYPE cpu_to_le32(0xC000010B) 5058c2ecf20Sopenharmony_ci#define STATUS_NO_GUID_TRANSLATION cpu_to_le32(0xC000010C) 5068c2ecf20Sopenharmony_ci#define STATUS_CANNOT_IMPERSONATE cpu_to_le32(0xC000010D) 5078c2ecf20Sopenharmony_ci#define STATUS_IMAGE_ALREADY_LOADED cpu_to_le32(0xC000010E) 5088c2ecf20Sopenharmony_ci#define STATUS_ABIOS_NOT_PRESENT cpu_to_le32(0xC000010F) 5098c2ecf20Sopenharmony_ci#define STATUS_ABIOS_LID_NOT_EXIST cpu_to_le32(0xC0000110) 5108c2ecf20Sopenharmony_ci#define STATUS_ABIOS_LID_ALREADY_OWNED cpu_to_le32(0xC0000111) 5118c2ecf20Sopenharmony_ci#define STATUS_ABIOS_NOT_LID_OWNER cpu_to_le32(0xC0000112) 5128c2ecf20Sopenharmony_ci#define STATUS_ABIOS_INVALID_COMMAND cpu_to_le32(0xC0000113) 5138c2ecf20Sopenharmony_ci#define STATUS_ABIOS_INVALID_LID cpu_to_le32(0xC0000114) 5148c2ecf20Sopenharmony_ci#define STATUS_ABIOS_SELECTOR_NOT_AVAILABLE cpu_to_le32(0xC0000115) 5158c2ecf20Sopenharmony_ci#define STATUS_ABIOS_INVALID_SELECTOR cpu_to_le32(0xC0000116) 5168c2ecf20Sopenharmony_ci#define STATUS_NO_LDT cpu_to_le32(0xC0000117) 5178c2ecf20Sopenharmony_ci#define STATUS_INVALID_LDT_SIZE cpu_to_le32(0xC0000118) 5188c2ecf20Sopenharmony_ci#define STATUS_INVALID_LDT_OFFSET cpu_to_le32(0xC0000119) 5198c2ecf20Sopenharmony_ci#define STATUS_INVALID_LDT_DESCRIPTOR cpu_to_le32(0xC000011A) 5208c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_NE_FORMAT cpu_to_le32(0xC000011B) 5218c2ecf20Sopenharmony_ci#define STATUS_RXACT_INVALID_STATE cpu_to_le32(0xC000011C) 5228c2ecf20Sopenharmony_ci#define STATUS_RXACT_COMMIT_FAILURE cpu_to_le32(0xC000011D) 5238c2ecf20Sopenharmony_ci#define STATUS_MAPPED_FILE_SIZE_ZERO cpu_to_le32(0xC000011E) 5248c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_OPENED_FILES cpu_to_le32(0xC000011F) 5258c2ecf20Sopenharmony_ci#define STATUS_CANCELLED cpu_to_le32(0xC0000120) 5268c2ecf20Sopenharmony_ci#define STATUS_CANNOT_DELETE cpu_to_le32(0xC0000121) 5278c2ecf20Sopenharmony_ci#define STATUS_INVALID_COMPUTER_NAME cpu_to_le32(0xC0000122) 5288c2ecf20Sopenharmony_ci#define STATUS_FILE_DELETED cpu_to_le32(0xC0000123) 5298c2ecf20Sopenharmony_ci#define STATUS_SPECIAL_ACCOUNT cpu_to_le32(0xC0000124) 5308c2ecf20Sopenharmony_ci#define STATUS_SPECIAL_GROUP cpu_to_le32(0xC0000125) 5318c2ecf20Sopenharmony_ci#define STATUS_SPECIAL_USER cpu_to_le32(0xC0000126) 5328c2ecf20Sopenharmony_ci#define STATUS_MEMBERS_PRIMARY_GROUP cpu_to_le32(0xC0000127) 5338c2ecf20Sopenharmony_ci#define STATUS_FILE_CLOSED cpu_to_le32(0xC0000128) 5348c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_THREADS cpu_to_le32(0xC0000129) 5358c2ecf20Sopenharmony_ci#define STATUS_THREAD_NOT_IN_PROCESS cpu_to_le32(0xC000012A) 5368c2ecf20Sopenharmony_ci#define STATUS_TOKEN_ALREADY_IN_USE cpu_to_le32(0xC000012B) 5378c2ecf20Sopenharmony_ci#define STATUS_PAGEFILE_QUOTA_EXCEEDED cpu_to_le32(0xC000012C) 5388c2ecf20Sopenharmony_ci#define STATUS_COMMITMENT_LIMIT cpu_to_le32(0xC000012D) 5398c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_LE_FORMAT cpu_to_le32(0xC000012E) 5408c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_NOT_MZ cpu_to_le32(0xC000012F) 5418c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_PROTECT cpu_to_le32(0xC0000130) 5428c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_WIN_16 cpu_to_le32(0xC0000131) 5438c2ecf20Sopenharmony_ci#define STATUS_LOGON_SERVER_CONFLICT cpu_to_le32(0xC0000132) 5448c2ecf20Sopenharmony_ci#define STATUS_TIME_DIFFERENCE_AT_DC cpu_to_le32(0xC0000133) 5458c2ecf20Sopenharmony_ci#define STATUS_SYNCHRONIZATION_REQUIRED cpu_to_le32(0xC0000134) 5468c2ecf20Sopenharmony_ci#define STATUS_DLL_NOT_FOUND cpu_to_le32(0xC0000135) 5478c2ecf20Sopenharmony_ci#define STATUS_OPEN_FAILED cpu_to_le32(0xC0000136) 5488c2ecf20Sopenharmony_ci#define STATUS_IO_PRIVILEGE_FAILED cpu_to_le32(0xC0000137) 5498c2ecf20Sopenharmony_ci#define STATUS_ORDINAL_NOT_FOUND cpu_to_le32(0xC0000138) 5508c2ecf20Sopenharmony_ci#define STATUS_ENTRYPOINT_NOT_FOUND cpu_to_le32(0xC0000139) 5518c2ecf20Sopenharmony_ci#define STATUS_CONTROL_C_EXIT cpu_to_le32(0xC000013A) 5528c2ecf20Sopenharmony_ci#define STATUS_LOCAL_DISCONNECT cpu_to_le32(0xC000013B) 5538c2ecf20Sopenharmony_ci#define STATUS_REMOTE_DISCONNECT cpu_to_le32(0xC000013C) 5548c2ecf20Sopenharmony_ci#define STATUS_REMOTE_RESOURCES cpu_to_le32(0xC000013D) 5558c2ecf20Sopenharmony_ci#define STATUS_LINK_FAILED cpu_to_le32(0xC000013E) 5568c2ecf20Sopenharmony_ci#define STATUS_LINK_TIMEOUT cpu_to_le32(0xC000013F) 5578c2ecf20Sopenharmony_ci#define STATUS_INVALID_CONNECTION cpu_to_le32(0xC0000140) 5588c2ecf20Sopenharmony_ci#define STATUS_INVALID_ADDRESS cpu_to_le32(0xC0000141) 5598c2ecf20Sopenharmony_ci#define STATUS_DLL_INIT_FAILED cpu_to_le32(0xC0000142) 5608c2ecf20Sopenharmony_ci#define STATUS_MISSING_SYSTEMFILE cpu_to_le32(0xC0000143) 5618c2ecf20Sopenharmony_ci#define STATUS_UNHANDLED_EXCEPTION cpu_to_le32(0xC0000144) 5628c2ecf20Sopenharmony_ci#define STATUS_APP_INIT_FAILURE cpu_to_le32(0xC0000145) 5638c2ecf20Sopenharmony_ci#define STATUS_PAGEFILE_CREATE_FAILED cpu_to_le32(0xC0000146) 5648c2ecf20Sopenharmony_ci#define STATUS_NO_PAGEFILE cpu_to_le32(0xC0000147) 5658c2ecf20Sopenharmony_ci#define STATUS_INVALID_LEVEL cpu_to_le32(0xC0000148) 5668c2ecf20Sopenharmony_ci#define STATUS_WRONG_PASSWORD_CORE cpu_to_le32(0xC0000149) 5678c2ecf20Sopenharmony_ci#define STATUS_ILLEGAL_FLOAT_CONTEXT cpu_to_le32(0xC000014A) 5688c2ecf20Sopenharmony_ci#define STATUS_PIPE_BROKEN cpu_to_le32(0xC000014B) 5698c2ecf20Sopenharmony_ci#define STATUS_REGISTRY_CORRUPT cpu_to_le32(0xC000014C) 5708c2ecf20Sopenharmony_ci#define STATUS_REGISTRY_IO_FAILED cpu_to_le32(0xC000014D) 5718c2ecf20Sopenharmony_ci#define STATUS_NO_EVENT_PAIR cpu_to_le32(0xC000014E) 5728c2ecf20Sopenharmony_ci#define STATUS_UNRECOGNIZED_VOLUME cpu_to_le32(0xC000014F) 5738c2ecf20Sopenharmony_ci#define STATUS_SERIAL_NO_DEVICE_INITED cpu_to_le32(0xC0000150) 5748c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_ALIAS cpu_to_le32(0xC0000151) 5758c2ecf20Sopenharmony_ci#define STATUS_MEMBER_NOT_IN_ALIAS cpu_to_le32(0xC0000152) 5768c2ecf20Sopenharmony_ci#define STATUS_MEMBER_IN_ALIAS cpu_to_le32(0xC0000153) 5778c2ecf20Sopenharmony_ci#define STATUS_ALIAS_EXISTS cpu_to_le32(0xC0000154) 5788c2ecf20Sopenharmony_ci#define STATUS_LOGON_NOT_GRANTED cpu_to_le32(0xC0000155) 5798c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_SECRETS cpu_to_le32(0xC0000156) 5808c2ecf20Sopenharmony_ci#define STATUS_SECRET_TOO_LONG cpu_to_le32(0xC0000157) 5818c2ecf20Sopenharmony_ci#define STATUS_INTERNAL_DB_ERROR cpu_to_le32(0xC0000158) 5828c2ecf20Sopenharmony_ci#define STATUS_FULLSCREEN_MODE cpu_to_le32(0xC0000159) 5838c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_CONTEXT_IDS cpu_to_le32(0xC000015A) 5848c2ecf20Sopenharmony_ci#define STATUS_LOGON_TYPE_NOT_GRANTED cpu_to_le32(0xC000015B) 5858c2ecf20Sopenharmony_ci#define STATUS_NOT_REGISTRY_FILE cpu_to_le32(0xC000015C) 5868c2ecf20Sopenharmony_ci#define STATUS_NT_CROSS_ENCRYPTION_REQUIRED cpu_to_le32(0xC000015D) 5878c2ecf20Sopenharmony_ci#define STATUS_DOMAIN_CTRLR_CONFIG_ERROR cpu_to_le32(0xC000015E) 5888c2ecf20Sopenharmony_ci#define STATUS_FT_MISSING_MEMBER cpu_to_le32(0xC000015F) 5898c2ecf20Sopenharmony_ci#define STATUS_ILL_FORMED_SERVICE_ENTRY cpu_to_le32(0xC0000160) 5908c2ecf20Sopenharmony_ci#define STATUS_ILLEGAL_CHARACTER cpu_to_le32(0xC0000161) 5918c2ecf20Sopenharmony_ci#define STATUS_UNMAPPABLE_CHARACTER cpu_to_le32(0xC0000162) 5928c2ecf20Sopenharmony_ci#define STATUS_UNDEFINED_CHARACTER cpu_to_le32(0xC0000163) 5938c2ecf20Sopenharmony_ci#define STATUS_FLOPPY_VOLUME cpu_to_le32(0xC0000164) 5948c2ecf20Sopenharmony_ci#define STATUS_FLOPPY_ID_MARK_NOT_FOUND cpu_to_le32(0xC0000165) 5958c2ecf20Sopenharmony_ci#define STATUS_FLOPPY_WRONG_CYLINDER cpu_to_le32(0xC0000166) 5968c2ecf20Sopenharmony_ci#define STATUS_FLOPPY_UNKNOWN_ERROR cpu_to_le32(0xC0000167) 5978c2ecf20Sopenharmony_ci#define STATUS_FLOPPY_BAD_REGISTERS cpu_to_le32(0xC0000168) 5988c2ecf20Sopenharmony_ci#define STATUS_DISK_RECALIBRATE_FAILED cpu_to_le32(0xC0000169) 5998c2ecf20Sopenharmony_ci#define STATUS_DISK_OPERATION_FAILED cpu_to_le32(0xC000016A) 6008c2ecf20Sopenharmony_ci#define STATUS_DISK_RESET_FAILED cpu_to_le32(0xC000016B) 6018c2ecf20Sopenharmony_ci#define STATUS_SHARED_IRQ_BUSY cpu_to_le32(0xC000016C) 6028c2ecf20Sopenharmony_ci#define STATUS_FT_ORPHANING cpu_to_le32(0xC000016D) 6038c2ecf20Sopenharmony_ci#define STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT cpu_to_le32(0xC000016E) 6048c2ecf20Sopenharmony_ci#define STATUS_PARTITION_FAILURE cpu_to_le32(0xC0000172) 6058c2ecf20Sopenharmony_ci#define STATUS_INVALID_BLOCK_LENGTH cpu_to_le32(0xC0000173) 6068c2ecf20Sopenharmony_ci#define STATUS_DEVICE_NOT_PARTITIONED cpu_to_le32(0xC0000174) 6078c2ecf20Sopenharmony_ci#define STATUS_UNABLE_TO_LOCK_MEDIA cpu_to_le32(0xC0000175) 6088c2ecf20Sopenharmony_ci#define STATUS_UNABLE_TO_UNLOAD_MEDIA cpu_to_le32(0xC0000176) 6098c2ecf20Sopenharmony_ci#define STATUS_EOM_OVERFLOW cpu_to_le32(0xC0000177) 6108c2ecf20Sopenharmony_ci#define STATUS_NO_MEDIA cpu_to_le32(0xC0000178) 6118c2ecf20Sopenharmony_ci#define STATUS_NO_SUCH_MEMBER cpu_to_le32(0xC000017A) 6128c2ecf20Sopenharmony_ci#define STATUS_INVALID_MEMBER cpu_to_le32(0xC000017B) 6138c2ecf20Sopenharmony_ci#define STATUS_KEY_DELETED cpu_to_le32(0xC000017C) 6148c2ecf20Sopenharmony_ci#define STATUS_NO_LOG_SPACE cpu_to_le32(0xC000017D) 6158c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_SIDS cpu_to_le32(0xC000017E) 6168c2ecf20Sopenharmony_ci#define STATUS_LM_CROSS_ENCRYPTION_REQUIRED cpu_to_le32(0xC000017F) 6178c2ecf20Sopenharmony_ci#define STATUS_KEY_HAS_CHILDREN cpu_to_le32(0xC0000180) 6188c2ecf20Sopenharmony_ci#define STATUS_CHILD_MUST_BE_VOLATILE cpu_to_le32(0xC0000181) 6198c2ecf20Sopenharmony_ci#define STATUS_DEVICE_CONFIGURATION_ERROR cpu_to_le32(0xC0000182) 6208c2ecf20Sopenharmony_ci#define STATUS_DRIVER_INTERNAL_ERROR cpu_to_le32(0xC0000183) 6218c2ecf20Sopenharmony_ci#define STATUS_INVALID_DEVICE_STATE cpu_to_le32(0xC0000184) 6228c2ecf20Sopenharmony_ci#define STATUS_IO_DEVICE_ERROR cpu_to_le32(0xC0000185) 6238c2ecf20Sopenharmony_ci#define STATUS_DEVICE_PROTOCOL_ERROR cpu_to_le32(0xC0000186) 6248c2ecf20Sopenharmony_ci#define STATUS_BACKUP_CONTROLLER cpu_to_le32(0xC0000187) 6258c2ecf20Sopenharmony_ci#define STATUS_LOG_FILE_FULL cpu_to_le32(0xC0000188) 6268c2ecf20Sopenharmony_ci#define STATUS_TOO_LATE cpu_to_le32(0xC0000189) 6278c2ecf20Sopenharmony_ci#define STATUS_NO_TRUST_LSA_SECRET cpu_to_le32(0xC000018A) 6288c2ecf20Sopenharmony_ci#define STATUS_NO_TRUST_SAM_ACCOUNT cpu_to_le32(0xC000018B) 6298c2ecf20Sopenharmony_ci#define STATUS_TRUSTED_DOMAIN_FAILURE cpu_to_le32(0xC000018C) 6308c2ecf20Sopenharmony_ci#define STATUS_TRUSTED_RELATIONSHIP_FAILURE cpu_to_le32(0xC000018D) 6318c2ecf20Sopenharmony_ci#define STATUS_EVENTLOG_FILE_CORRUPT cpu_to_le32(0xC000018E) 6328c2ecf20Sopenharmony_ci#define STATUS_EVENTLOG_CANT_START cpu_to_le32(0xC000018F) 6338c2ecf20Sopenharmony_ci#define STATUS_TRUST_FAILURE cpu_to_le32(0xC0000190) 6348c2ecf20Sopenharmony_ci#define STATUS_MUTANT_LIMIT_EXCEEDED cpu_to_le32(0xC0000191) 6358c2ecf20Sopenharmony_ci#define STATUS_NETLOGON_NOT_STARTED cpu_to_le32(0xC0000192) 6368c2ecf20Sopenharmony_ci#define STATUS_ACCOUNT_EXPIRED cpu_to_le32(0xC0000193) 6378c2ecf20Sopenharmony_ci#define STATUS_POSSIBLE_DEADLOCK cpu_to_le32(0xC0000194) 6388c2ecf20Sopenharmony_ci#define STATUS_NETWORK_CREDENTIAL_CONFLICT cpu_to_le32(0xC0000195) 6398c2ecf20Sopenharmony_ci#define STATUS_REMOTE_SESSION_LIMIT cpu_to_le32(0xC0000196) 6408c2ecf20Sopenharmony_ci#define STATUS_EVENTLOG_FILE_CHANGED cpu_to_le32(0xC0000197) 6418c2ecf20Sopenharmony_ci#define STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT cpu_to_le32(0xC0000198) 6428c2ecf20Sopenharmony_ci#define STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT cpu_to_le32(0xC0000199) 6438c2ecf20Sopenharmony_ci#define STATUS_NOLOGON_SERVER_TRUST_ACCOUNT cpu_to_le32(0xC000019A) 6448c2ecf20Sopenharmony_ci#define STATUS_DOMAIN_TRUST_INCONSISTENT cpu_to_le32(0xC000019B) 6458c2ecf20Sopenharmony_ci#define STATUS_FS_DRIVER_REQUIRED cpu_to_le32(0xC000019C) 6468c2ecf20Sopenharmony_ci#define STATUS_IMAGE_ALREADY_LOADED_AS_DLL cpu_to_le32(0xC000019D) 6478c2ecf20Sopenharmony_ci#define STATUS_NETWORK_OPEN_RESTRICTION cpu_to_le32(0xC0000201) 6488c2ecf20Sopenharmony_ci#define STATUS_NO_USER_SESSION_KEY cpu_to_le32(0xC0000202) 6498c2ecf20Sopenharmony_ci#define STATUS_USER_SESSION_DELETED cpu_to_le32(0xC0000203) 6508c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_LANG_NOT_FOUND cpu_to_le32(0xC0000204) 6518c2ecf20Sopenharmony_ci#define STATUS_INSUFF_SERVER_RESOURCES cpu_to_le32(0xC0000205) 6528c2ecf20Sopenharmony_ci#define STATUS_INVALID_BUFFER_SIZE cpu_to_le32(0xC0000206) 6538c2ecf20Sopenharmony_ci#define STATUS_INVALID_ADDRESS_COMPONENT cpu_to_le32(0xC0000207) 6548c2ecf20Sopenharmony_ci#define STATUS_INVALID_ADDRESS_WILDCARD cpu_to_le32(0xC0000208) 6558c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_ADDRESSES cpu_to_le32(0xC0000209) 6568c2ecf20Sopenharmony_ci#define STATUS_ADDRESS_ALREADY_EXISTS cpu_to_le32(0xC000020A) 6578c2ecf20Sopenharmony_ci#define STATUS_ADDRESS_CLOSED cpu_to_le32(0xC000020B) 6588c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_DISCONNECTED cpu_to_le32(0xC000020C) 6598c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_RESET cpu_to_le32(0xC000020D) 6608c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_NODES cpu_to_le32(0xC000020E) 6618c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_ABORTED cpu_to_le32(0xC000020F) 6628c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_TIMED_OUT cpu_to_le32(0xC0000210) 6638c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NO_RELEASE cpu_to_le32(0xC0000211) 6648c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NO_MATCH cpu_to_le32(0xC0000212) 6658c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_RESPONDED cpu_to_le32(0xC0000213) 6668c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_INVALID_ID cpu_to_le32(0xC0000214) 6678c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_INVALID_TYPE cpu_to_le32(0xC0000215) 6688c2ecf20Sopenharmony_ci#define STATUS_NOT_SERVER_SESSION cpu_to_le32(0xC0000216) 6698c2ecf20Sopenharmony_ci#define STATUS_NOT_CLIENT_SESSION cpu_to_le32(0xC0000217) 6708c2ecf20Sopenharmony_ci#define STATUS_CANNOT_LOAD_REGISTRY_FILE cpu_to_le32(0xC0000218) 6718c2ecf20Sopenharmony_ci#define STATUS_DEBUG_ATTACH_FAILED cpu_to_le32(0xC0000219) 6728c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_PROCESS_TERMINATED cpu_to_le32(0xC000021A) 6738c2ecf20Sopenharmony_ci#define STATUS_DATA_NOT_ACCEPTED cpu_to_le32(0xC000021B) 6748c2ecf20Sopenharmony_ci#define STATUS_NO_BROWSER_SERVERS_FOUND cpu_to_le32(0xC000021C) 6758c2ecf20Sopenharmony_ci#define STATUS_VDM_HARD_ERROR cpu_to_le32(0xC000021D) 6768c2ecf20Sopenharmony_ci#define STATUS_DRIVER_CANCEL_TIMEOUT cpu_to_le32(0xC000021E) 6778c2ecf20Sopenharmony_ci#define STATUS_REPLY_MESSAGE_MISMATCH cpu_to_le32(0xC000021F) 6788c2ecf20Sopenharmony_ci#define STATUS_MAPPED_ALIGNMENT cpu_to_le32(0xC0000220) 6798c2ecf20Sopenharmony_ci#define STATUS_IMAGE_CHECKSUM_MISMATCH cpu_to_le32(0xC0000221) 6808c2ecf20Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA cpu_to_le32(0xC0000222) 6818c2ecf20Sopenharmony_ci#define STATUS_CLIENT_SERVER_PARAMETERS_INVALID cpu_to_le32(0xC0000223) 6828c2ecf20Sopenharmony_ci#define STATUS_PASSWORD_MUST_CHANGE cpu_to_le32(0xC0000224) 6838c2ecf20Sopenharmony_ci#define STATUS_NOT_FOUND cpu_to_le32(0xC0000225) 6848c2ecf20Sopenharmony_ci#define STATUS_NOT_TINY_STREAM cpu_to_le32(0xC0000226) 6858c2ecf20Sopenharmony_ci#define STATUS_RECOVERY_FAILURE cpu_to_le32(0xC0000227) 6868c2ecf20Sopenharmony_ci#define STATUS_STACK_OVERFLOW_READ cpu_to_le32(0xC0000228) 6878c2ecf20Sopenharmony_ci#define STATUS_FAIL_CHECK cpu_to_le32(0xC0000229) 6888c2ecf20Sopenharmony_ci#define STATUS_DUPLICATE_OBJECTID cpu_to_le32(0xC000022A) 6898c2ecf20Sopenharmony_ci#define STATUS_OBJECTID_EXISTS cpu_to_le32(0xC000022B) 6908c2ecf20Sopenharmony_ci#define STATUS_CONVERT_TO_LARGE cpu_to_le32(0xC000022C) 6918c2ecf20Sopenharmony_ci#define STATUS_RETRY cpu_to_le32(0xC000022D) 6928c2ecf20Sopenharmony_ci#define STATUS_FOUND_OUT_OF_SCOPE cpu_to_le32(0xC000022E) 6938c2ecf20Sopenharmony_ci#define STATUS_ALLOCATE_BUCKET cpu_to_le32(0xC000022F) 6948c2ecf20Sopenharmony_ci#define STATUS_PROPSET_NOT_FOUND cpu_to_le32(0xC0000230) 6958c2ecf20Sopenharmony_ci#define STATUS_MARSHALL_OVERFLOW cpu_to_le32(0xC0000231) 6968c2ecf20Sopenharmony_ci#define STATUS_INVALID_VARIANT cpu_to_le32(0xC0000232) 6978c2ecf20Sopenharmony_ci#define STATUS_DOMAIN_CONTROLLER_NOT_FOUND cpu_to_le32(0xC0000233) 6988c2ecf20Sopenharmony_ci#define STATUS_ACCOUNT_LOCKED_OUT cpu_to_le32(0xC0000234) 6998c2ecf20Sopenharmony_ci#define STATUS_HANDLE_NOT_CLOSABLE cpu_to_le32(0xC0000235) 7008c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_REFUSED cpu_to_le32(0xC0000236) 7018c2ecf20Sopenharmony_ci#define STATUS_GRACEFUL_DISCONNECT cpu_to_le32(0xC0000237) 7028c2ecf20Sopenharmony_ci#define STATUS_ADDRESS_ALREADY_ASSOCIATED cpu_to_le32(0xC0000238) 7038c2ecf20Sopenharmony_ci#define STATUS_ADDRESS_NOT_ASSOCIATED cpu_to_le32(0xC0000239) 7048c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_INVALID cpu_to_le32(0xC000023A) 7058c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_ACTIVE cpu_to_le32(0xC000023B) 7068c2ecf20Sopenharmony_ci#define STATUS_NETWORK_UNREACHABLE cpu_to_le32(0xC000023C) 7078c2ecf20Sopenharmony_ci#define STATUS_HOST_UNREACHABLE cpu_to_le32(0xC000023D) 7088c2ecf20Sopenharmony_ci#define STATUS_PROTOCOL_UNREACHABLE cpu_to_le32(0xC000023E) 7098c2ecf20Sopenharmony_ci#define STATUS_PORT_UNREACHABLE cpu_to_le32(0xC000023F) 7108c2ecf20Sopenharmony_ci#define STATUS_REQUEST_ABORTED cpu_to_le32(0xC0000240) 7118c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_ABORTED cpu_to_le32(0xC0000241) 7128c2ecf20Sopenharmony_ci#define STATUS_BAD_COMPRESSION_BUFFER cpu_to_le32(0xC0000242) 7138c2ecf20Sopenharmony_ci#define STATUS_USER_MAPPED_FILE cpu_to_le32(0xC0000243) 7148c2ecf20Sopenharmony_ci#define STATUS_AUDIT_FAILED cpu_to_le32(0xC0000244) 7158c2ecf20Sopenharmony_ci#define STATUS_TIMER_RESOLUTION_NOT_SET cpu_to_le32(0xC0000245) 7168c2ecf20Sopenharmony_ci#define STATUS_CONNECTION_COUNT_LIMIT cpu_to_le32(0xC0000246) 7178c2ecf20Sopenharmony_ci#define STATUS_LOGIN_TIME_RESTRICTION cpu_to_le32(0xC0000247) 7188c2ecf20Sopenharmony_ci#define STATUS_LOGIN_WKSTA_RESTRICTION cpu_to_le32(0xC0000248) 7198c2ecf20Sopenharmony_ci#define STATUS_IMAGE_MP_UP_MISMATCH cpu_to_le32(0xC0000249) 7208c2ecf20Sopenharmony_ci#define STATUS_INSUFFICIENT_LOGON_INFO cpu_to_le32(0xC0000250) 7218c2ecf20Sopenharmony_ci#define STATUS_BAD_DLL_ENTRYPOINT cpu_to_le32(0xC0000251) 7228c2ecf20Sopenharmony_ci#define STATUS_BAD_SERVICE_ENTRYPOINT cpu_to_le32(0xC0000252) 7238c2ecf20Sopenharmony_ci#define STATUS_LPC_REPLY_LOST cpu_to_le32(0xC0000253) 7248c2ecf20Sopenharmony_ci#define STATUS_IP_ADDRESS_CONFLICT1 cpu_to_le32(0xC0000254) 7258c2ecf20Sopenharmony_ci#define STATUS_IP_ADDRESS_CONFLICT2 cpu_to_le32(0xC0000255) 7268c2ecf20Sopenharmony_ci#define STATUS_REGISTRY_QUOTA_LIMIT cpu_to_le32(0xC0000256) 7278c2ecf20Sopenharmony_ci#define STATUS_PATH_NOT_COVERED cpu_to_le32(0xC0000257) 7288c2ecf20Sopenharmony_ci#define STATUS_NO_CALLBACK_ACTIVE cpu_to_le32(0xC0000258) 7298c2ecf20Sopenharmony_ci#define STATUS_LICENSE_QUOTA_EXCEEDED cpu_to_le32(0xC0000259) 7308c2ecf20Sopenharmony_ci#define STATUS_PWD_TOO_SHORT cpu_to_le32(0xC000025A) 7318c2ecf20Sopenharmony_ci#define STATUS_PWD_TOO_RECENT cpu_to_le32(0xC000025B) 7328c2ecf20Sopenharmony_ci#define STATUS_PWD_HISTORY_CONFLICT cpu_to_le32(0xC000025C) 7338c2ecf20Sopenharmony_ci#define STATUS_PLUGPLAY_NO_DEVICE cpu_to_le32(0xC000025E) 7348c2ecf20Sopenharmony_ci#define STATUS_UNSUPPORTED_COMPRESSION cpu_to_le32(0xC000025F) 7358c2ecf20Sopenharmony_ci#define STATUS_INVALID_HW_PROFILE cpu_to_le32(0xC0000260) 7368c2ecf20Sopenharmony_ci#define STATUS_INVALID_PLUGPLAY_DEVICE_PATH cpu_to_le32(0xC0000261) 7378c2ecf20Sopenharmony_ci#define STATUS_DRIVER_ORDINAL_NOT_FOUND cpu_to_le32(0xC0000262) 7388c2ecf20Sopenharmony_ci#define STATUS_DRIVER_ENTRYPOINT_NOT_FOUND cpu_to_le32(0xC0000263) 7398c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_NOT_OWNED cpu_to_le32(0xC0000264) 7408c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_LINKS cpu_to_le32(0xC0000265) 7418c2ecf20Sopenharmony_ci#define STATUS_QUOTA_LIST_INCONSISTENT cpu_to_le32(0xC0000266) 7428c2ecf20Sopenharmony_ci#define STATUS_FILE_IS_OFFLINE cpu_to_le32(0xC0000267) 7438c2ecf20Sopenharmony_ci#define STATUS_EVALUATION_EXPIRATION cpu_to_le32(0xC0000268) 7448c2ecf20Sopenharmony_ci#define STATUS_ILLEGAL_DLL_RELOCATION cpu_to_le32(0xC0000269) 7458c2ecf20Sopenharmony_ci#define STATUS_LICENSE_VIOLATION cpu_to_le32(0xC000026A) 7468c2ecf20Sopenharmony_ci#define STATUS_DLL_INIT_FAILED_LOGOFF cpu_to_le32(0xC000026B) 7478c2ecf20Sopenharmony_ci#define STATUS_DRIVER_UNABLE_TO_LOAD cpu_to_le32(0xC000026C) 7488c2ecf20Sopenharmony_ci#define STATUS_DFS_UNAVAILABLE cpu_to_le32(0xC000026D) 7498c2ecf20Sopenharmony_ci#define STATUS_VOLUME_DISMOUNTED cpu_to_le32(0xC000026E) 7508c2ecf20Sopenharmony_ci#define STATUS_WX86_INTERNAL_ERROR cpu_to_le32(0xC000026F) 7518c2ecf20Sopenharmony_ci#define STATUS_WX86_FLOAT_STACK_CHECK cpu_to_le32(0xC0000270) 7528c2ecf20Sopenharmony_ci#define STATUS_VALIDATE_CONTINUE cpu_to_le32(0xC0000271) 7538c2ecf20Sopenharmony_ci#define STATUS_NO_MATCH cpu_to_le32(0xC0000272) 7548c2ecf20Sopenharmony_ci#define STATUS_NO_MORE_MATCHES cpu_to_le32(0xC0000273) 7558c2ecf20Sopenharmony_ci#define STATUS_NOT_A_REPARSE_POINT cpu_to_le32(0xC0000275) 7568c2ecf20Sopenharmony_ci#define STATUS_IO_REPARSE_TAG_INVALID cpu_to_le32(0xC0000276) 7578c2ecf20Sopenharmony_ci#define STATUS_IO_REPARSE_TAG_MISMATCH cpu_to_le32(0xC0000277) 7588c2ecf20Sopenharmony_ci#define STATUS_IO_REPARSE_DATA_INVALID cpu_to_le32(0xC0000278) 7598c2ecf20Sopenharmony_ci#define STATUS_IO_REPARSE_TAG_NOT_HANDLED cpu_to_le32(0xC0000279) 7608c2ecf20Sopenharmony_ci#define STATUS_REPARSE_POINT_NOT_RESOLVED cpu_to_le32(0xC0000280) 7618c2ecf20Sopenharmony_ci#define STATUS_DIRECTORY_IS_A_REPARSE_POINT cpu_to_le32(0xC0000281) 7628c2ecf20Sopenharmony_ci#define STATUS_RANGE_LIST_CONFLICT cpu_to_le32(0xC0000282) 7638c2ecf20Sopenharmony_ci#define STATUS_SOURCE_ELEMENT_EMPTY cpu_to_le32(0xC0000283) 7648c2ecf20Sopenharmony_ci#define STATUS_DESTINATION_ELEMENT_FULL cpu_to_le32(0xC0000284) 7658c2ecf20Sopenharmony_ci#define STATUS_ILLEGAL_ELEMENT_ADDRESS cpu_to_le32(0xC0000285) 7668c2ecf20Sopenharmony_ci#define STATUS_MAGAZINE_NOT_PRESENT cpu_to_le32(0xC0000286) 7678c2ecf20Sopenharmony_ci#define STATUS_REINITIALIZATION_NEEDED cpu_to_le32(0xC0000287) 7688c2ecf20Sopenharmony_ci#define STATUS_ENCRYPTION_FAILED cpu_to_le32(0xC000028A) 7698c2ecf20Sopenharmony_ci#define STATUS_DECRYPTION_FAILED cpu_to_le32(0xC000028B) 7708c2ecf20Sopenharmony_ci#define STATUS_RANGE_NOT_FOUND cpu_to_le32(0xC000028C) 7718c2ecf20Sopenharmony_ci#define STATUS_NO_RECOVERY_POLICY cpu_to_le32(0xC000028D) 7728c2ecf20Sopenharmony_ci#define STATUS_NO_EFS cpu_to_le32(0xC000028E) 7738c2ecf20Sopenharmony_ci#define STATUS_WRONG_EFS cpu_to_le32(0xC000028F) 7748c2ecf20Sopenharmony_ci#define STATUS_NO_USER_KEYS cpu_to_le32(0xC0000290) 7758c2ecf20Sopenharmony_ci#define STATUS_FILE_NOT_ENCRYPTED cpu_to_le32(0xC0000291) 7768c2ecf20Sopenharmony_ci#define STATUS_NOT_EXPORT_FORMAT cpu_to_le32(0xC0000292) 7778c2ecf20Sopenharmony_ci#define STATUS_FILE_ENCRYPTED cpu_to_le32(0xC0000293) 7788c2ecf20Sopenharmony_ci#define STATUS_WMI_GUID_NOT_FOUND cpu_to_le32(0xC0000295) 7798c2ecf20Sopenharmony_ci#define STATUS_WMI_INSTANCE_NOT_FOUND cpu_to_le32(0xC0000296) 7808c2ecf20Sopenharmony_ci#define STATUS_WMI_ITEMID_NOT_FOUND cpu_to_le32(0xC0000297) 7818c2ecf20Sopenharmony_ci#define STATUS_WMI_TRY_AGAIN cpu_to_le32(0xC0000298) 7828c2ecf20Sopenharmony_ci#define STATUS_SHARED_POLICY cpu_to_le32(0xC0000299) 7838c2ecf20Sopenharmony_ci#define STATUS_POLICY_OBJECT_NOT_FOUND cpu_to_le32(0xC000029A) 7848c2ecf20Sopenharmony_ci#define STATUS_POLICY_ONLY_IN_DS cpu_to_le32(0xC000029B) 7858c2ecf20Sopenharmony_ci#define STATUS_VOLUME_NOT_UPGRADED cpu_to_le32(0xC000029C) 7868c2ecf20Sopenharmony_ci#define STATUS_REMOTE_STORAGE_NOT_ACTIVE cpu_to_le32(0xC000029D) 7878c2ecf20Sopenharmony_ci#define STATUS_REMOTE_STORAGE_MEDIA_ERROR cpu_to_le32(0xC000029E) 7888c2ecf20Sopenharmony_ci#define STATUS_NO_TRACKING_SERVICE cpu_to_le32(0xC000029F) 7898c2ecf20Sopenharmony_ci#define STATUS_SERVER_SID_MISMATCH cpu_to_le32(0xC00002A0) 7908c2ecf20Sopenharmony_ci#define STATUS_DS_NO_ATTRIBUTE_OR_VALUE cpu_to_le32(0xC00002A1) 7918c2ecf20Sopenharmony_ci#define STATUS_DS_INVALID_ATTRIBUTE_SYNTAX cpu_to_le32(0xC00002A2) 7928c2ecf20Sopenharmony_ci#define STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED cpu_to_le32(0xC00002A3) 7938c2ecf20Sopenharmony_ci#define STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS cpu_to_le32(0xC00002A4) 7948c2ecf20Sopenharmony_ci#define STATUS_DS_BUSY cpu_to_le32(0xC00002A5) 7958c2ecf20Sopenharmony_ci#define STATUS_DS_UNAVAILABLE cpu_to_le32(0xC00002A6) 7968c2ecf20Sopenharmony_ci#define STATUS_DS_NO_RIDS_ALLOCATED cpu_to_le32(0xC00002A7) 7978c2ecf20Sopenharmony_ci#define STATUS_DS_NO_MORE_RIDS cpu_to_le32(0xC00002A8) 7988c2ecf20Sopenharmony_ci#define STATUS_DS_INCORRECT_ROLE_OWNER cpu_to_le32(0xC00002A9) 7998c2ecf20Sopenharmony_ci#define STATUS_DS_RIDMGR_INIT_ERROR cpu_to_le32(0xC00002AA) 8008c2ecf20Sopenharmony_ci#define STATUS_DS_OBJ_CLASS_VIOLATION cpu_to_le32(0xC00002AB) 8018c2ecf20Sopenharmony_ci#define STATUS_DS_CANT_ON_NON_LEAF cpu_to_le32(0xC00002AC) 8028c2ecf20Sopenharmony_ci#define STATUS_DS_CANT_ON_RDN cpu_to_le32(0xC00002AD) 8038c2ecf20Sopenharmony_ci#define STATUS_DS_CANT_MOD_OBJ_CLASS cpu_to_le32(0xC00002AE) 8048c2ecf20Sopenharmony_ci#define STATUS_DS_CROSS_DOM_MOVE_FAILED cpu_to_le32(0xC00002AF) 8058c2ecf20Sopenharmony_ci#define STATUS_DS_GC_NOT_AVAILABLE cpu_to_le32(0xC00002B0) 8068c2ecf20Sopenharmony_ci#define STATUS_DIRECTORY_SERVICE_REQUIRED cpu_to_le32(0xC00002B1) 8078c2ecf20Sopenharmony_ci#define STATUS_REPARSE_ATTRIBUTE_CONFLICT cpu_to_le32(0xC00002B2) 8088c2ecf20Sopenharmony_ci#define STATUS_CANT_ENABLE_DENY_ONLY cpu_to_le32(0xC00002B3) 8098c2ecf20Sopenharmony_ci#define STATUS_FLOAT_MULTIPLE_FAULTS cpu_to_le32(0xC00002B4) 8108c2ecf20Sopenharmony_ci#define STATUS_FLOAT_MULTIPLE_TRAPS cpu_to_le32(0xC00002B5) 8118c2ecf20Sopenharmony_ci#define STATUS_DEVICE_REMOVED cpu_to_le32(0xC00002B6) 8128c2ecf20Sopenharmony_ci#define STATUS_JOURNAL_DELETE_IN_PROGRESS cpu_to_le32(0xC00002B7) 8138c2ecf20Sopenharmony_ci#define STATUS_JOURNAL_NOT_ACTIVE cpu_to_le32(0xC00002B8) 8148c2ecf20Sopenharmony_ci#define STATUS_NOINTERFACE cpu_to_le32(0xC00002B9) 8158c2ecf20Sopenharmony_ci#define STATUS_DS_ADMIN_LIMIT_EXCEEDED cpu_to_le32(0xC00002C1) 8168c2ecf20Sopenharmony_ci#define STATUS_DRIVER_FAILED_SLEEP cpu_to_le32(0xC00002C2) 8178c2ecf20Sopenharmony_ci#define STATUS_MUTUAL_AUTHENTICATION_FAILED cpu_to_le32(0xC00002C3) 8188c2ecf20Sopenharmony_ci#define STATUS_CORRUPT_SYSTEM_FILE cpu_to_le32(0xC00002C4) 8198c2ecf20Sopenharmony_ci#define STATUS_DATATYPE_MISALIGNMENT_ERROR cpu_to_le32(0xC00002C5) 8208c2ecf20Sopenharmony_ci#define STATUS_WMI_READ_ONLY cpu_to_le32(0xC00002C6) 8218c2ecf20Sopenharmony_ci#define STATUS_WMI_SET_FAILURE cpu_to_le32(0xC00002C7) 8228c2ecf20Sopenharmony_ci#define STATUS_COMMITMENT_MINIMUM cpu_to_le32(0xC00002C8) 8238c2ecf20Sopenharmony_ci#define STATUS_REG_NAT_CONSUMPTION cpu_to_le32(0xC00002C9) 8248c2ecf20Sopenharmony_ci#define STATUS_TRANSPORT_FULL cpu_to_le32(0xC00002CA) 8258c2ecf20Sopenharmony_ci#define STATUS_DS_SAM_INIT_FAILURE cpu_to_le32(0xC00002CB) 8268c2ecf20Sopenharmony_ci#define STATUS_ONLY_IF_CONNECTED cpu_to_le32(0xC00002CC) 8278c2ecf20Sopenharmony_ci#define STATUS_DS_SENSITIVE_GROUP_VIOLATION cpu_to_le32(0xC00002CD) 8288c2ecf20Sopenharmony_ci#define STATUS_PNP_RESTART_ENUMERATION cpu_to_le32(0xC00002CE) 8298c2ecf20Sopenharmony_ci#define STATUS_JOURNAL_ENTRY_DELETED cpu_to_le32(0xC00002CF) 8308c2ecf20Sopenharmony_ci#define STATUS_DS_CANT_MOD_PRIMARYGROUPID cpu_to_le32(0xC00002D0) 8318c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_IMAGE_BAD_SIGNATURE cpu_to_le32(0xC00002D1) 8328c2ecf20Sopenharmony_ci#define STATUS_PNP_REBOOT_REQUIRED cpu_to_le32(0xC00002D2) 8338c2ecf20Sopenharmony_ci#define STATUS_POWER_STATE_INVALID cpu_to_le32(0xC00002D3) 8348c2ecf20Sopenharmony_ci#define STATUS_DS_INVALID_GROUP_TYPE cpu_to_le32(0xC00002D4) 8358c2ecf20Sopenharmony_ci#define STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN cpu_to_le32(0xC00002D5) 8368c2ecf20Sopenharmony_ci#define STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN cpu_to_le32(0xC00002D6) 8378c2ecf20Sopenharmony_ci#define STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER cpu_to_le32(0xC00002D7) 8388c2ecf20Sopenharmony_ci#define STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER cpu_to_le32(0xC00002D8) 8398c2ecf20Sopenharmony_ci#define STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER cpu_to_le32(0xC00002D9) 8408c2ecf20Sopenharmony_ci#define STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER cpu_to_le32(0xC00002DA) 8418c2ecf20Sopenharmony_ci#define STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER cpu_to_le32(0xC00002DB) 8428c2ecf20Sopenharmony_ci#define STATUS_DS_HAVE_PRIMARY_MEMBERS cpu_to_le32(0xC00002DC) 8438c2ecf20Sopenharmony_ci#define STATUS_WMI_NOT_SUPPORTED cpu_to_le32(0xC00002DD) 8448c2ecf20Sopenharmony_ci#define STATUS_INSUFFICIENT_POWER cpu_to_le32(0xC00002DE) 8458c2ecf20Sopenharmony_ci#define STATUS_SAM_NEED_BOOTKEY_PASSWORD cpu_to_le32(0xC00002DF) 8468c2ecf20Sopenharmony_ci#define STATUS_SAM_NEED_BOOTKEY_FLOPPY cpu_to_le32(0xC00002E0) 8478c2ecf20Sopenharmony_ci#define STATUS_DS_CANT_START cpu_to_le32(0xC00002E1) 8488c2ecf20Sopenharmony_ci#define STATUS_DS_INIT_FAILURE cpu_to_le32(0xC00002E2) 8498c2ecf20Sopenharmony_ci#define STATUS_SAM_INIT_FAILURE cpu_to_le32(0xC00002E3) 8508c2ecf20Sopenharmony_ci#define STATUS_DS_GC_REQUIRED cpu_to_le32(0xC00002E4) 8518c2ecf20Sopenharmony_ci#define STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY cpu_to_le32(0xC00002E5) 8528c2ecf20Sopenharmony_ci#define STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS cpu_to_le32(0xC00002E6) 8538c2ecf20Sopenharmony_ci#define STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED cpu_to_le32(0xC00002E7) 8548c2ecf20Sopenharmony_ci#define STATUS_MULTIPLE_FAULT_VIOLATION cpu_to_le32(0xC00002E8) 8558c2ecf20Sopenharmony_ci#define STATUS_CURRENT_DOMAIN_NOT_ALLOWED cpu_to_le32(0xC00002E9) 8568c2ecf20Sopenharmony_ci#define STATUS_CANNOT_MAKE cpu_to_le32(0xC00002EA) 8578c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_SHUTDOWN cpu_to_le32(0xC00002EB) 8588c2ecf20Sopenharmony_ci#define STATUS_DS_INIT_FAILURE_CONSOLE cpu_to_le32(0xC00002EC) 8598c2ecf20Sopenharmony_ci#define STATUS_DS_SAM_INIT_FAILURE_CONSOLE cpu_to_le32(0xC00002ED) 8608c2ecf20Sopenharmony_ci#define STATUS_UNFINISHED_CONTEXT_DELETED cpu_to_le32(0xC00002EE) 8618c2ecf20Sopenharmony_ci#define STATUS_NO_TGT_REPLY cpu_to_le32(0xC00002EF) 8628c2ecf20Sopenharmony_ci#define STATUS_OBJECTID_NOT_FOUND cpu_to_le32(0xC00002F0) 8638c2ecf20Sopenharmony_ci#define STATUS_NO_IP_ADDRESSES cpu_to_le32(0xC00002F1) 8648c2ecf20Sopenharmony_ci#define STATUS_WRONG_CREDENTIAL_HANDLE cpu_to_le32(0xC00002F2) 8658c2ecf20Sopenharmony_ci#define STATUS_CRYPTO_SYSTEM_INVALID cpu_to_le32(0xC00002F3) 8668c2ecf20Sopenharmony_ci#define STATUS_MAX_REFERRALS_EXCEEDED cpu_to_le32(0xC00002F4) 8678c2ecf20Sopenharmony_ci#define STATUS_MUST_BE_KDC cpu_to_le32(0xC00002F5) 8688c2ecf20Sopenharmony_ci#define STATUS_STRONG_CRYPTO_NOT_SUPPORTED cpu_to_le32(0xC00002F6) 8698c2ecf20Sopenharmony_ci#define STATUS_TOO_MANY_PRINCIPALS cpu_to_le32(0xC00002F7) 8708c2ecf20Sopenharmony_ci#define STATUS_NO_PA_DATA cpu_to_le32(0xC00002F8) 8718c2ecf20Sopenharmony_ci#define STATUS_PKINIT_NAME_MISMATCH cpu_to_le32(0xC00002F9) 8728c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_LOGON_REQUIRED cpu_to_le32(0xC00002FA) 8738c2ecf20Sopenharmony_ci#define STATUS_KDC_INVALID_REQUEST cpu_to_le32(0xC00002FB) 8748c2ecf20Sopenharmony_ci#define STATUS_KDC_UNABLE_TO_REFER cpu_to_le32(0xC00002FC) 8758c2ecf20Sopenharmony_ci#define STATUS_KDC_UNKNOWN_ETYPE cpu_to_le32(0xC00002FD) 8768c2ecf20Sopenharmony_ci#define STATUS_SHUTDOWN_IN_PROGRESS cpu_to_le32(0xC00002FE) 8778c2ecf20Sopenharmony_ci#define STATUS_SERVER_SHUTDOWN_IN_PROGRESS cpu_to_le32(0xC00002FF) 8788c2ecf20Sopenharmony_ci#define STATUS_NOT_SUPPORTED_ON_SBS cpu_to_le32(0xC0000300) 8798c2ecf20Sopenharmony_ci#define STATUS_WMI_GUID_DISCONNECTED cpu_to_le32(0xC0000301) 8808c2ecf20Sopenharmony_ci#define STATUS_WMI_ALREADY_DISABLED cpu_to_le32(0xC0000302) 8818c2ecf20Sopenharmony_ci#define STATUS_WMI_ALREADY_ENABLED cpu_to_le32(0xC0000303) 8828c2ecf20Sopenharmony_ci#define STATUS_MFT_TOO_FRAGMENTED cpu_to_le32(0xC0000304) 8838c2ecf20Sopenharmony_ci#define STATUS_COPY_PROTECTION_FAILURE cpu_to_le32(0xC0000305) 8848c2ecf20Sopenharmony_ci#define STATUS_CSS_AUTHENTICATION_FAILURE cpu_to_le32(0xC0000306) 8858c2ecf20Sopenharmony_ci#define STATUS_CSS_KEY_NOT_PRESENT cpu_to_le32(0xC0000307) 8868c2ecf20Sopenharmony_ci#define STATUS_CSS_KEY_NOT_ESTABLISHED cpu_to_le32(0xC0000308) 8878c2ecf20Sopenharmony_ci#define STATUS_CSS_SCRAMBLED_SECTOR cpu_to_le32(0xC0000309) 8888c2ecf20Sopenharmony_ci#define STATUS_CSS_REGION_MISMATCH cpu_to_le32(0xC000030A) 8898c2ecf20Sopenharmony_ci#define STATUS_CSS_RESETS_EXHAUSTED cpu_to_le32(0xC000030B) 8908c2ecf20Sopenharmony_ci#define STATUS_PKINIT_FAILURE cpu_to_le32(0xC0000320) 8918c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_SUBSYSTEM_FAILURE cpu_to_le32(0xC0000321) 8928c2ecf20Sopenharmony_ci#define STATUS_NO_KERB_KEY cpu_to_le32(0xC0000322) 8938c2ecf20Sopenharmony_ci#define STATUS_HOST_DOWN cpu_to_le32(0xC0000350) 8948c2ecf20Sopenharmony_ci#define STATUS_UNSUPPORTED_PREAUTH cpu_to_le32(0xC0000351) 8958c2ecf20Sopenharmony_ci#define STATUS_EFS_ALG_BLOB_TOO_BIG cpu_to_le32(0xC0000352) 8968c2ecf20Sopenharmony_ci#define STATUS_PORT_NOT_SET cpu_to_le32(0xC0000353) 8978c2ecf20Sopenharmony_ci#define STATUS_DEBUGGER_INACTIVE cpu_to_le32(0xC0000354) 8988c2ecf20Sopenharmony_ci#define STATUS_DS_VERSION_CHECK_FAILURE cpu_to_le32(0xC0000355) 8998c2ecf20Sopenharmony_ci#define STATUS_AUDITING_DISABLED cpu_to_le32(0xC0000356) 9008c2ecf20Sopenharmony_ci#define STATUS_PRENT4_MACHINE_ACCOUNT cpu_to_le32(0xC0000357) 9018c2ecf20Sopenharmony_ci#define STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER cpu_to_le32(0xC0000358) 9028c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_WIN_32 cpu_to_le32(0xC0000359) 9038c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_WIN_64 cpu_to_le32(0xC000035A) 9048c2ecf20Sopenharmony_ci#define STATUS_BAD_BINDINGS cpu_to_le32(0xC000035B) 9058c2ecf20Sopenharmony_ci#define STATUS_NETWORK_SESSION_EXPIRED cpu_to_le32(0xC000035C) 9068c2ecf20Sopenharmony_ci#define STATUS_APPHELP_BLOCK cpu_to_le32(0xC000035D) 9078c2ecf20Sopenharmony_ci#define STATUS_ALL_SIDS_FILTERED cpu_to_le32(0xC000035E) 9088c2ecf20Sopenharmony_ci#define STATUS_NOT_SAFE_MODE_DRIVER cpu_to_le32(0xC000035F) 9098c2ecf20Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT cpu_to_le32(0xC0000361) 9108c2ecf20Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_PATH cpu_to_le32(0xC0000362) 9118c2ecf20Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER cpu_to_le32(0xC0000363) 9128c2ecf20Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_OTHER cpu_to_le32(0xC0000364) 9138c2ecf20Sopenharmony_ci#define STATUS_FAILED_DRIVER_ENTRY cpu_to_le32(0xC0000365) 9148c2ecf20Sopenharmony_ci#define STATUS_DEVICE_ENUMERATION_ERROR cpu_to_le32(0xC0000366) 9158c2ecf20Sopenharmony_ci#define STATUS_MOUNT_POINT_NOT_RESOLVED cpu_to_le32(0xC0000368) 9168c2ecf20Sopenharmony_ci#define STATUS_INVALID_DEVICE_OBJECT_PARAMETER cpu_to_le32(0xC0000369) 9178c2ecf20Sopenharmony_ci#define STATUS_MCA_OCCURED cpu_to_le32(0xC000036A) 9188c2ecf20Sopenharmony_ci#define STATUS_DRIVER_BLOCKED_CRITICAL cpu_to_le32(0xC000036B) 9198c2ecf20Sopenharmony_ci#define STATUS_DRIVER_BLOCKED cpu_to_le32(0xC000036C) 9208c2ecf20Sopenharmony_ci#define STATUS_DRIVER_DATABASE_ERROR cpu_to_le32(0xC000036D) 9218c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_HIVE_TOO_LARGE cpu_to_le32(0xC000036E) 9228c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMPORT_OF_NON_DLL cpu_to_le32(0xC000036F) 9238c2ecf20Sopenharmony_ci#define STATUS_NO_SECRETS cpu_to_le32(0xC0000371) 9248c2ecf20Sopenharmony_ci#define STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY cpu_to_le32(0xC0000372) 9258c2ecf20Sopenharmony_ci#define STATUS_FAILED_STACK_SWITCH cpu_to_le32(0xC0000373) 9268c2ecf20Sopenharmony_ci#define STATUS_HEAP_CORRUPTION cpu_to_le32(0xC0000374) 9278c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_WRONG_PIN cpu_to_le32(0xC0000380) 9288c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_CARD_BLOCKED cpu_to_le32(0xC0000381) 9298c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED cpu_to_le32(0xC0000382) 9308c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_NO_CARD cpu_to_le32(0xC0000383) 9318c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_NO_KEY_CONTAINER cpu_to_le32(0xC0000384) 9328c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_NO_CERTIFICATE cpu_to_le32(0xC0000385) 9338c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_NO_KEYSET cpu_to_le32(0xC0000386) 9348c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_IO_ERROR cpu_to_le32(0xC0000387) 9358c2ecf20Sopenharmony_ci#define STATUS_DOWNGRADE_DETECTED cpu_to_le32(0xC0000388) 9368c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_CERT_REVOKED cpu_to_le32(0xC0000389) 9378c2ecf20Sopenharmony_ci#define STATUS_ISSUING_CA_UNTRUSTED cpu_to_le32(0xC000038A) 9388c2ecf20Sopenharmony_ci#define STATUS_REVOCATION_OFFLINE_C cpu_to_le32(0xC000038B) 9398c2ecf20Sopenharmony_ci#define STATUS_PKINIT_CLIENT_FAILURE cpu_to_le32(0xC000038C) 9408c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_CERT_EXPIRED cpu_to_le32(0xC000038D) 9418c2ecf20Sopenharmony_ci#define STATUS_DRIVER_FAILED_PRIOR_UNLOAD cpu_to_le32(0xC000038E) 9428c2ecf20Sopenharmony_ci#define STATUS_SMARTCARD_SILENT_CONTEXT cpu_to_le32(0xC000038F) 9438c2ecf20Sopenharmony_ci#define STATUS_PER_USER_TRUST_QUOTA_EXCEEDED cpu_to_le32(0xC0000401) 9448c2ecf20Sopenharmony_ci#define STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED cpu_to_le32(0xC0000402) 9458c2ecf20Sopenharmony_ci#define STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED cpu_to_le32(0xC0000403) 9468c2ecf20Sopenharmony_ci#define STATUS_DS_NAME_NOT_UNIQUE cpu_to_le32(0xC0000404) 9478c2ecf20Sopenharmony_ci#define STATUS_DS_DUPLICATE_ID_FOUND cpu_to_le32(0xC0000405) 9488c2ecf20Sopenharmony_ci#define STATUS_DS_GROUP_CONVERSION_ERROR cpu_to_le32(0xC0000406) 9498c2ecf20Sopenharmony_ci#define STATUS_VOLSNAP_PREPARE_HIBERNATE cpu_to_le32(0xC0000407) 9508c2ecf20Sopenharmony_ci#define STATUS_USER2USER_REQUIRED cpu_to_le32(0xC0000408) 9518c2ecf20Sopenharmony_ci#define STATUS_STACK_BUFFER_OVERRUN cpu_to_le32(0xC0000409) 9528c2ecf20Sopenharmony_ci#define STATUS_NO_S4U_PROT_SUPPORT cpu_to_le32(0xC000040A) 9538c2ecf20Sopenharmony_ci#define STATUS_CROSSREALM_DELEGATION_FAILURE cpu_to_le32(0xC000040B) 9548c2ecf20Sopenharmony_ci#define STATUS_REVOCATION_OFFLINE_KDC cpu_to_le32(0xC000040C) 9558c2ecf20Sopenharmony_ci#define STATUS_ISSUING_CA_UNTRUSTED_KDC cpu_to_le32(0xC000040D) 9568c2ecf20Sopenharmony_ci#define STATUS_KDC_CERT_EXPIRED cpu_to_le32(0xC000040E) 9578c2ecf20Sopenharmony_ci#define STATUS_KDC_CERT_REVOKED cpu_to_le32(0xC000040F) 9588c2ecf20Sopenharmony_ci#define STATUS_PARAMETER_QUOTA_EXCEEDED cpu_to_le32(0xC0000410) 9598c2ecf20Sopenharmony_ci#define STATUS_HIBERNATION_FAILURE cpu_to_le32(0xC0000411) 9608c2ecf20Sopenharmony_ci#define STATUS_DELAY_LOAD_FAILED cpu_to_le32(0xC0000412) 9618c2ecf20Sopenharmony_ci#define STATUS_AUTHENTICATION_FIREWALL_FAILED cpu_to_le32(0xC0000413) 9628c2ecf20Sopenharmony_ci#define STATUS_VDM_DISALLOWED cpu_to_le32(0xC0000414) 9638c2ecf20Sopenharmony_ci#define STATUS_HUNG_DISPLAY_DRIVER_THREAD cpu_to_le32(0xC0000415) 9648c2ecf20Sopenharmony_ci#define STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE cpu_to_le32(0xC0000416) 9658c2ecf20Sopenharmony_ci#define STATUS_INVALID_CRUNTIME_PARAMETER cpu_to_le32(0xC0000417) 9668c2ecf20Sopenharmony_ci#define STATUS_NTLM_BLOCKED cpu_to_le32(0xC0000418) 9678c2ecf20Sopenharmony_ci#define STATUS_ASSERTION_FAILURE cpu_to_le32(0xC0000420) 9688c2ecf20Sopenharmony_ci#define STATUS_VERIFIER_STOP cpu_to_le32(0xC0000421) 9698c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_POP_STACK cpu_to_le32(0xC0000423) 9708c2ecf20Sopenharmony_ci#define STATUS_INCOMPATIBLE_DRIVER_BLOCKED cpu_to_le32(0xC0000424) 9718c2ecf20Sopenharmony_ci#define STATUS_HIVE_UNLOADED cpu_to_le32(0xC0000425) 9728c2ecf20Sopenharmony_ci#define STATUS_COMPRESSION_DISABLED cpu_to_le32(0xC0000426) 9738c2ecf20Sopenharmony_ci#define STATUS_FILE_SYSTEM_LIMITATION cpu_to_le32(0xC0000427) 9748c2ecf20Sopenharmony_ci#define STATUS_INVALID_IMAGE_HASH cpu_to_le32(0xC0000428) 9758c2ecf20Sopenharmony_ci#define STATUS_NOT_CAPABLE cpu_to_le32(0xC0000429) 9768c2ecf20Sopenharmony_ci#define STATUS_REQUEST_OUT_OF_SEQUENCE cpu_to_le32(0xC000042A) 9778c2ecf20Sopenharmony_ci#define STATUS_IMPLEMENTATION_LIMIT cpu_to_le32(0xC000042B) 9788c2ecf20Sopenharmony_ci#define STATUS_ELEVATION_REQUIRED cpu_to_le32(0xC000042C) 9798c2ecf20Sopenharmony_ci#define STATUS_BEYOND_VDL cpu_to_le32(0xC0000432) 9808c2ecf20Sopenharmony_ci#define STATUS_ENCOUNTERED_WRITE_IN_PROGRESS cpu_to_le32(0xC0000433) 9818c2ecf20Sopenharmony_ci#define STATUS_PTE_CHANGED cpu_to_le32(0xC0000434) 9828c2ecf20Sopenharmony_ci#define STATUS_PURGE_FAILED cpu_to_le32(0xC0000435) 9838c2ecf20Sopenharmony_ci#define STATUS_CRED_REQUIRES_CONFIRMATION cpu_to_le32(0xC0000440) 9848c2ecf20Sopenharmony_ci#define STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE cpu_to_le32(0xC0000441) 9858c2ecf20Sopenharmony_ci#define STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER cpu_to_le32(0xC0000442) 9868c2ecf20Sopenharmony_ci#define STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE cpu_to_le32(0xC0000443) 9878c2ecf20Sopenharmony_ci#define STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE cpu_to_le32(0xC0000444) 9888c2ecf20Sopenharmony_ci#define STATUS_CS_ENCRYPTION_FILE_NOT_CSE cpu_to_le32(0xC0000445) 9898c2ecf20Sopenharmony_ci#define STATUS_INVALID_LABEL cpu_to_le32(0xC0000446) 9908c2ecf20Sopenharmony_ci#define STATUS_DRIVER_PROCESS_TERMINATED cpu_to_le32(0xC0000450) 9918c2ecf20Sopenharmony_ci#define STATUS_AMBIGUOUS_SYSTEM_DEVICE cpu_to_le32(0xC0000451) 9928c2ecf20Sopenharmony_ci#define STATUS_SYSTEM_DEVICE_NOT_FOUND cpu_to_le32(0xC0000452) 9938c2ecf20Sopenharmony_ci#define STATUS_RESTART_BOOT_APPLICATION cpu_to_le32(0xC0000453) 9948c2ecf20Sopenharmony_ci#define STATUS_INVALID_TASK_NAME cpu_to_le32(0xC0000500) 9958c2ecf20Sopenharmony_ci#define STATUS_INVALID_TASK_INDEX cpu_to_le32(0xC0000501) 9968c2ecf20Sopenharmony_ci#define STATUS_THREAD_ALREADY_IN_TASK cpu_to_le32(0xC0000502) 9978c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_BYPASS cpu_to_le32(0xC0000503) 9988c2ecf20Sopenharmony_ci#define STATUS_PORT_CLOSED cpu_to_le32(0xC0000700) 9998c2ecf20Sopenharmony_ci#define STATUS_MESSAGE_LOST cpu_to_le32(0xC0000701) 10008c2ecf20Sopenharmony_ci#define STATUS_INVALID_MESSAGE cpu_to_le32(0xC0000702) 10018c2ecf20Sopenharmony_ci#define STATUS_REQUEST_CANCELED cpu_to_le32(0xC0000703) 10028c2ecf20Sopenharmony_ci#define STATUS_RECURSIVE_DISPATCH cpu_to_le32(0xC0000704) 10038c2ecf20Sopenharmony_ci#define STATUS_LPC_RECEIVE_BUFFER_EXPECTED cpu_to_le32(0xC0000705) 10048c2ecf20Sopenharmony_ci#define STATUS_LPC_INVALID_CONNECTION_USAGE cpu_to_le32(0xC0000706) 10058c2ecf20Sopenharmony_ci#define STATUS_LPC_REQUESTS_NOT_ALLOWED cpu_to_le32(0xC0000707) 10068c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_IN_USE cpu_to_le32(0xC0000708) 10078c2ecf20Sopenharmony_ci#define STATUS_HARDWARE_MEMORY_ERROR cpu_to_le32(0xC0000709) 10088c2ecf20Sopenharmony_ci#define STATUS_THREADPOOL_HANDLE_EXCEPTION cpu_to_le32(0xC000070A) 10098c2ecf20Sopenharmony_ci#define STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED cpu_to_le32(0xC000070B) 10108c2ecf20Sopenharmony_ci#define STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED cpu_to_le32(0xC000070C) 10118c2ecf20Sopenharmony_ci#define STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED cpu_to_le32(0xC000070D) 10128c2ecf20Sopenharmony_ci#define STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED cpu_to_le32(0xC000070E) 10138c2ecf20Sopenharmony_ci#define STATUS_THREADPOOL_RELEASED_DURING_OPERATION cpu_to_le32(0xC000070F) 10148c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING cpu_to_le32(0xC0000710) 10158c2ecf20Sopenharmony_ci#define STATUS_APC_RETURNED_WHILE_IMPERSONATING cpu_to_le32(0xC0000711) 10168c2ecf20Sopenharmony_ci#define STATUS_PROCESS_IS_PROTECTED cpu_to_le32(0xC0000712) 10178c2ecf20Sopenharmony_ci#define STATUS_MCA_EXCEPTION cpu_to_le32(0xC0000713) 10188c2ecf20Sopenharmony_ci#define STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE cpu_to_le32(0xC0000714) 10198c2ecf20Sopenharmony_ci#define STATUS_SYMLINK_CLASS_DISABLED cpu_to_le32(0xC0000715) 10208c2ecf20Sopenharmony_ci#define STATUS_INVALID_IDN_NORMALIZATION cpu_to_le32(0xC0000716) 10218c2ecf20Sopenharmony_ci#define STATUS_NO_UNICODE_TRANSLATION cpu_to_le32(0xC0000717) 10228c2ecf20Sopenharmony_ci#define STATUS_ALREADY_REGISTERED cpu_to_le32(0xC0000718) 10238c2ecf20Sopenharmony_ci#define STATUS_CONTEXT_MISMATCH cpu_to_le32(0xC0000719) 10248c2ecf20Sopenharmony_ci#define STATUS_PORT_ALREADY_HAS_COMPLETION_LIST cpu_to_le32(0xC000071A) 10258c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_THREAD_PRIORITY cpu_to_le32(0xC000071B) 10268c2ecf20Sopenharmony_ci#define STATUS_INVALID_THREAD cpu_to_le32(0xC000071C) 10278c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_TRANSACTION cpu_to_le32(0xC000071D) 10288c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_LDR_LOCK cpu_to_le32(0xC000071E) 10298c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_LANG cpu_to_le32(0xC000071F) 10308c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_PRI_BACK cpu_to_le32(0xC0000720) 10318c2ecf20Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_THREAD_AFFINITY cpu_to_le32(0xC0000721) 10328c2ecf20Sopenharmony_ci#define STATUS_DISK_REPAIR_DISABLED cpu_to_le32(0xC0000800) 10338c2ecf20Sopenharmony_ci#define STATUS_DS_DOMAIN_RENAME_IN_PROGRESS cpu_to_le32(0xC0000801) 10348c2ecf20Sopenharmony_ci#define STATUS_DISK_QUOTA_EXCEEDED cpu_to_le32(0xC0000802) 10358c2ecf20Sopenharmony_ci#define STATUS_CONTENT_BLOCKED cpu_to_le32(0xC0000804) 10368c2ecf20Sopenharmony_ci#define STATUS_BAD_CLUSTERS cpu_to_le32(0xC0000805) 10378c2ecf20Sopenharmony_ci#define STATUS_VOLUME_DIRTY cpu_to_le32(0xC0000806) 10388c2ecf20Sopenharmony_ci#define STATUS_FILE_CHECKED_OUT cpu_to_le32(0xC0000901) 10398c2ecf20Sopenharmony_ci#define STATUS_CHECKOUT_REQUIRED cpu_to_le32(0xC0000902) 10408c2ecf20Sopenharmony_ci#define STATUS_BAD_FILE_TYPE cpu_to_le32(0xC0000903) 10418c2ecf20Sopenharmony_ci#define STATUS_FILE_TOO_LARGE cpu_to_le32(0xC0000904) 10428c2ecf20Sopenharmony_ci#define STATUS_FORMS_AUTH_REQUIRED cpu_to_le32(0xC0000905) 10438c2ecf20Sopenharmony_ci#define STATUS_VIRUS_INFECTED cpu_to_le32(0xC0000906) 10448c2ecf20Sopenharmony_ci#define STATUS_VIRUS_DELETED cpu_to_le32(0xC0000907) 10458c2ecf20Sopenharmony_ci#define STATUS_BAD_MCFG_TABLE cpu_to_le32(0xC0000908) 10468c2ecf20Sopenharmony_ci#define STATUS_WOW_ASSERTION cpu_to_le32(0xC0009898) 10478c2ecf20Sopenharmony_ci#define STATUS_INVALID_SIGNATURE cpu_to_le32(0xC000A000) 10488c2ecf20Sopenharmony_ci#define STATUS_HMAC_NOT_SUPPORTED cpu_to_le32(0xC000A001) 10498c2ecf20Sopenharmony_ci#define STATUS_IPSEC_QUEUE_OVERFLOW cpu_to_le32(0xC000A010) 10508c2ecf20Sopenharmony_ci#define STATUS_ND_QUEUE_OVERFLOW cpu_to_le32(0xC000A011) 10518c2ecf20Sopenharmony_ci#define STATUS_HOPLIMIT_EXCEEDED cpu_to_le32(0xC000A012) 10528c2ecf20Sopenharmony_ci#define STATUS_PROTOCOL_NOT_SUPPORTED cpu_to_le32(0xC000A013) 10538c2ecf20Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED cpu_to_le32(0xC000A080) 10548c2ecf20Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR cpu_to_le32(0xC000A081) 10558c2ecf20Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR cpu_to_le32(0xC000A082) 10568c2ecf20Sopenharmony_ci#define STATUS_XML_PARSE_ERROR cpu_to_le32(0xC000A083) 10578c2ecf20Sopenharmony_ci#define STATUS_XMLDSIG_ERROR cpu_to_le32(0xC000A084) 10588c2ecf20Sopenharmony_ci#define STATUS_WRONG_COMPARTMENT cpu_to_le32(0xC000A085) 10598c2ecf20Sopenharmony_ci#define STATUS_AUTHIP_FAILURE cpu_to_le32(0xC000A086) 10608c2ecf20Sopenharmony_ci#define DBG_NO_STATE_CHANGE cpu_to_le32(0xC0010001) 10618c2ecf20Sopenharmony_ci#define DBG_APP_NOT_IDLE cpu_to_le32(0xC0010002) 10628c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_STRING_BINDING cpu_to_le32(0xC0020001) 10638c2ecf20Sopenharmony_ci#define RPC_NT_WRONG_KIND_OF_BINDING cpu_to_le32(0xC0020002) 10648c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_BINDING cpu_to_le32(0xC0020003) 10658c2ecf20Sopenharmony_ci#define RPC_NT_PROTSEQ_NOT_SUPPORTED cpu_to_le32(0xC0020004) 10668c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_RPC_PROTSEQ cpu_to_le32(0xC0020005) 10678c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_STRING_UUID cpu_to_le32(0xC0020006) 10688c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_ENDPOINT_FORMAT cpu_to_le32(0xC0020007) 10698c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_NET_ADDR cpu_to_le32(0xC0020008) 10708c2ecf20Sopenharmony_ci#define RPC_NT_NO_ENDPOINT_FOUND cpu_to_le32(0xC0020009) 10718c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_TIMEOUT cpu_to_le32(0xC002000A) 10728c2ecf20Sopenharmony_ci#define RPC_NT_OBJECT_NOT_FOUND cpu_to_le32(0xC002000B) 10738c2ecf20Sopenharmony_ci#define RPC_NT_ALREADY_REGISTERED cpu_to_le32(0xC002000C) 10748c2ecf20Sopenharmony_ci#define RPC_NT_TYPE_ALREADY_REGISTERED cpu_to_le32(0xC002000D) 10758c2ecf20Sopenharmony_ci#define RPC_NT_ALREADY_LISTENING cpu_to_le32(0xC002000E) 10768c2ecf20Sopenharmony_ci#define RPC_NT_NO_PROTSEQS_REGISTERED cpu_to_le32(0xC002000F) 10778c2ecf20Sopenharmony_ci#define RPC_NT_NOT_LISTENING cpu_to_le32(0xC0020010) 10788c2ecf20Sopenharmony_ci#define RPC_NT_UNKNOWN_MGR_TYPE cpu_to_le32(0xC0020011) 10798c2ecf20Sopenharmony_ci#define RPC_NT_UNKNOWN_IF cpu_to_le32(0xC0020012) 10808c2ecf20Sopenharmony_ci#define RPC_NT_NO_BINDINGS cpu_to_le32(0xC0020013) 10818c2ecf20Sopenharmony_ci#define RPC_NT_NO_PROTSEQS cpu_to_le32(0xC0020014) 10828c2ecf20Sopenharmony_ci#define RPC_NT_CANT_CREATE_ENDPOINT cpu_to_le32(0xC0020015) 10838c2ecf20Sopenharmony_ci#define RPC_NT_OUT_OF_RESOURCES cpu_to_le32(0xC0020016) 10848c2ecf20Sopenharmony_ci#define RPC_NT_SERVER_UNAVAILABLE cpu_to_le32(0xC0020017) 10858c2ecf20Sopenharmony_ci#define RPC_NT_SERVER_TOO_BUSY cpu_to_le32(0xC0020018) 10868c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_NETWORK_OPTIONS cpu_to_le32(0xC0020019) 10878c2ecf20Sopenharmony_ci#define RPC_NT_NO_CALL_ACTIVE cpu_to_le32(0xC002001A) 10888c2ecf20Sopenharmony_ci#define RPC_NT_CALL_FAILED cpu_to_le32(0xC002001B) 10898c2ecf20Sopenharmony_ci#define RPC_NT_CALL_FAILED_DNE cpu_to_le32(0xC002001C) 10908c2ecf20Sopenharmony_ci#define RPC_NT_PROTOCOL_ERROR cpu_to_le32(0xC002001D) 10918c2ecf20Sopenharmony_ci#define RPC_NT_UNSUPPORTED_TRANS_SYN cpu_to_le32(0xC002001F) 10928c2ecf20Sopenharmony_ci#define RPC_NT_UNSUPPORTED_TYPE cpu_to_le32(0xC0020021) 10938c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_TAG cpu_to_le32(0xC0020022) 10948c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_BOUND cpu_to_le32(0xC0020023) 10958c2ecf20Sopenharmony_ci#define RPC_NT_NO_ENTRY_NAME cpu_to_le32(0xC0020024) 10968c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_NAME_SYNTAX cpu_to_le32(0xC0020025) 10978c2ecf20Sopenharmony_ci#define RPC_NT_UNSUPPORTED_NAME_SYNTAX cpu_to_le32(0xC0020026) 10988c2ecf20Sopenharmony_ci#define RPC_NT_UUID_NO_ADDRESS cpu_to_le32(0xC0020028) 10998c2ecf20Sopenharmony_ci#define RPC_NT_DUPLICATE_ENDPOINT cpu_to_le32(0xC0020029) 11008c2ecf20Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHN_TYPE cpu_to_le32(0xC002002A) 11018c2ecf20Sopenharmony_ci#define RPC_NT_MAX_CALLS_TOO_SMALL cpu_to_le32(0xC002002B) 11028c2ecf20Sopenharmony_ci#define RPC_NT_STRING_TOO_LONG cpu_to_le32(0xC002002C) 11038c2ecf20Sopenharmony_ci#define RPC_NT_PROTSEQ_NOT_FOUND cpu_to_le32(0xC002002D) 11048c2ecf20Sopenharmony_ci#define RPC_NT_PROCNUM_OUT_OF_RANGE cpu_to_le32(0xC002002E) 11058c2ecf20Sopenharmony_ci#define RPC_NT_BINDING_HAS_NO_AUTH cpu_to_le32(0xC002002F) 11068c2ecf20Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHN_SERVICE cpu_to_le32(0xC0020030) 11078c2ecf20Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHN_LEVEL cpu_to_le32(0xC0020031) 11088c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_AUTH_IDENTITY cpu_to_le32(0xC0020032) 11098c2ecf20Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHZ_SERVICE cpu_to_le32(0xC0020033) 11108c2ecf20Sopenharmony_ci#define EPT_NT_INVALID_ENTRY cpu_to_le32(0xC0020034) 11118c2ecf20Sopenharmony_ci#define EPT_NT_CANT_PERFORM_OP cpu_to_le32(0xC0020035) 11128c2ecf20Sopenharmony_ci#define EPT_NT_NOT_REGISTERED cpu_to_le32(0xC0020036) 11138c2ecf20Sopenharmony_ci#define RPC_NT_NOTHING_TO_EXPORT cpu_to_le32(0xC0020037) 11148c2ecf20Sopenharmony_ci#define RPC_NT_INCOMPLETE_NAME cpu_to_le32(0xC0020038) 11158c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_VERS_OPTION cpu_to_le32(0xC0020039) 11168c2ecf20Sopenharmony_ci#define RPC_NT_NO_MORE_MEMBERS cpu_to_le32(0xC002003A) 11178c2ecf20Sopenharmony_ci#define RPC_NT_NOT_ALL_OBJS_UNEXPORTED cpu_to_le32(0xC002003B) 11188c2ecf20Sopenharmony_ci#define RPC_NT_INTERFACE_NOT_FOUND cpu_to_le32(0xC002003C) 11198c2ecf20Sopenharmony_ci#define RPC_NT_ENTRY_ALREADY_EXISTS cpu_to_le32(0xC002003D) 11208c2ecf20Sopenharmony_ci#define RPC_NT_ENTRY_NOT_FOUND cpu_to_le32(0xC002003E) 11218c2ecf20Sopenharmony_ci#define RPC_NT_NAME_SERVICE_UNAVAILABLE cpu_to_le32(0xC002003F) 11228c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_NAF_ID cpu_to_le32(0xC0020040) 11238c2ecf20Sopenharmony_ci#define RPC_NT_CANNOT_SUPPORT cpu_to_le32(0xC0020041) 11248c2ecf20Sopenharmony_ci#define RPC_NT_NO_CONTEXT_AVAILABLE cpu_to_le32(0xC0020042) 11258c2ecf20Sopenharmony_ci#define RPC_NT_INTERNAL_ERROR cpu_to_le32(0xC0020043) 11268c2ecf20Sopenharmony_ci#define RPC_NT_ZERO_DIVIDE cpu_to_le32(0xC0020044) 11278c2ecf20Sopenharmony_ci#define RPC_NT_ADDRESS_ERROR cpu_to_le32(0xC0020045) 11288c2ecf20Sopenharmony_ci#define RPC_NT_FP_DIV_ZERO cpu_to_le32(0xC0020046) 11298c2ecf20Sopenharmony_ci#define RPC_NT_FP_UNDERFLOW cpu_to_le32(0xC0020047) 11308c2ecf20Sopenharmony_ci#define RPC_NT_FP_OVERFLOW cpu_to_le32(0xC0020048) 11318c2ecf20Sopenharmony_ci#define RPC_NT_CALL_IN_PROGRESS cpu_to_le32(0xC0020049) 11328c2ecf20Sopenharmony_ci#define RPC_NT_NO_MORE_BINDINGS cpu_to_le32(0xC002004A) 11338c2ecf20Sopenharmony_ci#define RPC_NT_GROUP_MEMBER_NOT_FOUND cpu_to_le32(0xC002004B) 11348c2ecf20Sopenharmony_ci#define EPT_NT_CANT_CREATE cpu_to_le32(0xC002004C) 11358c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_OBJECT cpu_to_le32(0xC002004D) 11368c2ecf20Sopenharmony_ci#define RPC_NT_NO_INTERFACES cpu_to_le32(0xC002004F) 11378c2ecf20Sopenharmony_ci#define RPC_NT_CALL_CANCELLED cpu_to_le32(0xC0020050) 11388c2ecf20Sopenharmony_ci#define RPC_NT_BINDING_INCOMPLETE cpu_to_le32(0xC0020051) 11398c2ecf20Sopenharmony_ci#define RPC_NT_COMM_FAILURE cpu_to_le32(0xC0020052) 11408c2ecf20Sopenharmony_ci#define RPC_NT_UNSUPPORTED_AUTHN_LEVEL cpu_to_le32(0xC0020053) 11418c2ecf20Sopenharmony_ci#define RPC_NT_NO_PRINC_NAME cpu_to_le32(0xC0020054) 11428c2ecf20Sopenharmony_ci#define RPC_NT_NOT_RPC_ERROR cpu_to_le32(0xC0020055) 11438c2ecf20Sopenharmony_ci#define RPC_NT_SEC_PKG_ERROR cpu_to_le32(0xC0020057) 11448c2ecf20Sopenharmony_ci#define RPC_NT_NOT_CANCELLED cpu_to_le32(0xC0020058) 11458c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_ASYNC_HANDLE cpu_to_le32(0xC0020062) 11468c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_ASYNC_CALL cpu_to_le32(0xC0020063) 11478c2ecf20Sopenharmony_ci#define RPC_NT_PROXY_ACCESS_DENIED cpu_to_le32(0xC0020064) 11488c2ecf20Sopenharmony_ci#define RPC_NT_NO_MORE_ENTRIES cpu_to_le32(0xC0030001) 11498c2ecf20Sopenharmony_ci#define RPC_NT_SS_CHAR_TRANS_OPEN_FAIL cpu_to_le32(0xC0030002) 11508c2ecf20Sopenharmony_ci#define RPC_NT_SS_CHAR_TRANS_SHORT_FILE cpu_to_le32(0xC0030003) 11518c2ecf20Sopenharmony_ci#define RPC_NT_SS_IN_NULL_CONTEXT cpu_to_le32(0xC0030004) 11528c2ecf20Sopenharmony_ci#define RPC_NT_SS_CONTEXT_MISMATCH cpu_to_le32(0xC0030005) 11538c2ecf20Sopenharmony_ci#define RPC_NT_SS_CONTEXT_DAMAGED cpu_to_le32(0xC0030006) 11548c2ecf20Sopenharmony_ci#define RPC_NT_SS_HANDLES_MISMATCH cpu_to_le32(0xC0030007) 11558c2ecf20Sopenharmony_ci#define RPC_NT_SS_CANNOT_GET_CALL_HANDLE cpu_to_le32(0xC0030008) 11568c2ecf20Sopenharmony_ci#define RPC_NT_NULL_REF_POINTER cpu_to_le32(0xC0030009) 11578c2ecf20Sopenharmony_ci#define RPC_NT_ENUM_VALUE_OUT_OF_RANGE cpu_to_le32(0xC003000A) 11588c2ecf20Sopenharmony_ci#define RPC_NT_BYTE_COUNT_TOO_SMALL cpu_to_le32(0xC003000B) 11598c2ecf20Sopenharmony_ci#define RPC_NT_BAD_STUB_DATA cpu_to_le32(0xC003000C) 11608c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_ES_ACTION cpu_to_le32(0xC0030059) 11618c2ecf20Sopenharmony_ci#define RPC_NT_WRONG_ES_VERSION cpu_to_le32(0xC003005A) 11628c2ecf20Sopenharmony_ci#define RPC_NT_WRONG_STUB_VERSION cpu_to_le32(0xC003005B) 11638c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_PIPE_OBJECT cpu_to_le32(0xC003005C) 11648c2ecf20Sopenharmony_ci#define RPC_NT_INVALID_PIPE_OPERATION cpu_to_le32(0xC003005D) 11658c2ecf20Sopenharmony_ci#define RPC_NT_WRONG_PIPE_VERSION cpu_to_le32(0xC003005E) 11668c2ecf20Sopenharmony_ci#define RPC_NT_PIPE_CLOSED cpu_to_le32(0xC003005F) 11678c2ecf20Sopenharmony_ci#define RPC_NT_PIPE_DISCIPLINE_ERROR cpu_to_le32(0xC0030060) 11688c2ecf20Sopenharmony_ci#define RPC_NT_PIPE_EMPTY cpu_to_le32(0xC0030061) 11698c2ecf20Sopenharmony_ci#define STATUS_PNP_BAD_MPS_TABLE cpu_to_le32(0xC0040035) 11708c2ecf20Sopenharmony_ci#define STATUS_PNP_TRANSLATION_FAILED cpu_to_le32(0xC0040036) 11718c2ecf20Sopenharmony_ci#define STATUS_PNP_IRQ_TRANSLATION_FAILED cpu_to_le32(0xC0040037) 11728c2ecf20Sopenharmony_ci#define STATUS_PNP_INVALID_ID cpu_to_le32(0xC0040038) 11738c2ecf20Sopenharmony_ci#define STATUS_IO_REISSUE_AS_CACHED cpu_to_le32(0xC0040039) 11748c2ecf20Sopenharmony_ci#define STATUS_CTX_WINSTATION_NAME_INVALID cpu_to_le32(0xC00A0001) 11758c2ecf20Sopenharmony_ci#define STATUS_CTX_INVALID_PD cpu_to_le32(0xC00A0002) 11768c2ecf20Sopenharmony_ci#define STATUS_CTX_PD_NOT_FOUND cpu_to_le32(0xC00A0003) 11778c2ecf20Sopenharmony_ci#define STATUS_CTX_CLOSE_PENDING cpu_to_le32(0xC00A0006) 11788c2ecf20Sopenharmony_ci#define STATUS_CTX_NO_OUTBUF cpu_to_le32(0xC00A0007) 11798c2ecf20Sopenharmony_ci#define STATUS_CTX_MODEM_INF_NOT_FOUND cpu_to_le32(0xC00A0008) 11808c2ecf20Sopenharmony_ci#define STATUS_CTX_INVALID_MODEMNAME cpu_to_le32(0xC00A0009) 11818c2ecf20Sopenharmony_ci#define STATUS_CTX_RESPONSE_ERROR cpu_to_le32(0xC00A000A) 11828c2ecf20Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_TIMEOUT cpu_to_le32(0xC00A000B) 11838c2ecf20Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_NO_CARRIER cpu_to_le32(0xC00A000C) 11848c2ecf20Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE cpu_to_le32(0xC00A000D) 11858c2ecf20Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_BUSY cpu_to_le32(0xC00A000E) 11868c2ecf20Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_VOICE cpu_to_le32(0xC00A000F) 11878c2ecf20Sopenharmony_ci#define STATUS_CTX_TD_ERROR cpu_to_le32(0xC00A0010) 11888c2ecf20Sopenharmony_ci#define STATUS_CTX_LICENSE_CLIENT_INVALID cpu_to_le32(0xC00A0012) 11898c2ecf20Sopenharmony_ci#define STATUS_CTX_LICENSE_NOT_AVAILABLE cpu_to_le32(0xC00A0013) 11908c2ecf20Sopenharmony_ci#define STATUS_CTX_LICENSE_EXPIRED cpu_to_le32(0xC00A0014) 11918c2ecf20Sopenharmony_ci#define STATUS_CTX_WINSTATION_NOT_FOUND cpu_to_le32(0xC00A0015) 11928c2ecf20Sopenharmony_ci#define STATUS_CTX_WINSTATION_NAME_COLLISION cpu_to_le32(0xC00A0016) 11938c2ecf20Sopenharmony_ci#define STATUS_CTX_WINSTATION_BUSY cpu_to_le32(0xC00A0017) 11948c2ecf20Sopenharmony_ci#define STATUS_CTX_BAD_VIDEO_MODE cpu_to_le32(0xC00A0018) 11958c2ecf20Sopenharmony_ci#define STATUS_CTX_GRAPHICS_INVALID cpu_to_le32(0xC00A0022) 11968c2ecf20Sopenharmony_ci#define STATUS_CTX_NOT_CONSOLE cpu_to_le32(0xC00A0024) 11978c2ecf20Sopenharmony_ci#define STATUS_CTX_CLIENT_QUERY_TIMEOUT cpu_to_le32(0xC00A0026) 11988c2ecf20Sopenharmony_ci#define STATUS_CTX_CONSOLE_DISCONNECT cpu_to_le32(0xC00A0027) 11998c2ecf20Sopenharmony_ci#define STATUS_CTX_CONSOLE_CONNECT cpu_to_le32(0xC00A0028) 12008c2ecf20Sopenharmony_ci#define STATUS_CTX_SHADOW_DENIED cpu_to_le32(0xC00A002A) 12018c2ecf20Sopenharmony_ci#define STATUS_CTX_WINSTATION_ACCESS_DENIED cpu_to_le32(0xC00A002B) 12028c2ecf20Sopenharmony_ci#define STATUS_CTX_INVALID_WD cpu_to_le32(0xC00A002E) 12038c2ecf20Sopenharmony_ci#define STATUS_CTX_WD_NOT_FOUND cpu_to_le32(0xC00A002F) 12048c2ecf20Sopenharmony_ci#define STATUS_CTX_SHADOW_INVALID cpu_to_le32(0xC00A0030) 12058c2ecf20Sopenharmony_ci#define STATUS_CTX_SHADOW_DISABLED cpu_to_le32(0xC00A0031) 12068c2ecf20Sopenharmony_ci#define STATUS_RDP_PROTOCOL_ERROR cpu_to_le32(0xC00A0032) 12078c2ecf20Sopenharmony_ci#define STATUS_CTX_CLIENT_LICENSE_NOT_SET cpu_to_le32(0xC00A0033) 12088c2ecf20Sopenharmony_ci#define STATUS_CTX_CLIENT_LICENSE_IN_USE cpu_to_le32(0xC00A0034) 12098c2ecf20Sopenharmony_ci#define STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE cpu_to_le32(0xC00A0035) 12108c2ecf20Sopenharmony_ci#define STATUS_CTX_SHADOW_NOT_RUNNING cpu_to_le32(0xC00A0036) 12118c2ecf20Sopenharmony_ci#define STATUS_CTX_LOGON_DISABLED cpu_to_le32(0xC00A0037) 12128c2ecf20Sopenharmony_ci#define STATUS_CTX_SECURITY_LAYER_ERROR cpu_to_le32(0xC00A0038) 12138c2ecf20Sopenharmony_ci#define STATUS_TS_INCOMPATIBLE_SESSIONS cpu_to_le32(0xC00A0039) 12148c2ecf20Sopenharmony_ci#define STATUS_MUI_FILE_NOT_FOUND cpu_to_le32(0xC00B0001) 12158c2ecf20Sopenharmony_ci#define STATUS_MUI_INVALID_FILE cpu_to_le32(0xC00B0002) 12168c2ecf20Sopenharmony_ci#define STATUS_MUI_INVALID_RC_CONFIG cpu_to_le32(0xC00B0003) 12178c2ecf20Sopenharmony_ci#define STATUS_MUI_INVALID_LOCALE_NAME cpu_to_le32(0xC00B0004) 12188c2ecf20Sopenharmony_ci#define STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME cpu_to_le32(0xC00B0005) 12198c2ecf20Sopenharmony_ci#define STATUS_MUI_FILE_NOT_LOADED cpu_to_le32(0xC00B0006) 12208c2ecf20Sopenharmony_ci#define STATUS_RESOURCE_ENUM_USER_STOP cpu_to_le32(0xC00B0007) 12218c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_INVALID_NODE cpu_to_le32(0xC0130001) 12228c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_EXISTS cpu_to_le32(0xC0130002) 12238c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_JOIN_IN_PROGRESS cpu_to_le32(0xC0130003) 12248c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_NOT_FOUND cpu_to_le32(0xC0130004) 12258c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND cpu_to_le32(0xC0130005) 12268c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_EXISTS cpu_to_le32(0xC0130006) 12278c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_NOT_FOUND cpu_to_le32(0xC0130007) 12288c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETINTERFACE_EXISTS cpu_to_le32(0xC0130008) 12298c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETINTERFACE_NOT_FOUND cpu_to_le32(0xC0130009) 12308c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_INVALID_REQUEST cpu_to_le32(0xC013000A) 12318c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_INVALID_NETWORK_PROVIDER cpu_to_le32(0xC013000B) 12328c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_DOWN cpu_to_le32(0xC013000C) 12338c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_UNREACHABLE cpu_to_le32(0xC013000D) 12348c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_NOT_MEMBER cpu_to_le32(0xC013000E) 12358c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS cpu_to_le32(0xC013000F) 12368c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_INVALID_NETWORK cpu_to_le32(0xC0130010) 12378c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NO_NET_ADAPTERS cpu_to_le32(0xC0130011) 12388c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_UP cpu_to_le32(0xC0130012) 12398c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_PAUSED cpu_to_le32(0xC0130013) 12408c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NODE_NOT_PAUSED cpu_to_le32(0xC0130014) 12418c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NO_SECURITY_CONTEXT cpu_to_le32(0xC0130015) 12428c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_NOT_INTERNAL cpu_to_le32(0xC0130016) 12438c2ecf20Sopenharmony_ci#define STATUS_CLUSTER_POISONED cpu_to_le32(0xC0130017) 12448c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_OPCODE cpu_to_le32(0xC0140001) 12458c2ecf20Sopenharmony_ci#define STATUS_ACPI_STACK_OVERFLOW cpu_to_le32(0xC0140002) 12468c2ecf20Sopenharmony_ci#define STATUS_ACPI_ASSERT_FAILED cpu_to_le32(0xC0140003) 12478c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_INDEX cpu_to_le32(0xC0140004) 12488c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_ARGUMENT cpu_to_le32(0xC0140005) 12498c2ecf20Sopenharmony_ci#define STATUS_ACPI_FATAL cpu_to_le32(0xC0140006) 12508c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_SUPERNAME cpu_to_le32(0xC0140007) 12518c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_ARGTYPE cpu_to_le32(0xC0140008) 12528c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_OBJTYPE cpu_to_le32(0xC0140009) 12538c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_TARGETTYPE cpu_to_le32(0xC014000A) 12548c2ecf20Sopenharmony_ci#define STATUS_ACPI_INCORRECT_ARGUMENT_COUNT cpu_to_le32(0xC014000B) 12558c2ecf20Sopenharmony_ci#define STATUS_ACPI_ADDRESS_NOT_MAPPED cpu_to_le32(0xC014000C) 12568c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_EVENTTYPE cpu_to_le32(0xC014000D) 12578c2ecf20Sopenharmony_ci#define STATUS_ACPI_HANDLER_COLLISION cpu_to_le32(0xC014000E) 12588c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_DATA cpu_to_le32(0xC014000F) 12598c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_REGION cpu_to_le32(0xC0140010) 12608c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_ACCESS_SIZE cpu_to_le32(0xC0140011) 12618c2ecf20Sopenharmony_ci#define STATUS_ACPI_ACQUIRE_GLOBAL_LOCK cpu_to_le32(0xC0140012) 12628c2ecf20Sopenharmony_ci#define STATUS_ACPI_ALREADY_INITIALIZED cpu_to_le32(0xC0140013) 12638c2ecf20Sopenharmony_ci#define STATUS_ACPI_NOT_INITIALIZED cpu_to_le32(0xC0140014) 12648c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_MUTEX_LEVEL cpu_to_le32(0xC0140015) 12658c2ecf20Sopenharmony_ci#define STATUS_ACPI_MUTEX_NOT_OWNED cpu_to_le32(0xC0140016) 12668c2ecf20Sopenharmony_ci#define STATUS_ACPI_MUTEX_NOT_OWNER cpu_to_le32(0xC0140017) 12678c2ecf20Sopenharmony_ci#define STATUS_ACPI_RS_ACCESS cpu_to_le32(0xC0140018) 12688c2ecf20Sopenharmony_ci#define STATUS_ACPI_INVALID_TABLE cpu_to_le32(0xC0140019) 12698c2ecf20Sopenharmony_ci#define STATUS_ACPI_REG_HANDLER_FAILED cpu_to_le32(0xC0140020) 12708c2ecf20Sopenharmony_ci#define STATUS_ACPI_POWER_REQUEST_FAILED cpu_to_le32(0xC0140021) 12718c2ecf20Sopenharmony_ci#define STATUS_SXS_SECTION_NOT_FOUND cpu_to_le32(0xC0150001) 12728c2ecf20Sopenharmony_ci#define STATUS_SXS_CANT_GEN_ACTCTX cpu_to_le32(0xC0150002) 12738c2ecf20Sopenharmony_ci#define STATUS_SXS_INVALID_ACTCTXDATA_FORMAT cpu_to_le32(0xC0150003) 12748c2ecf20Sopenharmony_ci#define STATUS_SXS_ASSEMBLY_NOT_FOUND cpu_to_le32(0xC0150004) 12758c2ecf20Sopenharmony_ci#define STATUS_SXS_MANIFEST_FORMAT_ERROR cpu_to_le32(0xC0150005) 12768c2ecf20Sopenharmony_ci#define STATUS_SXS_MANIFEST_PARSE_ERROR cpu_to_le32(0xC0150006) 12778c2ecf20Sopenharmony_ci#define STATUS_SXS_ACTIVATION_CONTEXT_DISABLED cpu_to_le32(0xC0150007) 12788c2ecf20Sopenharmony_ci#define STATUS_SXS_KEY_NOT_FOUND cpu_to_le32(0xC0150008) 12798c2ecf20Sopenharmony_ci#define STATUS_SXS_VERSION_CONFLICT cpu_to_le32(0xC0150009) 12808c2ecf20Sopenharmony_ci#define STATUS_SXS_WRONG_SECTION_TYPE cpu_to_le32(0xC015000A) 12818c2ecf20Sopenharmony_ci#define STATUS_SXS_THREAD_QUERIES_DISABLED cpu_to_le32(0xC015000B) 12828c2ecf20Sopenharmony_ci#define STATUS_SXS_ASSEMBLY_MISSING cpu_to_le32(0xC015000C) 12838c2ecf20Sopenharmony_ci#define STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET cpu_to_le32(0xC015000E) 12848c2ecf20Sopenharmony_ci#define STATUS_SXS_EARLY_DEACTIVATION cpu_to_le32(0xC015000F) 12858c2ecf20Sopenharmony_ci#define STATUS_SXS_INVALID_DEACTIVATION cpu_to_le32(0xC0150010) 12868c2ecf20Sopenharmony_ci#define STATUS_SXS_MULTIPLE_DEACTIVATION cpu_to_le32(0xC0150011) 12878c2ecf20Sopenharmony_ci#define STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY cpu_to_le32(0xC0150012) 12888c2ecf20Sopenharmony_ci#define STATUS_SXS_PROCESS_TERMINATION_REQUESTED cpu_to_le32(0xC0150013) 12898c2ecf20Sopenharmony_ci#define STATUS_SXS_CORRUPT_ACTIVATION_STACK cpu_to_le32(0xC0150014) 12908c2ecf20Sopenharmony_ci#define STATUS_SXS_CORRUPTION cpu_to_le32(0xC0150015) 12918c2ecf20Sopenharmony_ci#define STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE cpu_to_le32(0xC0150016) 12928c2ecf20Sopenharmony_ci#define STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME cpu_to_le32(0xC0150017) 12938c2ecf20Sopenharmony_ci#define STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE cpu_to_le32(0xC0150018) 12948c2ecf20Sopenharmony_ci#define STATUS_SXS_IDENTITY_PARSE_ERROR cpu_to_le32(0xC0150019) 12958c2ecf20Sopenharmony_ci#define STATUS_SXS_COMPONENT_STORE_CORRUPT cpu_to_le32(0xC015001A) 12968c2ecf20Sopenharmony_ci#define STATUS_SXS_FILE_HASH_MISMATCH cpu_to_le32(0xC015001B) 12978c2ecf20Sopenharmony_ci#define STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT cpu_to_le32(0xC015001C) 12988c2ecf20Sopenharmony_ci#define STATUS_SXS_IDENTITIES_DIFFERENT cpu_to_le32(0xC015001D) 12998c2ecf20Sopenharmony_ci#define STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT cpu_to_le32(0xC015001E) 13008c2ecf20Sopenharmony_ci#define STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY cpu_to_le32(0xC015001F) 13018c2ecf20Sopenharmony_ci#define STATUS_ADVANCED_INSTALLER_FAILED cpu_to_le32(0xC0150020) 13028c2ecf20Sopenharmony_ci#define STATUS_XML_ENCODING_MISMATCH cpu_to_le32(0xC0150021) 13038c2ecf20Sopenharmony_ci#define STATUS_SXS_MANIFEST_TOO_BIG cpu_to_le32(0xC0150022) 13048c2ecf20Sopenharmony_ci#define STATUS_SXS_SETTING_NOT_REGISTERED cpu_to_le32(0xC0150023) 13058c2ecf20Sopenharmony_ci#define STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE cpu_to_le32(0xC0150024) 13068c2ecf20Sopenharmony_ci#define STATUS_SMI_PRIMITIVE_INSTALLER_FAILED cpu_to_le32(0xC0150025) 13078c2ecf20Sopenharmony_ci#define STATUS_GENERIC_COMMAND_FAILED cpu_to_le32(0xC0150026) 13088c2ecf20Sopenharmony_ci#define STATUS_SXS_FILE_HASH_MISSING cpu_to_le32(0xC0150027) 13098c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONAL_CONFLICT cpu_to_le32(0xC0190001) 13108c2ecf20Sopenharmony_ci#define STATUS_INVALID_TRANSACTION cpu_to_le32(0xC0190002) 13118c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NOT_ACTIVE cpu_to_le32(0xC0190003) 13128c2ecf20Sopenharmony_ci#define STATUS_TM_INITIALIZATION_FAILED cpu_to_le32(0xC0190004) 13138c2ecf20Sopenharmony_ci#define STATUS_RM_NOT_ACTIVE cpu_to_le32(0xC0190005) 13148c2ecf20Sopenharmony_ci#define STATUS_RM_METADATA_CORRUPT cpu_to_le32(0xC0190006) 13158c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NOT_JOINED cpu_to_le32(0xC0190007) 13168c2ecf20Sopenharmony_ci#define STATUS_DIRECTORY_NOT_RM cpu_to_le32(0xC0190008) 13178c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE cpu_to_le32(0xC019000A) 13188c2ecf20Sopenharmony_ci#define STATUS_LOG_RESIZE_INVALID_SIZE cpu_to_le32(0xC019000B) 13198c2ecf20Sopenharmony_ci#define STATUS_REMOTE_FILE_VERSION_MISMATCH cpu_to_le32(0xC019000C) 13208c2ecf20Sopenharmony_ci#define STATUS_CRM_PROTOCOL_ALREADY_EXISTS cpu_to_le32(0xC019000F) 13218c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_PROPAGATION_FAILED cpu_to_le32(0xC0190010) 13228c2ecf20Sopenharmony_ci#define STATUS_CRM_PROTOCOL_NOT_FOUND cpu_to_le32(0xC0190011) 13238c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_SUPERIOR_EXISTS cpu_to_le32(0xC0190012) 13248c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_REQUEST_NOT_VALID cpu_to_le32(0xC0190013) 13258c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NOT_REQUESTED cpu_to_le32(0xC0190014) 13268c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_ALREADY_ABORTED cpu_to_le32(0xC0190015) 13278c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_ALREADY_COMMITTED cpu_to_le32(0xC0190016) 13288c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER cpu_to_le32(0xC0190017) 13298c2ecf20Sopenharmony_ci#define STATUS_CURRENT_TRANSACTION_NOT_VALID cpu_to_le32(0xC0190018) 13308c2ecf20Sopenharmony_ci#define STATUS_LOG_GROWTH_FAILED cpu_to_le32(0xC0190019) 13318c2ecf20Sopenharmony_ci#define STATUS_OBJECT_NO_LONGER_EXISTS cpu_to_le32(0xC0190021) 13328c2ecf20Sopenharmony_ci#define STATUS_STREAM_MINIVERSION_NOT_FOUND cpu_to_le32(0xC0190022) 13338c2ecf20Sopenharmony_ci#define STATUS_STREAM_MINIVERSION_NOT_VALID cpu_to_le32(0xC0190023) 13348c2ecf20Sopenharmony_ci#define STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION cpu_to_le32(0xC0190024) 13358c2ecf20Sopenharmony_ci#define STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT cpu_to_le32(0xC0190025) 13368c2ecf20Sopenharmony_ci#define STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS cpu_to_le32(0xC0190026) 13378c2ecf20Sopenharmony_ci#define STATUS_HANDLE_NO_LONGER_VALID cpu_to_le32(0xC0190028) 13388c2ecf20Sopenharmony_ci#define STATUS_LOG_CORRUPTION_DETECTED cpu_to_le32(0xC0190030) 13398c2ecf20Sopenharmony_ci#define STATUS_RM_DISCONNECTED cpu_to_le32(0xC0190032) 13408c2ecf20Sopenharmony_ci#define STATUS_ENLISTMENT_NOT_SUPERIOR cpu_to_le32(0xC0190033) 13418c2ecf20Sopenharmony_ci#define STATUS_FILE_IDENTITY_NOT_PERSISTENT cpu_to_le32(0xC0190036) 13428c2ecf20Sopenharmony_ci#define STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY cpu_to_le32(0xC0190037) 13438c2ecf20Sopenharmony_ci#define STATUS_CANT_CROSS_RM_BOUNDARY cpu_to_le32(0xC0190038) 13448c2ecf20Sopenharmony_ci#define STATUS_TXF_DIR_NOT_EMPTY cpu_to_le32(0xC0190039) 13458c2ecf20Sopenharmony_ci#define STATUS_INDOUBT_TRANSACTIONS_EXIST cpu_to_le32(0xC019003A) 13468c2ecf20Sopenharmony_ci#define STATUS_TM_VOLATILE cpu_to_le32(0xC019003B) 13478c2ecf20Sopenharmony_ci#define STATUS_ROLLBACK_TIMER_EXPIRED cpu_to_le32(0xC019003C) 13488c2ecf20Sopenharmony_ci#define STATUS_TXF_ATTRIBUTE_CORRUPT cpu_to_le32(0xC019003D) 13498c2ecf20Sopenharmony_ci#define STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION cpu_to_le32(0xC019003E) 13508c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED cpu_to_le32(0xC019003F) 13518c2ecf20Sopenharmony_ci#define STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE cpu_to_le32(0xC0190040) 13528c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_REQUIRED_PROMOTION cpu_to_le32(0xC0190043) 13538c2ecf20Sopenharmony_ci#define STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION cpu_to_le32(0xC0190044) 13548c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONS_NOT_FROZEN cpu_to_le32(0xC0190045) 13558c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_FREEZE_IN_PROGRESS cpu_to_le32(0xC0190046) 13568c2ecf20Sopenharmony_ci#define STATUS_NOT_SNAPSHOT_VOLUME cpu_to_le32(0xC0190047) 13578c2ecf20Sopenharmony_ci#define STATUS_NO_SAVEPOINT_WITH_OPEN_FILES cpu_to_le32(0xC0190048) 13588c2ecf20Sopenharmony_ci#define STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION cpu_to_le32(0xC0190049) 13598c2ecf20Sopenharmony_ci#define STATUS_TM_IDENTITY_MISMATCH cpu_to_le32(0xC019004A) 13608c2ecf20Sopenharmony_ci#define STATUS_FLOATED_SECTION cpu_to_le32(0xC019004B) 13618c2ecf20Sopenharmony_ci#define STATUS_CANNOT_ACCEPT_TRANSACTED_WORK cpu_to_le32(0xC019004C) 13628c2ecf20Sopenharmony_ci#define STATUS_CANNOT_ABORT_TRANSACTIONS cpu_to_le32(0xC019004D) 13638c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NOT_FOUND cpu_to_le32(0xC019004E) 13648c2ecf20Sopenharmony_ci#define STATUS_RESOURCEMANAGER_NOT_FOUND cpu_to_le32(0xC019004F) 13658c2ecf20Sopenharmony_ci#define STATUS_ENLISTMENT_NOT_FOUND cpu_to_le32(0xC0190050) 13668c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONMANAGER_NOT_FOUND cpu_to_le32(0xC0190051) 13678c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONMANAGER_NOT_ONLINE cpu_to_le32(0xC0190052) 13688c2ecf20Sopenharmony_ci#define STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION cpu_to_le32(0xC0190053) 13698c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_NOT_ROOT cpu_to_le32(0xC0190054) 13708c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_OBJECT_EXPIRED cpu_to_le32(0xC0190055) 13718c2ecf20Sopenharmony_ci#define STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION cpu_to_le32(0xC0190056) 13728c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED cpu_to_le32(0xC0190057) 13738c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_RECORD_TOO_LONG cpu_to_le32(0xC0190058) 13748c2ecf20Sopenharmony_ci#define STATUS_NO_LINK_TRACKING_IN_TRANSACTION cpu_to_le32(0xC0190059) 13758c2ecf20Sopenharmony_ci#define STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION cpu_to_le32(0xC019005A) 13768c2ecf20Sopenharmony_ci#define STATUS_TRANSACTION_INTEGRITY_VIOLATED cpu_to_le32(0xC019005B) 13778c2ecf20Sopenharmony_ci#define STATUS_LOG_SECTOR_INVALID cpu_to_le32(0xC01A0001) 13788c2ecf20Sopenharmony_ci#define STATUS_LOG_SECTOR_PARITY_INVALID cpu_to_le32(0xC01A0002) 13798c2ecf20Sopenharmony_ci#define STATUS_LOG_SECTOR_REMAPPED cpu_to_le32(0xC01A0003) 13808c2ecf20Sopenharmony_ci#define STATUS_LOG_BLOCK_INCOMPLETE cpu_to_le32(0xC01A0004) 13818c2ecf20Sopenharmony_ci#define STATUS_LOG_INVALID_RANGE cpu_to_le32(0xC01A0005) 13828c2ecf20Sopenharmony_ci#define STATUS_LOG_BLOCKS_EXHAUSTED cpu_to_le32(0xC01A0006) 13838c2ecf20Sopenharmony_ci#define STATUS_LOG_READ_CONTEXT_INVALID cpu_to_le32(0xC01A0007) 13848c2ecf20Sopenharmony_ci#define STATUS_LOG_RESTART_INVALID cpu_to_le32(0xC01A0008) 13858c2ecf20Sopenharmony_ci#define STATUS_LOG_BLOCK_VERSION cpu_to_le32(0xC01A0009) 13868c2ecf20Sopenharmony_ci#define STATUS_LOG_BLOCK_INVALID cpu_to_le32(0xC01A000A) 13878c2ecf20Sopenharmony_ci#define STATUS_LOG_READ_MODE_INVALID cpu_to_le32(0xC01A000B) 13888c2ecf20Sopenharmony_ci#define STATUS_LOG_METADATA_CORRUPT cpu_to_le32(0xC01A000D) 13898c2ecf20Sopenharmony_ci#define STATUS_LOG_METADATA_INVALID cpu_to_le32(0xC01A000E) 13908c2ecf20Sopenharmony_ci#define STATUS_LOG_METADATA_INCONSISTENT cpu_to_le32(0xC01A000F) 13918c2ecf20Sopenharmony_ci#define STATUS_LOG_RESERVATION_INVALID cpu_to_le32(0xC01A0010) 13928c2ecf20Sopenharmony_ci#define STATUS_LOG_CANT_DELETE cpu_to_le32(0xC01A0011) 13938c2ecf20Sopenharmony_ci#define STATUS_LOG_CONTAINER_LIMIT_EXCEEDED cpu_to_le32(0xC01A0012) 13948c2ecf20Sopenharmony_ci#define STATUS_LOG_START_OF_LOG cpu_to_le32(0xC01A0013) 13958c2ecf20Sopenharmony_ci#define STATUS_LOG_POLICY_ALREADY_INSTALLED cpu_to_le32(0xC01A0014) 13968c2ecf20Sopenharmony_ci#define STATUS_LOG_POLICY_NOT_INSTALLED cpu_to_le32(0xC01A0015) 13978c2ecf20Sopenharmony_ci#define STATUS_LOG_POLICY_INVALID cpu_to_le32(0xC01A0016) 13988c2ecf20Sopenharmony_ci#define STATUS_LOG_POLICY_CONFLICT cpu_to_le32(0xC01A0017) 13998c2ecf20Sopenharmony_ci#define STATUS_LOG_PINNED_ARCHIVE_TAIL cpu_to_le32(0xC01A0018) 14008c2ecf20Sopenharmony_ci#define STATUS_LOG_RECORD_NONEXISTENT cpu_to_le32(0xC01A0019) 14018c2ecf20Sopenharmony_ci#define STATUS_LOG_RECORDS_RESERVED_INVALID cpu_to_le32(0xC01A001A) 14028c2ecf20Sopenharmony_ci#define STATUS_LOG_SPACE_RESERVED_INVALID cpu_to_le32(0xC01A001B) 14038c2ecf20Sopenharmony_ci#define STATUS_LOG_TAIL_INVALID cpu_to_le32(0xC01A001C) 14048c2ecf20Sopenharmony_ci#define STATUS_LOG_FULL cpu_to_le32(0xC01A001D) 14058c2ecf20Sopenharmony_ci#define STATUS_LOG_MULTIPLEXED cpu_to_le32(0xC01A001E) 14068c2ecf20Sopenharmony_ci#define STATUS_LOG_DEDICATED cpu_to_le32(0xC01A001F) 14078c2ecf20Sopenharmony_ci#define STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS cpu_to_le32(0xC01A0020) 14088c2ecf20Sopenharmony_ci#define STATUS_LOG_ARCHIVE_IN_PROGRESS cpu_to_le32(0xC01A0021) 14098c2ecf20Sopenharmony_ci#define STATUS_LOG_EPHEMERAL cpu_to_le32(0xC01A0022) 14108c2ecf20Sopenharmony_ci#define STATUS_LOG_NOT_ENOUGH_CONTAINERS cpu_to_le32(0xC01A0023) 14118c2ecf20Sopenharmony_ci#define STATUS_LOG_CLIENT_ALREADY_REGISTERED cpu_to_le32(0xC01A0024) 14128c2ecf20Sopenharmony_ci#define STATUS_LOG_CLIENT_NOT_REGISTERED cpu_to_le32(0xC01A0025) 14138c2ecf20Sopenharmony_ci#define STATUS_LOG_FULL_HANDLER_IN_PROGRESS cpu_to_le32(0xC01A0026) 14148c2ecf20Sopenharmony_ci#define STATUS_LOG_CONTAINER_READ_FAILED cpu_to_le32(0xC01A0027) 14158c2ecf20Sopenharmony_ci#define STATUS_LOG_CONTAINER_WRITE_FAILED cpu_to_le32(0xC01A0028) 14168c2ecf20Sopenharmony_ci#define STATUS_LOG_CONTAINER_OPEN_FAILED cpu_to_le32(0xC01A0029) 14178c2ecf20Sopenharmony_ci#define STATUS_LOG_CONTAINER_STATE_INVALID cpu_to_le32(0xC01A002A) 14188c2ecf20Sopenharmony_ci#define STATUS_LOG_STATE_INVALID cpu_to_le32(0xC01A002B) 14198c2ecf20Sopenharmony_ci#define STATUS_LOG_PINNED cpu_to_le32(0xC01A002C) 14208c2ecf20Sopenharmony_ci#define STATUS_LOG_METADATA_FLUSH_FAILED cpu_to_le32(0xC01A002D) 14218c2ecf20Sopenharmony_ci#define STATUS_LOG_INCONSISTENT_SECURITY cpu_to_le32(0xC01A002E) 14228c2ecf20Sopenharmony_ci#define STATUS_LOG_APPENDED_FLUSH_FAILED cpu_to_le32(0xC01A002F) 14238c2ecf20Sopenharmony_ci#define STATUS_LOG_PINNED_RESERVATION cpu_to_le32(0xC01A0030) 14248c2ecf20Sopenharmony_ci#define STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD cpu_to_le32(0xC01B00EA) 14258c2ecf20Sopenharmony_ci#define STATUS_FLT_NO_HANDLER_DEFINED cpu_to_le32(0xC01C0001) 14268c2ecf20Sopenharmony_ci#define STATUS_FLT_CONTEXT_ALREADY_DEFINED cpu_to_le32(0xC01C0002) 14278c2ecf20Sopenharmony_ci#define STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST cpu_to_le32(0xC01C0003) 14288c2ecf20Sopenharmony_ci#define STATUS_FLT_DISALLOW_FAST_IO cpu_to_le32(0xC01C0004) 14298c2ecf20Sopenharmony_ci#define STATUS_FLT_INVALID_NAME_REQUEST cpu_to_le32(0xC01C0005) 14308c2ecf20Sopenharmony_ci#define STATUS_FLT_NOT_SAFE_TO_POST_OPERATION cpu_to_le32(0xC01C0006) 14318c2ecf20Sopenharmony_ci#define STATUS_FLT_NOT_INITIALIZED cpu_to_le32(0xC01C0007) 14328c2ecf20Sopenharmony_ci#define STATUS_FLT_FILTER_NOT_READY cpu_to_le32(0xC01C0008) 14338c2ecf20Sopenharmony_ci#define STATUS_FLT_POST_OPERATION_CLEANUP cpu_to_le32(0xC01C0009) 14348c2ecf20Sopenharmony_ci#define STATUS_FLT_INTERNAL_ERROR cpu_to_le32(0xC01C000A) 14358c2ecf20Sopenharmony_ci#define STATUS_FLT_DELETING_OBJECT cpu_to_le32(0xC01C000B) 14368c2ecf20Sopenharmony_ci#define STATUS_FLT_MUST_BE_NONPAGED_POOL cpu_to_le32(0xC01C000C) 14378c2ecf20Sopenharmony_ci#define STATUS_FLT_DUPLICATE_ENTRY cpu_to_le32(0xC01C000D) 14388c2ecf20Sopenharmony_ci#define STATUS_FLT_CBDQ_DISABLED cpu_to_le32(0xC01C000E) 14398c2ecf20Sopenharmony_ci#define STATUS_FLT_DO_NOT_ATTACH cpu_to_le32(0xC01C000F) 14408c2ecf20Sopenharmony_ci#define STATUS_FLT_DO_NOT_DETACH cpu_to_le32(0xC01C0010) 14418c2ecf20Sopenharmony_ci#define STATUS_FLT_INSTANCE_ALTITUDE_COLLISION cpu_to_le32(0xC01C0011) 14428c2ecf20Sopenharmony_ci#define STATUS_FLT_INSTANCE_NAME_COLLISION cpu_to_le32(0xC01C0012) 14438c2ecf20Sopenharmony_ci#define STATUS_FLT_FILTER_NOT_FOUND cpu_to_le32(0xC01C0013) 14448c2ecf20Sopenharmony_ci#define STATUS_FLT_VOLUME_NOT_FOUND cpu_to_le32(0xC01C0014) 14458c2ecf20Sopenharmony_ci#define STATUS_FLT_INSTANCE_NOT_FOUND cpu_to_le32(0xC01C0015) 14468c2ecf20Sopenharmony_ci#define STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND cpu_to_le32(0xC01C0016) 14478c2ecf20Sopenharmony_ci#define STATUS_FLT_INVALID_CONTEXT_REGISTRATION cpu_to_le32(0xC01C0017) 14488c2ecf20Sopenharmony_ci#define STATUS_FLT_NAME_CACHE_MISS cpu_to_le32(0xC01C0018) 14498c2ecf20Sopenharmony_ci#define STATUS_FLT_NO_DEVICE_OBJECT cpu_to_le32(0xC01C0019) 14508c2ecf20Sopenharmony_ci#define STATUS_FLT_VOLUME_ALREADY_MOUNTED cpu_to_le32(0xC01C001A) 14518c2ecf20Sopenharmony_ci#define STATUS_FLT_ALREADY_ENLISTED cpu_to_le32(0xC01C001B) 14528c2ecf20Sopenharmony_ci#define STATUS_FLT_CONTEXT_ALREADY_LINKED cpu_to_le32(0xC01C001C) 14538c2ecf20Sopenharmony_ci#define STATUS_FLT_NO_WAITER_FOR_REPLY cpu_to_le32(0xC01C0020) 14548c2ecf20Sopenharmony_ci#define STATUS_MONITOR_NO_DESCRIPTOR cpu_to_le32(0xC01D0001) 14558c2ecf20Sopenharmony_ci#define STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT cpu_to_le32(0xC01D0002) 14568c2ecf20Sopenharmony_ci#define STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM cpu_to_le32(0xC01D0003) 14578c2ecf20Sopenharmony_ci#define STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK cpu_to_le32(0xC01D0004) 14588c2ecf20Sopenharmony_ci#define STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED cpu_to_le32(0xC01D0005) 14598c2ecf20Sopenharmony_ci#define STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK cpu_to_le32(0xC01D0006) 14608c2ecf20Sopenharmony_ci#define STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK cpu_to_le32(0xC01D0007) 14618c2ecf20Sopenharmony_ci#define STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA cpu_to_le32(0xC01D0008) 14628c2ecf20Sopenharmony_ci#define STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK cpu_to_le32(0xC01D0009) 14638c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER cpu_to_le32(0xC01E0000) 14648c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER cpu_to_le32(0xC01E0001) 14658c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER cpu_to_le32(0xC01E0002) 14668c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_WAS_RESET cpu_to_le32(0xC01E0003) 14678c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_DRIVER_MODEL cpu_to_le32(0xC01E0004) 14688c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PRESENT_MODE_CHANGED cpu_to_le32(0xC01E0005) 14698c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PRESENT_OCCLUDED cpu_to_le32(0xC01E0006) 14708c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PRESENT_DENIED cpu_to_le32(0xC01E0007) 14718c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CANNOTCOLORCONVERT cpu_to_le32(0xC01E0008) 14728c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_VIDEO_MEMORY cpu_to_le32(0xC01E0100) 14738c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CANT_LOCK_MEMORY cpu_to_le32(0xC01E0101) 14748c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_BUSY cpu_to_le32(0xC01E0102) 14758c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TOO_MANY_REFERENCES cpu_to_le32(0xC01E0103) 14768c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TRY_AGAIN_LATER cpu_to_le32(0xC01E0104) 14778c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TRY_AGAIN_NOW cpu_to_le32(0xC01E0105) 14788c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_INVALID cpu_to_le32(0xC01E0106) 14798c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE cpu_to_le32(0xC01E0107) 14808c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED cpu_to_le32(0xC01E0108) 14818c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION cpu_to_le32(0xC01E0109) 14828c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE cpu_to_le32(0xC01E0110) 14838c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION cpu_to_le32(0xC01E0111) 14848c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_CLOSED cpu_to_le32(0xC01E0112) 14858c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE cpu_to_le32(0xC01E0113) 14868c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE cpu_to_le32(0xC01E0114) 14878c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE cpu_to_le32(0xC01E0115) 14888c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST cpu_to_le32(0xC01E0116) 14898c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE cpu_to_le32(0xC01E0200) 14908c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY cpu_to_le32(0xC01E0300) 14918c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED cpu_to_le32(0xC01E0301) 14928c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED cpu_to_le32(0xC01E0302) 14938c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN cpu_to_le32(0xC01E0303) 14948c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE cpu_to_le32(0xC01E0304) 14958c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET cpu_to_le32(0xC01E0305) 14968c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED cpu_to_le32(0xC01E0306) 14978c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET cpu_to_le32(0xC01E0308) 14988c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET cpu_to_le32(0xC01E0309) 14998c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_FREQUENCY cpu_to_le32(0xC01E030A) 15008c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ACTIVE_REGION cpu_to_le32(0xC01E030B) 15018c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_TOTAL_REGION cpu_to_le32(0xC01E030C) 15028c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE cpu_to_le32(0xC01E0310) 15038c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE cpu_to_le32(0xC01E0311) 15048c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET cpu_to_le32(0xC01E0312) 15058c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY cpu_to_le32(0xC01E0313) 15068c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET cpu_to_le32(0xC01E0314) 15078c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET cpu_to_le32(0xC01E0315) 15088c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET cpu_to_le32(0xC01E0316) 15098c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET cpu_to_le32(0xC01E0317) 15108c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TARGET_ALREADY_IN_SET cpu_to_le32(0xC01E0318) 15118c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH cpu_to_le32(0xC01E0319) 15128c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY cpu_to_le32(0xC01E031A) 15138c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET cpu_to_le32(0xC01E031B) 15148c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE cpu_to_le32(0xC01E031C) 15158c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET cpu_to_le32(0xC01E031D) 15168c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET cpu_to_le32(0xC01E031F) 15178c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_STALE_MODESET cpu_to_le32(0xC01E0320) 15188c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET cpu_to_le32(0xC01E0321) 15198c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE cpu_to_le32(0xC01E0322) 15208c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN cpu_to_le32(0xC01E0323) 15218c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E0324) 15228c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION cpu_to_le32(0xC01E0325) 15238c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES cpu_to_le32(0xC01E0326) 15248c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY cpu_to_le32(0xC01E0327) 15258c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE cpu_to_le32(0xC01E0328) 15268c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET cpu_to_le32(0xC01E0329) 15278c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET cpu_to_le32(0xC01E032A) 15288c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR cpu_to_le32(0xC01E032B) 15298c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET cpu_to_le32(0xC01E032C) 15308c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET cpu_to_le32(0xC01E032D) 15318c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E032E) 15328c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE cpu_to_le32(0xC01E032F) 15338c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_RESOURCES_NOT_RELATED cpu_to_le32(0xC01E0330) 15348c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E0331) 15358c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E0332) 15368c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET cpu_to_le32(0xC01E0333) 15378c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER cpu_to_le32(0xC01E0334) 15388c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_VIDPNMGR cpu_to_le32(0xC01E0335) 15398c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_ACTIVE_VIDPN cpu_to_le32(0xC01E0336) 15408c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY cpu_to_le32(0xC01E0337) 15418c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MONITOR_NOT_CONNECTED cpu_to_le32(0xC01E0338) 15428c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY cpu_to_le32(0xC01E0339) 15438c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE cpu_to_le32(0xC01E033A) 15448c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE cpu_to_le32(0xC01E033B) 15458c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_STRIDE cpu_to_le32(0xC01E033C) 15468c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PIXELFORMAT cpu_to_le32(0xC01E033D) 15478c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_COLORBASIS cpu_to_le32(0xC01E033E) 15488c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE cpu_to_le32(0xC01E033F) 15498c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY cpu_to_le32(0xC01E0340) 15508c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT cpu_to_le32(0xC01E0341) 15518c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE cpu_to_le32(0xC01E0342) 15528c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN cpu_to_le32(0xC01E0343) 15538c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL cpu_to_le32(0xC01E0344) 15548c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION cpu_to_le32(0xC01E0345) 15558c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED cpu_to_le32(0xC01E0346) 15568c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_GAMMA_RAMP cpu_to_le32(0xC01E0347) 15578c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED cpu_to_le32(0xC01E0348) 15588c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED cpu_to_le32(0xC01E0349) 15598c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MODE_NOT_IN_MODESET cpu_to_le32(0xC01E034A) 15608c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON cpu_to_le32(0xC01E034D) 15618c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE cpu_to_le32(0xC01E034E) 15628c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE cpu_to_le32(0xC01E034F) 15638c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS cpu_to_le32(0xC01E0350) 15648c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING cpu_to_le32(0xC01E0352) 15658c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED cpu_to_le32(0xC01E0353) 15668c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS cpu_to_le32(0xC01E0354) 15678c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT cpu_to_le32(0xC01E0355) 15688c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM cpu_to_le32(0xC01E0356) 15698c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN cpu_to_le32(0xC01E0357) 15708c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT cpu_to_le32(0xC01E0358) 15718c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED cpu_to_le32(0xC01E0359) 15728c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION cpu_to_le32(0xC01E035A) 15738c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_CLIENT_TYPE cpu_to_le32(0xC01E035B) 15748c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET cpu_to_le32(0xC01E035C) 15758c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED cpu_to_le32(0xC01E0400) 15768c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED cpu_to_le32(0xC01E0401) 15778c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER cpu_to_le32(0xC01E0430) 15788c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED cpu_to_le32(0xC01E0431) 15798c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED cpu_to_le32(0xC01E0432) 15808c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY cpu_to_le32(0xC01E0433) 15818c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED cpu_to_le32(0xC01E0434) 15828c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON cpu_to_le32(0xC01E0435) 15838c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE cpu_to_le32(0xC01E0436) 15848c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER cpu_to_le32(0xC01E0438) 15858c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED cpu_to_le32(0xC01E043B) 15868c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS cpu_to_le32(0xC01E051C) 15878c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST cpu_to_le32(0xC01E051D) 15888c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR cpu_to_le32(0xC01E051E) 15898c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS cpu_to_le32(0xC01E051F) 15908c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED cpu_to_le32(0xC01E0520) 15918c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST cpu_to_le32(0xC01E0521) 15928c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_NOT_SUPPORTED cpu_to_le32(0xC01E0500) 15938c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_COPP_NOT_SUPPORTED cpu_to_le32(0xC01E0501) 15948c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_UAB_NOT_SUPPORTED cpu_to_le32(0xC01E0502) 15958c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS cpu_to_le32(0xC01E0503) 15968c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL cpu_to_le32(0xC01E0504) 15978c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST cpu_to_le32(0xC01E0505) 15988c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME cpu_to_le32(0xC01E0506) 15998c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP cpu_to_le32(0xC01E0507) 16008c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED cpu_to_le32(0xC01E0508) 16018c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_POINTER cpu_to_le32(0xC01E050A) 16028c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INTERNAL_ERROR cpu_to_le32(0xC01E050B) 16038c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_HANDLE cpu_to_le32(0xC01E050C) 16048c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE cpu_to_le32(0xC01E050D) 16058c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH cpu_to_le32(0xC01E050E) 16068c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED cpu_to_le32(0xC01E050F) 16078c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED cpu_to_le32(0xC01E0510) 16088c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PVP_HFS_FAILED cpu_to_le32(0xC01E0511) 16098c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_SRM cpu_to_le32(0xC01E0512) 16108c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP cpu_to_le32(0xC01E0513) 16118c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP cpu_to_le32(0xC01E0514) 16128c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA cpu_to_le32(0xC01E0515) 16138c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET cpu_to_le32(0xC01E0516) 16148c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH cpu_to_le32(0xC01E0517) 16158c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE cpu_to_le32(0xC01E0518) 16168c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS cpu_to_le32(0xC01E051A) 16178c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS cpu_to_le32(0xC01E051B) 16188c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_I2C_NOT_SUPPORTED cpu_to_le32(0xC01E0580) 16198c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST cpu_to_le32(0xC01E0581) 16208c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA cpu_to_le32(0xC01E0582) 16218c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA cpu_to_le32(0xC01E0583) 16228c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED cpu_to_le32(0xC01E0584) 16238c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_DATA cpu_to_le32(0xC01E0585) 16248c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE cpu_to_le32(0xC01E0586) 16258c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING cpu_to_le32(0xC01E0587) 16268c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MCA_INTERNAL_ERROR cpu_to_le32(0xC01E0588) 16278c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND cpu_to_le32(0xC01E0589) 16288c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH cpu_to_le32(0xC01E058A) 16298c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM cpu_to_le32(0xC01E058B) 16308c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE cpu_to_le32(0xC01E058C) 16318c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS cpu_to_le32(0xC01E058D) 16328c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED cpu_to_le32(0xC01E05E0) 16338c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME cpu_to_le32(0xC01E05E1) 16348c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP cpu_to_le32(0xC01E05E2) 16358c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED cpu_to_le32(0xC01E05E3) 16368c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_POINTER cpu_to_le32(0xC01E05E4) 16378c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE cpu_to_le32(0xC01E05E5) 16388c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL cpu_to_le32(0xC01E05E6) 16398c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_INTERNAL_ERROR cpu_to_le32(0xC01E05E7) 16408c2ecf20Sopenharmony_ci#define STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS cpu_to_le32(0xC01E05E8) 16418c2ecf20Sopenharmony_ci#define STATUS_FVE_LOCKED_VOLUME cpu_to_le32(0xC0210000) 16428c2ecf20Sopenharmony_ci#define STATUS_FVE_NOT_ENCRYPTED cpu_to_le32(0xC0210001) 16438c2ecf20Sopenharmony_ci#define STATUS_FVE_BAD_INFORMATION cpu_to_le32(0xC0210002) 16448c2ecf20Sopenharmony_ci#define STATUS_FVE_TOO_SMALL cpu_to_le32(0xC0210003) 16458c2ecf20Sopenharmony_ci#define STATUS_FVE_FAILED_WRONG_FS cpu_to_le32(0xC0210004) 16468c2ecf20Sopenharmony_ci#define STATUS_FVE_FAILED_BAD_FS cpu_to_le32(0xC0210005) 16478c2ecf20Sopenharmony_ci#define STATUS_FVE_FS_NOT_EXTENDED cpu_to_le32(0xC0210006) 16488c2ecf20Sopenharmony_ci#define STATUS_FVE_FS_MOUNTED cpu_to_le32(0xC0210007) 16498c2ecf20Sopenharmony_ci#define STATUS_FVE_NO_LICENSE cpu_to_le32(0xC0210008) 16508c2ecf20Sopenharmony_ci#define STATUS_FVE_ACTION_NOT_ALLOWED cpu_to_le32(0xC0210009) 16518c2ecf20Sopenharmony_ci#define STATUS_FVE_BAD_DATA cpu_to_le32(0xC021000A) 16528c2ecf20Sopenharmony_ci#define STATUS_FVE_VOLUME_NOT_BOUND cpu_to_le32(0xC021000B) 16538c2ecf20Sopenharmony_ci#define STATUS_FVE_NOT_DATA_VOLUME cpu_to_le32(0xC021000C) 16548c2ecf20Sopenharmony_ci#define STATUS_FVE_CONV_READ_ERROR cpu_to_le32(0xC021000D) 16558c2ecf20Sopenharmony_ci#define STATUS_FVE_CONV_WRITE_ERROR cpu_to_le32(0xC021000E) 16568c2ecf20Sopenharmony_ci#define STATUS_FVE_OVERLAPPED_UPDATE cpu_to_le32(0xC021000F) 16578c2ecf20Sopenharmony_ci#define STATUS_FVE_FAILED_SECTOR_SIZE cpu_to_le32(0xC0210010) 16588c2ecf20Sopenharmony_ci#define STATUS_FVE_FAILED_AUTHENTICATION cpu_to_le32(0xC0210011) 16598c2ecf20Sopenharmony_ci#define STATUS_FVE_NOT_OS_VOLUME cpu_to_le32(0xC0210012) 16608c2ecf20Sopenharmony_ci#define STATUS_FVE_KEYFILE_NOT_FOUND cpu_to_le32(0xC0210013) 16618c2ecf20Sopenharmony_ci#define STATUS_FVE_KEYFILE_INVALID cpu_to_le32(0xC0210014) 16628c2ecf20Sopenharmony_ci#define STATUS_FVE_KEYFILE_NO_VMK cpu_to_le32(0xC0210015) 16638c2ecf20Sopenharmony_ci#define STATUS_FVE_TPM_DISABLED cpu_to_le32(0xC0210016) 16648c2ecf20Sopenharmony_ci#define STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO cpu_to_le32(0xC0210017) 16658c2ecf20Sopenharmony_ci#define STATUS_FVE_TPM_INVALID_PCR cpu_to_le32(0xC0210018) 16668c2ecf20Sopenharmony_ci#define STATUS_FVE_TPM_NO_VMK cpu_to_le32(0xC0210019) 16678c2ecf20Sopenharmony_ci#define STATUS_FVE_PIN_INVALID cpu_to_le32(0xC021001A) 16688c2ecf20Sopenharmony_ci#define STATUS_FVE_AUTH_INVALID_APPLICATION cpu_to_le32(0xC021001B) 16698c2ecf20Sopenharmony_ci#define STATUS_FVE_AUTH_INVALID_CONFIG cpu_to_le32(0xC021001C) 16708c2ecf20Sopenharmony_ci#define STATUS_FVE_DEBUGGER_ENABLED cpu_to_le32(0xC021001D) 16718c2ecf20Sopenharmony_ci#define STATUS_FVE_DRY_RUN_FAILED cpu_to_le32(0xC021001E) 16728c2ecf20Sopenharmony_ci#define STATUS_FVE_BAD_METADATA_POINTER cpu_to_le32(0xC021001F) 16738c2ecf20Sopenharmony_ci#define STATUS_FVE_OLD_METADATA_COPY cpu_to_le32(0xC0210020) 16748c2ecf20Sopenharmony_ci#define STATUS_FVE_REBOOT_REQUIRED cpu_to_le32(0xC0210021) 16758c2ecf20Sopenharmony_ci#define STATUS_FVE_RAW_ACCESS cpu_to_le32(0xC0210022) 16768c2ecf20Sopenharmony_ci#define STATUS_FVE_RAW_BLOCKED cpu_to_le32(0xC0210023) 16778c2ecf20Sopenharmony_ci#define STATUS_FWP_CALLOUT_NOT_FOUND cpu_to_le32(0xC0220001) 16788c2ecf20Sopenharmony_ci#define STATUS_FWP_CONDITION_NOT_FOUND cpu_to_le32(0xC0220002) 16798c2ecf20Sopenharmony_ci#define STATUS_FWP_FILTER_NOT_FOUND cpu_to_le32(0xC0220003) 16808c2ecf20Sopenharmony_ci#define STATUS_FWP_LAYER_NOT_FOUND cpu_to_le32(0xC0220004) 16818c2ecf20Sopenharmony_ci#define STATUS_FWP_PROVIDER_NOT_FOUND cpu_to_le32(0xC0220005) 16828c2ecf20Sopenharmony_ci#define STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND cpu_to_le32(0xC0220006) 16838c2ecf20Sopenharmony_ci#define STATUS_FWP_SUBLAYER_NOT_FOUND cpu_to_le32(0xC0220007) 16848c2ecf20Sopenharmony_ci#define STATUS_FWP_NOT_FOUND cpu_to_le32(0xC0220008) 16858c2ecf20Sopenharmony_ci#define STATUS_FWP_ALREADY_EXISTS cpu_to_le32(0xC0220009) 16868c2ecf20Sopenharmony_ci#define STATUS_FWP_IN_USE cpu_to_le32(0xC022000A) 16878c2ecf20Sopenharmony_ci#define STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS cpu_to_le32(0xC022000B) 16888c2ecf20Sopenharmony_ci#define STATUS_FWP_WRONG_SESSION cpu_to_le32(0xC022000C) 16898c2ecf20Sopenharmony_ci#define STATUS_FWP_NO_TXN_IN_PROGRESS cpu_to_le32(0xC022000D) 16908c2ecf20Sopenharmony_ci#define STATUS_FWP_TXN_IN_PROGRESS cpu_to_le32(0xC022000E) 16918c2ecf20Sopenharmony_ci#define STATUS_FWP_TXN_ABORTED cpu_to_le32(0xC022000F) 16928c2ecf20Sopenharmony_ci#define STATUS_FWP_SESSION_ABORTED cpu_to_le32(0xC0220010) 16938c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_TXN cpu_to_le32(0xC0220011) 16948c2ecf20Sopenharmony_ci#define STATUS_FWP_TIMEOUT cpu_to_le32(0xC0220012) 16958c2ecf20Sopenharmony_ci#define STATUS_FWP_NET_EVENTS_DISABLED cpu_to_le32(0xC0220013) 16968c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_LAYER cpu_to_le32(0xC0220014) 16978c2ecf20Sopenharmony_ci#define STATUS_FWP_KM_CLIENTS_ONLY cpu_to_le32(0xC0220015) 16988c2ecf20Sopenharmony_ci#define STATUS_FWP_LIFETIME_MISMATCH cpu_to_le32(0xC0220016) 16998c2ecf20Sopenharmony_ci#define STATUS_FWP_BUILTIN_OBJECT cpu_to_le32(0xC0220017) 17008c2ecf20Sopenharmony_ci#define STATUS_FWP_TOO_MANY_BOOTTIME_FILTERS cpu_to_le32(0xC0220018) 17018c2ecf20Sopenharmony_ci#define STATUS_FWP_TOO_MANY_CALLOUTS cpu_to_le32(0xC0220018) 17028c2ecf20Sopenharmony_ci#define STATUS_FWP_NOTIFICATION_DROPPED cpu_to_le32(0xC0220019) 17038c2ecf20Sopenharmony_ci#define STATUS_FWP_TRAFFIC_MISMATCH cpu_to_le32(0xC022001A) 17048c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_SA_STATE cpu_to_le32(0xC022001B) 17058c2ecf20Sopenharmony_ci#define STATUS_FWP_NULL_POINTER cpu_to_le32(0xC022001C) 17068c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_ENUMERATOR cpu_to_le32(0xC022001D) 17078c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_FLAGS cpu_to_le32(0xC022001E) 17088c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_NET_MASK cpu_to_le32(0xC022001F) 17098c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_RANGE cpu_to_le32(0xC0220020) 17108c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_INTERVAL cpu_to_le32(0xC0220021) 17118c2ecf20Sopenharmony_ci#define STATUS_FWP_ZERO_LENGTH_ARRAY cpu_to_le32(0xC0220022) 17128c2ecf20Sopenharmony_ci#define STATUS_FWP_NULL_DISPLAY_NAME cpu_to_le32(0xC0220023) 17138c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_ACTION_TYPE cpu_to_le32(0xC0220024) 17148c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_WEIGHT cpu_to_le32(0xC0220025) 17158c2ecf20Sopenharmony_ci#define STATUS_FWP_MATCH_TYPE_MISMATCH cpu_to_le32(0xC0220026) 17168c2ecf20Sopenharmony_ci#define STATUS_FWP_TYPE_MISMATCH cpu_to_le32(0xC0220027) 17178c2ecf20Sopenharmony_ci#define STATUS_FWP_OUT_OF_BOUNDS cpu_to_le32(0xC0220028) 17188c2ecf20Sopenharmony_ci#define STATUS_FWP_RESERVED cpu_to_le32(0xC0220029) 17198c2ecf20Sopenharmony_ci#define STATUS_FWP_DUPLICATE_CONDITION cpu_to_le32(0xC022002A) 17208c2ecf20Sopenharmony_ci#define STATUS_FWP_DUPLICATE_KEYMOD cpu_to_le32(0xC022002B) 17218c2ecf20Sopenharmony_ci#define STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER cpu_to_le32(0xC022002C) 17228c2ecf20Sopenharmony_ci#define STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER cpu_to_le32(0xC022002D) 17238c2ecf20Sopenharmony_ci#define STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER cpu_to_le32(0xC022002E) 17248c2ecf20Sopenharmony_ci#define STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT cpu_to_le32(0xC022002F) 17258c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_AUTH_METHOD cpu_to_le32(0xC0220030) 17268c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_DH_GROUP cpu_to_le32(0xC0220031) 17278c2ecf20Sopenharmony_ci#define STATUS_FWP_EM_NOT_SUPPORTED cpu_to_le32(0xC0220032) 17288c2ecf20Sopenharmony_ci#define STATUS_FWP_NEVER_MATCH cpu_to_le32(0xC0220033) 17298c2ecf20Sopenharmony_ci#define STATUS_FWP_PROVIDER_CONTEXT_MISMATCH cpu_to_le32(0xC0220034) 17308c2ecf20Sopenharmony_ci#define STATUS_FWP_INVALID_PARAMETER cpu_to_le32(0xC0220035) 17318c2ecf20Sopenharmony_ci#define STATUS_FWP_TOO_MANY_SUBLAYERS cpu_to_le32(0xC0220036) 17328c2ecf20Sopenharmony_ci#define STATUS_FWP_CALLOUT_NOTIFICATION_FAILED cpu_to_le32(0xC0220037) 17338c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_AUTH_CONFIG cpu_to_le32(0xC0220038) 17348c2ecf20Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_CIPHER_CONFIG cpu_to_le32(0xC0220039) 17358c2ecf20Sopenharmony_ci#define STATUS_FWP_TCPIP_NOT_READY cpu_to_le32(0xC0220100) 17368c2ecf20Sopenharmony_ci#define STATUS_FWP_INJECT_HANDLE_CLOSING cpu_to_le32(0xC0220101) 17378c2ecf20Sopenharmony_ci#define STATUS_FWP_INJECT_HANDLE_STALE cpu_to_le32(0xC0220102) 17388c2ecf20Sopenharmony_ci#define STATUS_FWP_CANNOT_PEND cpu_to_le32(0xC0220103) 17398c2ecf20Sopenharmony_ci#define STATUS_NDIS_CLOSING cpu_to_le32(0xC0230002) 17408c2ecf20Sopenharmony_ci#define STATUS_NDIS_BAD_VERSION cpu_to_le32(0xC0230004) 17418c2ecf20Sopenharmony_ci#define STATUS_NDIS_BAD_CHARACTERISTICS cpu_to_le32(0xC0230005) 17428c2ecf20Sopenharmony_ci#define STATUS_NDIS_ADAPTER_NOT_FOUND cpu_to_le32(0xC0230006) 17438c2ecf20Sopenharmony_ci#define STATUS_NDIS_OPEN_FAILED cpu_to_le32(0xC0230007) 17448c2ecf20Sopenharmony_ci#define STATUS_NDIS_DEVICE_FAILED cpu_to_le32(0xC0230008) 17458c2ecf20Sopenharmony_ci#define STATUS_NDIS_MULTICAST_FULL cpu_to_le32(0xC0230009) 17468c2ecf20Sopenharmony_ci#define STATUS_NDIS_MULTICAST_EXISTS cpu_to_le32(0xC023000A) 17478c2ecf20Sopenharmony_ci#define STATUS_NDIS_MULTICAST_NOT_FOUND cpu_to_le32(0xC023000B) 17488c2ecf20Sopenharmony_ci#define STATUS_NDIS_REQUEST_ABORTED cpu_to_le32(0xC023000C) 17498c2ecf20Sopenharmony_ci#define STATUS_NDIS_RESET_IN_PROGRESS cpu_to_le32(0xC023000D) 17508c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_PACKET cpu_to_le32(0xC023000F) 17518c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_DEVICE_REQUEST cpu_to_le32(0xC0230010) 17528c2ecf20Sopenharmony_ci#define STATUS_NDIS_ADAPTER_NOT_READY cpu_to_le32(0xC0230011) 17538c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_LENGTH cpu_to_le32(0xC0230014) 17548c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_DATA cpu_to_le32(0xC0230015) 17558c2ecf20Sopenharmony_ci#define STATUS_NDIS_BUFFER_TOO_SHORT cpu_to_le32(0xC0230016) 17568c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_OID cpu_to_le32(0xC0230017) 17578c2ecf20Sopenharmony_ci#define STATUS_NDIS_ADAPTER_REMOVED cpu_to_le32(0xC0230018) 17588c2ecf20Sopenharmony_ci#define STATUS_NDIS_UNSUPPORTED_MEDIA cpu_to_le32(0xC0230019) 17598c2ecf20Sopenharmony_ci#define STATUS_NDIS_GROUP_ADDRESS_IN_USE cpu_to_le32(0xC023001A) 17608c2ecf20Sopenharmony_ci#define STATUS_NDIS_FILE_NOT_FOUND cpu_to_le32(0xC023001B) 17618c2ecf20Sopenharmony_ci#define STATUS_NDIS_ERROR_READING_FILE cpu_to_le32(0xC023001C) 17628c2ecf20Sopenharmony_ci#define STATUS_NDIS_ALREADY_MAPPED cpu_to_le32(0xC023001D) 17638c2ecf20Sopenharmony_ci#define STATUS_NDIS_RESOURCE_CONFLICT cpu_to_le32(0xC023001E) 17648c2ecf20Sopenharmony_ci#define STATUS_NDIS_MEDIA_DISCONNECTED cpu_to_le32(0xC023001F) 17658c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_ADDRESS cpu_to_le32(0xC0230022) 17668c2ecf20Sopenharmony_ci#define STATUS_NDIS_PAUSED cpu_to_le32(0xC023002A) 17678c2ecf20Sopenharmony_ci#define STATUS_NDIS_INTERFACE_NOT_FOUND cpu_to_le32(0xC023002B) 17688c2ecf20Sopenharmony_ci#define STATUS_NDIS_UNSUPPORTED_REVISION cpu_to_le32(0xC023002C) 17698c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_PORT cpu_to_le32(0xC023002D) 17708c2ecf20Sopenharmony_ci#define STATUS_NDIS_INVALID_PORT_STATE cpu_to_le32(0xC023002E) 17718c2ecf20Sopenharmony_ci#define STATUS_NDIS_LOW_POWER_STATE cpu_to_le32(0xC023002F) 17728c2ecf20Sopenharmony_ci#define STATUS_NDIS_NOT_SUPPORTED cpu_to_le32(0xC02300BB) 17738c2ecf20Sopenharmony_ci#define STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED cpu_to_le32(0xC0232000) 17748c2ecf20Sopenharmony_ci#define STATUS_NDIS_DOT11_MEDIA_IN_USE cpu_to_le32(0xC0232001) 17758c2ecf20Sopenharmony_ci#define STATUS_NDIS_DOT11_POWER_STATE_INVALID cpu_to_le32(0xC0232002) 17768c2ecf20Sopenharmony_ci#define STATUS_IPSEC_BAD_SPI cpu_to_le32(0xC0360001) 17778c2ecf20Sopenharmony_ci#define STATUS_IPSEC_SA_LIFETIME_EXPIRED cpu_to_le32(0xC0360002) 17788c2ecf20Sopenharmony_ci#define STATUS_IPSEC_WRONG_SA cpu_to_le32(0xC0360003) 17798c2ecf20Sopenharmony_ci#define STATUS_IPSEC_REPLAY_CHECK_FAILED cpu_to_le32(0xC0360004) 17808c2ecf20Sopenharmony_ci#define STATUS_IPSEC_INVALID_PACKET cpu_to_le32(0xC0360005) 17818c2ecf20Sopenharmony_ci#define STATUS_IPSEC_INTEGRITY_CHECK_FAILED cpu_to_le32(0xC0360006) 17828c2ecf20Sopenharmony_ci#define STATUS_IPSEC_CLEAR_TEXT_DROP cpu_to_le32(0xC0360007) 1783