162306a36Sopenharmony_ci/* SPDX-License-Identifier: LGPL-2.1 */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci *
462306a36Sopenharmony_ci *   SMB2 Status code (network error) definitions
562306a36Sopenharmony_ci *   Definitions are from MS-ERREF
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci *   Copyright (c) International Business Machines  Corp., 2009,2011
862306a36Sopenharmony_ci *   Author(s): Steve French (sfrench@us.ibm.com)
962306a36Sopenharmony_ci *
1062306a36Sopenharmony_ci */
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci/*
1362306a36Sopenharmony_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
1462306a36Sopenharmony_ci *  SEV C N <-------Facility--------> <------Error Status Code------>
1562306a36Sopenharmony_ci *
1662306a36Sopenharmony_ci *  C is set if "customer defined" error, N bit is reserved and MBZ
1762306a36Sopenharmony_ci */
1862306a36Sopenharmony_ci
1962306a36Sopenharmony_ci#define STATUS_SEVERITY_SUCCESS __constant_cpu_to_le32(0x0000)
2062306a36Sopenharmony_ci#define STATUS_SEVERITY_INFORMATIONAL cpu_to_le32(0x0001)
2162306a36Sopenharmony_ci#define STATUS_SEVERITY_WARNING cpu_to_le32(0x0002)
2262306a36Sopenharmony_ci#define STATUS_SEVERITY_ERROR cpu_to_le32(0x0003)
2362306a36Sopenharmony_ci
2462306a36Sopenharmony_cistruct ntstatus {
2562306a36Sopenharmony_ci	/* Facility is the high 12 bits of the following field */
2662306a36Sopenharmony_ci	__le32 Facility; /* low 2 bits Severity, next is Customer, then rsrvd */
2762306a36Sopenharmony_ci	__le32 Code;
2862306a36Sopenharmony_ci};
2962306a36Sopenharmony_ci
3062306a36Sopenharmony_ci#define STATUS_SUCCESS cpu_to_le32(0x00000000)
3162306a36Sopenharmony_ci#define STATUS_WAIT_0 cpu_to_le32(0x00000000)
3262306a36Sopenharmony_ci#define STATUS_WAIT_1 cpu_to_le32(0x00000001)
3362306a36Sopenharmony_ci#define STATUS_WAIT_2 cpu_to_le32(0x00000002)
3462306a36Sopenharmony_ci#define STATUS_WAIT_3 cpu_to_le32(0x00000003)
3562306a36Sopenharmony_ci#define STATUS_WAIT_63 cpu_to_le32(0x0000003F)
3662306a36Sopenharmony_ci#define STATUS_ABANDONED cpu_to_le32(0x00000080)
3762306a36Sopenharmony_ci#define STATUS_ABANDONED_WAIT_0 cpu_to_le32(0x00000080)
3862306a36Sopenharmony_ci#define STATUS_ABANDONED_WAIT_63 cpu_to_le32(0x000000BF)
3962306a36Sopenharmony_ci#define STATUS_USER_APC cpu_to_le32(0x000000C0)
4062306a36Sopenharmony_ci#define STATUS_KERNEL_APC cpu_to_le32(0x00000100)
4162306a36Sopenharmony_ci#define STATUS_ALERTED cpu_to_le32(0x00000101)
4262306a36Sopenharmony_ci#define STATUS_TIMEOUT cpu_to_le32(0x00000102)
4362306a36Sopenharmony_ci#define STATUS_PENDING cpu_to_le32(0x00000103)
4462306a36Sopenharmony_ci#define STATUS_REPARSE cpu_to_le32(0x00000104)
4562306a36Sopenharmony_ci#define STATUS_MORE_ENTRIES cpu_to_le32(0x00000105)
4662306a36Sopenharmony_ci#define STATUS_NOT_ALL_ASSIGNED cpu_to_le32(0x00000106)
4762306a36Sopenharmony_ci#define STATUS_SOME_NOT_MAPPED cpu_to_le32(0x00000107)
4862306a36Sopenharmony_ci#define STATUS_OPLOCK_BREAK_IN_PROGRESS cpu_to_le32(0x00000108)
4962306a36Sopenharmony_ci#define STATUS_VOLUME_MOUNTED cpu_to_le32(0x00000109)
5062306a36Sopenharmony_ci#define STATUS_RXACT_COMMITTED cpu_to_le32(0x0000010A)
5162306a36Sopenharmony_ci#define STATUS_NOTIFY_CLEANUP cpu_to_le32(0x0000010B)
5262306a36Sopenharmony_ci#define STATUS_NOTIFY_ENUM_DIR cpu_to_le32(0x0000010C)
5362306a36Sopenharmony_ci#define STATUS_NO_QUOTAS_FOR_ACCOUNT cpu_to_le32(0x0000010D)
5462306a36Sopenharmony_ci#define STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED cpu_to_le32(0x0000010E)
5562306a36Sopenharmony_ci#define STATUS_PAGE_FAULT_TRANSITION cpu_to_le32(0x00000110)
5662306a36Sopenharmony_ci#define STATUS_PAGE_FAULT_DEMAND_ZERO cpu_to_le32(0x00000111)
5762306a36Sopenharmony_ci#define STATUS_PAGE_FAULT_COPY_ON_WRITE cpu_to_le32(0x00000112)
5862306a36Sopenharmony_ci#define STATUS_PAGE_FAULT_GUARD_PAGE cpu_to_le32(0x00000113)
5962306a36Sopenharmony_ci#define STATUS_PAGE_FAULT_PAGING_FILE cpu_to_le32(0x00000114)
6062306a36Sopenharmony_ci#define STATUS_CACHE_PAGE_LOCKED cpu_to_le32(0x00000115)
6162306a36Sopenharmony_ci#define STATUS_CRASH_DUMP cpu_to_le32(0x00000116)
6262306a36Sopenharmony_ci#define STATUS_BUFFER_ALL_ZEROS cpu_to_le32(0x00000117)
6362306a36Sopenharmony_ci#define STATUS_REPARSE_OBJECT cpu_to_le32(0x00000118)
6462306a36Sopenharmony_ci#define STATUS_RESOURCE_REQUIREMENTS_CHANGED cpu_to_le32(0x00000119)
6562306a36Sopenharmony_ci#define STATUS_TRANSLATION_COMPLETE cpu_to_le32(0x00000120)
6662306a36Sopenharmony_ci#define STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY cpu_to_le32(0x00000121)
6762306a36Sopenharmony_ci#define STATUS_NOTHING_TO_TERMINATE cpu_to_le32(0x00000122)
6862306a36Sopenharmony_ci#define STATUS_PROCESS_NOT_IN_JOB cpu_to_le32(0x00000123)
6962306a36Sopenharmony_ci#define STATUS_PROCESS_IN_JOB cpu_to_le32(0x00000124)
7062306a36Sopenharmony_ci#define STATUS_VOLSNAP_HIBERNATE_READY cpu_to_le32(0x00000125)
7162306a36Sopenharmony_ci#define STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY cpu_to_le32(0x00000126)
7262306a36Sopenharmony_ci#define STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED cpu_to_le32(0x00000127)
7362306a36Sopenharmony_ci#define STATUS_INTERRUPT_STILL_CONNECTED cpu_to_le32(0x00000128)
7462306a36Sopenharmony_ci#define STATUS_PROCESS_CLONED cpu_to_le32(0x00000129)
7562306a36Sopenharmony_ci#define STATUS_FILE_LOCKED_WITH_ONLY_READERS cpu_to_le32(0x0000012A)
7662306a36Sopenharmony_ci#define STATUS_FILE_LOCKED_WITH_WRITERS cpu_to_le32(0x0000012B)
7762306a36Sopenharmony_ci#define STATUS_RESOURCEMANAGER_READ_ONLY cpu_to_le32(0x00000202)
7862306a36Sopenharmony_ci#define STATUS_WAIT_FOR_OPLOCK cpu_to_le32(0x00000367)
7962306a36Sopenharmony_ci#define DBG_EXCEPTION_HANDLED cpu_to_le32(0x00010001)
8062306a36Sopenharmony_ci#define DBG_CONTINUE cpu_to_le32(0x00010002)
8162306a36Sopenharmony_ci#define STATUS_FLT_IO_COMPLETE cpu_to_le32(0x001C0001)
8262306a36Sopenharmony_ci#define STATUS_OBJECT_NAME_EXISTS cpu_to_le32(0x40000000)
8362306a36Sopenharmony_ci#define STATUS_THREAD_WAS_SUSPENDED cpu_to_le32(0x40000001)
8462306a36Sopenharmony_ci#define STATUS_WORKING_SET_LIMIT_RANGE cpu_to_le32(0x40000002)
8562306a36Sopenharmony_ci#define STATUS_IMAGE_NOT_AT_BASE cpu_to_le32(0x40000003)
8662306a36Sopenharmony_ci#define STATUS_RXACT_STATE_CREATED cpu_to_le32(0x40000004)
8762306a36Sopenharmony_ci#define STATUS_SEGMENT_NOTIFICATION cpu_to_le32(0x40000005)
8862306a36Sopenharmony_ci#define STATUS_LOCAL_USER_SESSION_KEY cpu_to_le32(0x40000006)
8962306a36Sopenharmony_ci#define STATUS_BAD_CURRENT_DIRECTORY cpu_to_le32(0x40000007)
9062306a36Sopenharmony_ci#define STATUS_SERIAL_MORE_WRITES cpu_to_le32(0x40000008)
9162306a36Sopenharmony_ci#define STATUS_REGISTRY_RECOVERED cpu_to_le32(0x40000009)
9262306a36Sopenharmony_ci#define STATUS_FT_READ_RECOVERY_FROM_BACKUP cpu_to_le32(0x4000000A)
9362306a36Sopenharmony_ci#define STATUS_FT_WRITE_RECOVERY cpu_to_le32(0x4000000B)
9462306a36Sopenharmony_ci#define STATUS_SERIAL_COUNTER_TIMEOUT cpu_to_le32(0x4000000C)
9562306a36Sopenharmony_ci#define STATUS_NULL_LM_PASSWORD cpu_to_le32(0x4000000D)
9662306a36Sopenharmony_ci#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH cpu_to_le32(0x4000000E)
9762306a36Sopenharmony_ci#define STATUS_RECEIVE_PARTIAL cpu_to_le32(0x4000000F)
9862306a36Sopenharmony_ci#define STATUS_RECEIVE_EXPEDITED cpu_to_le32(0x40000010)
9962306a36Sopenharmony_ci#define STATUS_RECEIVE_PARTIAL_EXPEDITED cpu_to_le32(0x40000011)
10062306a36Sopenharmony_ci#define STATUS_EVENT_DONE cpu_to_le32(0x40000012)
10162306a36Sopenharmony_ci#define STATUS_EVENT_PENDING cpu_to_le32(0x40000013)
10262306a36Sopenharmony_ci#define STATUS_CHECKING_FILE_SYSTEM cpu_to_le32(0x40000014)
10362306a36Sopenharmony_ci#define STATUS_FATAL_APP_EXIT cpu_to_le32(0x40000015)
10462306a36Sopenharmony_ci#define STATUS_PREDEFINED_HANDLE cpu_to_le32(0x40000016)
10562306a36Sopenharmony_ci#define STATUS_WAS_UNLOCKED cpu_to_le32(0x40000017)
10662306a36Sopenharmony_ci#define STATUS_SERVICE_NOTIFICATION cpu_to_le32(0x40000018)
10762306a36Sopenharmony_ci#define STATUS_WAS_LOCKED cpu_to_le32(0x40000019)
10862306a36Sopenharmony_ci#define STATUS_LOG_HARD_ERROR cpu_to_le32(0x4000001A)
10962306a36Sopenharmony_ci#define STATUS_ALREADY_WIN32 cpu_to_le32(0x4000001B)
11062306a36Sopenharmony_ci#define STATUS_WX86_UNSIMULATE cpu_to_le32(0x4000001C)
11162306a36Sopenharmony_ci#define STATUS_WX86_CONTINUE cpu_to_le32(0x4000001D)
11262306a36Sopenharmony_ci#define STATUS_WX86_SINGLE_STEP cpu_to_le32(0x4000001E)
11362306a36Sopenharmony_ci#define STATUS_WX86_BREAKPOINT cpu_to_le32(0x4000001F)
11462306a36Sopenharmony_ci#define STATUS_WX86_EXCEPTION_CONTINUE cpu_to_le32(0x40000020)
11562306a36Sopenharmony_ci#define STATUS_WX86_EXCEPTION_LASTCHANCE cpu_to_le32(0x40000021)
11662306a36Sopenharmony_ci#define STATUS_WX86_EXCEPTION_CHAIN cpu_to_le32(0x40000022)
11762306a36Sopenharmony_ci#define STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE cpu_to_le32(0x40000023)
11862306a36Sopenharmony_ci#define STATUS_NO_YIELD_PERFORMED cpu_to_le32(0x40000024)
11962306a36Sopenharmony_ci#define STATUS_TIMER_RESUME_IGNORED cpu_to_le32(0x40000025)
12062306a36Sopenharmony_ci#define STATUS_ARBITRATION_UNHANDLED cpu_to_le32(0x40000026)
12162306a36Sopenharmony_ci#define STATUS_CARDBUS_NOT_SUPPORTED cpu_to_le32(0x40000027)
12262306a36Sopenharmony_ci#define STATUS_WX86_CREATEWX86TIB cpu_to_le32(0x40000028)
12362306a36Sopenharmony_ci#define STATUS_MP_PROCESSOR_MISMATCH cpu_to_le32(0x40000029)
12462306a36Sopenharmony_ci#define STATUS_HIBERNATED cpu_to_le32(0x4000002A)
12562306a36Sopenharmony_ci#define STATUS_RESUME_HIBERNATION cpu_to_le32(0x4000002B)
12662306a36Sopenharmony_ci#define STATUS_FIRMWARE_UPDATED cpu_to_le32(0x4000002C)
12762306a36Sopenharmony_ci#define STATUS_DRIVERS_LEAKING_LOCKED_PAGES cpu_to_le32(0x4000002D)
12862306a36Sopenharmony_ci#define STATUS_MESSAGE_RETRIEVED cpu_to_le32(0x4000002E)
12962306a36Sopenharmony_ci#define STATUS_SYSTEM_POWERSTATE_TRANSITION cpu_to_le32(0x4000002F)
13062306a36Sopenharmony_ci#define STATUS_ALPC_CHECK_COMPLETION_LIST cpu_to_le32(0x40000030)
13162306a36Sopenharmony_ci#define STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION cpu_to_le32(0x40000031)
13262306a36Sopenharmony_ci#define STATUS_ACCESS_AUDIT_BY_POLICY cpu_to_le32(0x40000032)
13362306a36Sopenharmony_ci#define STATUS_ABANDON_HIBERFILE cpu_to_le32(0x40000033)
13462306a36Sopenharmony_ci#define STATUS_BIZRULES_NOT_ENABLED cpu_to_le32(0x40000034)
13562306a36Sopenharmony_ci#define STATUS_WAKE_SYSTEM cpu_to_le32(0x40000294)
13662306a36Sopenharmony_ci#define STATUS_DS_SHUTTING_DOWN cpu_to_le32(0x40000370)
13762306a36Sopenharmony_ci#define DBG_REPLY_LATER cpu_to_le32(0x40010001)
13862306a36Sopenharmony_ci#define DBG_UNABLE_TO_PROVIDE_HANDLE cpu_to_le32(0x40010002)
13962306a36Sopenharmony_ci#define DBG_TERMINATE_THREAD cpu_to_le32(0x40010003)
14062306a36Sopenharmony_ci#define DBG_TERMINATE_PROCESS cpu_to_le32(0x40010004)
14162306a36Sopenharmony_ci#define DBG_CONTROL_C cpu_to_le32(0x40010005)
14262306a36Sopenharmony_ci#define DBG_PRINTEXCEPTION_C cpu_to_le32(0x40010006)
14362306a36Sopenharmony_ci#define DBG_RIPEXCEPTION cpu_to_le32(0x40010007)
14462306a36Sopenharmony_ci#define DBG_CONTROL_BREAK cpu_to_le32(0x40010008)
14562306a36Sopenharmony_ci#define DBG_COMMAND_EXCEPTION cpu_to_le32(0x40010009)
14662306a36Sopenharmony_ci#define RPC_NT_UUID_LOCAL_ONLY cpu_to_le32(0x40020056)
14762306a36Sopenharmony_ci#define RPC_NT_SEND_INCOMPLETE cpu_to_le32(0x400200AF)
14862306a36Sopenharmony_ci#define STATUS_CTX_CDM_CONNECT cpu_to_le32(0x400A0004)
14962306a36Sopenharmony_ci#define STATUS_CTX_CDM_DISCONNECT cpu_to_le32(0x400A0005)
15062306a36Sopenharmony_ci#define STATUS_SXS_RELEASE_ACTIVATION_CONTEXT cpu_to_le32(0x4015000D)
15162306a36Sopenharmony_ci#define STATUS_RECOVERY_NOT_NEEDED cpu_to_le32(0x40190034)
15262306a36Sopenharmony_ci#define STATUS_RM_ALREADY_STARTED cpu_to_le32(0x40190035)
15362306a36Sopenharmony_ci#define STATUS_LOG_NO_RESTART cpu_to_le32(0x401A000C)
15462306a36Sopenharmony_ci#define STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST cpu_to_le32(0x401B00EC)
15562306a36Sopenharmony_ci#define STATUS_GRAPHICS_PARTIAL_DATA_POPULATED cpu_to_le32(0x401E000A)
15662306a36Sopenharmony_ci#define STATUS_GRAPHICS_DRIVER_MISMATCH cpu_to_le32(0x401E0117)
15762306a36Sopenharmony_ci#define STATUS_GRAPHICS_MODE_NOT_PINNED cpu_to_le32(0x401E0307)
15862306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_PREFERRED_MODE cpu_to_le32(0x401E031E)
15962306a36Sopenharmony_ci#define STATUS_GRAPHICS_DATASET_IS_EMPTY cpu_to_le32(0x401E034B)
16062306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET cpu_to_le32(0x401E034C)
16162306a36Sopenharmony_ci#define STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED cpu_to_le32(0x401E0351)
16262306a36Sopenharmony_ci#define STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS cpu_to_le32(0x401E042F)
16362306a36Sopenharmony_ci#define STATUS_GRAPHICS_LEADLINK_START_DEFERRED cpu_to_le32(0x401E0437)
16462306a36Sopenharmony_ci#define STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY cpu_to_le32(0x401E0439)
16562306a36Sopenharmony_ci#define STATUS_GRAPHICS_START_DEFERRED cpu_to_le32(0x401E043A)
16662306a36Sopenharmony_ci#define STATUS_NDIS_INDICATION_REQUIRED cpu_to_le32(0x40230001)
16762306a36Sopenharmony_ci#define STATUS_GUARD_PAGE_VIOLATION cpu_to_le32(0x80000001)
16862306a36Sopenharmony_ci#define STATUS_DATATYPE_MISALIGNMENT cpu_to_le32(0x80000002)
16962306a36Sopenharmony_ci#define STATUS_BREAKPOINT cpu_to_le32(0x80000003)
17062306a36Sopenharmony_ci#define STATUS_SINGLE_STEP cpu_to_le32(0x80000004)
17162306a36Sopenharmony_ci#define STATUS_BUFFER_OVERFLOW cpu_to_le32(0x80000005)
17262306a36Sopenharmony_ci#define STATUS_NO_MORE_FILES cpu_to_le32(0x80000006)
17362306a36Sopenharmony_ci#define STATUS_WAKE_SYSTEM_DEBUGGER cpu_to_le32(0x80000007)
17462306a36Sopenharmony_ci#define STATUS_HANDLES_CLOSED cpu_to_le32(0x8000000A)
17562306a36Sopenharmony_ci#define STATUS_NO_INHERITANCE cpu_to_le32(0x8000000B)
17662306a36Sopenharmony_ci#define STATUS_GUID_SUBSTITUTION_MADE cpu_to_le32(0x8000000C)
17762306a36Sopenharmony_ci#define STATUS_PARTIAL_COPY cpu_to_le32(0x8000000D)
17862306a36Sopenharmony_ci#define STATUS_DEVICE_PAPER_EMPTY cpu_to_le32(0x8000000E)
17962306a36Sopenharmony_ci#define STATUS_DEVICE_POWERED_OFF cpu_to_le32(0x8000000F)
18062306a36Sopenharmony_ci#define STATUS_DEVICE_OFF_LINE cpu_to_le32(0x80000010)
18162306a36Sopenharmony_ci#define STATUS_DEVICE_BUSY cpu_to_le32(0x80000011)
18262306a36Sopenharmony_ci#define STATUS_NO_MORE_EAS cpu_to_le32(0x80000012)
18362306a36Sopenharmony_ci#define STATUS_INVALID_EA_NAME cpu_to_le32(0x80000013)
18462306a36Sopenharmony_ci#define STATUS_EA_LIST_INCONSISTENT cpu_to_le32(0x80000014)
18562306a36Sopenharmony_ci#define STATUS_INVALID_EA_FLAG cpu_to_le32(0x80000015)
18662306a36Sopenharmony_ci#define STATUS_VERIFY_REQUIRED cpu_to_le32(0x80000016)
18762306a36Sopenharmony_ci#define STATUS_EXTRANEOUS_INFORMATION cpu_to_le32(0x80000017)
18862306a36Sopenharmony_ci#define STATUS_RXACT_COMMIT_NECESSARY cpu_to_le32(0x80000018)
18962306a36Sopenharmony_ci#define STATUS_NO_MORE_ENTRIES cpu_to_le32(0x8000001A)
19062306a36Sopenharmony_ci#define STATUS_FILEMARK_DETECTED cpu_to_le32(0x8000001B)
19162306a36Sopenharmony_ci#define STATUS_MEDIA_CHANGED cpu_to_le32(0x8000001C)
19262306a36Sopenharmony_ci#define STATUS_BUS_RESET cpu_to_le32(0x8000001D)
19362306a36Sopenharmony_ci#define STATUS_END_OF_MEDIA cpu_to_le32(0x8000001E)
19462306a36Sopenharmony_ci#define STATUS_BEGINNING_OF_MEDIA cpu_to_le32(0x8000001F)
19562306a36Sopenharmony_ci#define STATUS_MEDIA_CHECK cpu_to_le32(0x80000020)
19662306a36Sopenharmony_ci#define STATUS_SETMARK_DETECTED cpu_to_le32(0x80000021)
19762306a36Sopenharmony_ci#define STATUS_NO_DATA_DETECTED cpu_to_le32(0x80000022)
19862306a36Sopenharmony_ci#define STATUS_REDIRECTOR_HAS_OPEN_HANDLES cpu_to_le32(0x80000023)
19962306a36Sopenharmony_ci#define STATUS_SERVER_HAS_OPEN_HANDLES cpu_to_le32(0x80000024)
20062306a36Sopenharmony_ci#define STATUS_ALREADY_DISCONNECTED cpu_to_le32(0x80000025)
20162306a36Sopenharmony_ci#define STATUS_LONGJUMP cpu_to_le32(0x80000026)
20262306a36Sopenharmony_ci#define STATUS_CLEANER_CARTRIDGE_INSTALLED cpu_to_le32(0x80000027)
20362306a36Sopenharmony_ci#define STATUS_PLUGPLAY_QUERY_VETOED cpu_to_le32(0x80000028)
20462306a36Sopenharmony_ci#define STATUS_UNWIND_CONSOLIDATE cpu_to_le32(0x80000029)
20562306a36Sopenharmony_ci#define STATUS_REGISTRY_HIVE_RECOVERED cpu_to_le32(0x8000002A)
20662306a36Sopenharmony_ci#define STATUS_DLL_MIGHT_BE_INSECURE cpu_to_le32(0x8000002B)
20762306a36Sopenharmony_ci#define STATUS_DLL_MIGHT_BE_INCOMPATIBLE cpu_to_le32(0x8000002C)
20862306a36Sopenharmony_ci#define STATUS_STOPPED_ON_SYMLINK cpu_to_le32(0x8000002D)
20962306a36Sopenharmony_ci#define STATUS_DEVICE_REQUIRES_CLEANING cpu_to_le32(0x80000288)
21062306a36Sopenharmony_ci#define STATUS_DEVICE_DOOR_OPEN cpu_to_le32(0x80000289)
21162306a36Sopenharmony_ci#define STATUS_DATA_LOST_REPAIR cpu_to_le32(0x80000803)
21262306a36Sopenharmony_ci#define DBG_EXCEPTION_NOT_HANDLED cpu_to_le32(0x80010001)
21362306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_ALREADY_UP cpu_to_le32(0x80130001)
21462306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_ALREADY_DOWN cpu_to_le32(0x80130002)
21562306a36Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_ALREADY_ONLINE cpu_to_le32(0x80130003)
21662306a36Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE cpu_to_le32(0x80130004)
21762306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_ALREADY_MEMBER cpu_to_le32(0x80130005)
21862306a36Sopenharmony_ci#define STATUS_COULD_NOT_RESIZE_LOG cpu_to_le32(0x80190009)
21962306a36Sopenharmony_ci#define STATUS_NO_TXF_METADATA cpu_to_le32(0x80190029)
22062306a36Sopenharmony_ci#define STATUS_CANT_RECOVER_WITH_HANDLE_OPEN cpu_to_le32(0x80190031)
22162306a36Sopenharmony_ci#define STATUS_TXF_METADATA_ALREADY_PRESENT cpu_to_le32(0x80190041)
22262306a36Sopenharmony_ci#define STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET cpu_to_le32(0x80190042)
22362306a36Sopenharmony_ci#define STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED cpu_to_le32(0x801B00EB)
22462306a36Sopenharmony_ci#define STATUS_FLT_BUFFER_TOO_SMALL cpu_to_le32(0x801C0001)
22562306a36Sopenharmony_ci#define STATUS_FVE_PARTIAL_METADATA cpu_to_le32(0x80210001)
22662306a36Sopenharmony_ci#define STATUS_UNSUCCESSFUL cpu_to_le32(0xC0000001)
22762306a36Sopenharmony_ci#define STATUS_NOT_IMPLEMENTED cpu_to_le32(0xC0000002)
22862306a36Sopenharmony_ci#define STATUS_INVALID_INFO_CLASS cpu_to_le32(0xC0000003)
22962306a36Sopenharmony_ci#define STATUS_INFO_LENGTH_MISMATCH cpu_to_le32(0xC0000004)
23062306a36Sopenharmony_ci#define STATUS_ACCESS_VIOLATION cpu_to_le32(0xC0000005)
23162306a36Sopenharmony_ci#define STATUS_IN_PAGE_ERROR cpu_to_le32(0xC0000006)
23262306a36Sopenharmony_ci#define STATUS_PAGEFILE_QUOTA cpu_to_le32(0xC0000007)
23362306a36Sopenharmony_ci#define STATUS_INVALID_HANDLE cpu_to_le32(0xC0000008)
23462306a36Sopenharmony_ci#define STATUS_BAD_INITIAL_STACK cpu_to_le32(0xC0000009)
23562306a36Sopenharmony_ci#define STATUS_BAD_INITIAL_PC cpu_to_le32(0xC000000A)
23662306a36Sopenharmony_ci#define STATUS_INVALID_CID cpu_to_le32(0xC000000B)
23762306a36Sopenharmony_ci#define STATUS_TIMER_NOT_CANCELED cpu_to_le32(0xC000000C)
23862306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER cpu_to_le32(0xC000000D)
23962306a36Sopenharmony_ci#define STATUS_NO_SUCH_DEVICE cpu_to_le32(0xC000000E)
24062306a36Sopenharmony_ci#define STATUS_NO_SUCH_FILE cpu_to_le32(0xC000000F)
24162306a36Sopenharmony_ci#define STATUS_INVALID_DEVICE_REQUEST cpu_to_le32(0xC0000010)
24262306a36Sopenharmony_ci#define STATUS_END_OF_FILE cpu_to_le32(0xC0000011)
24362306a36Sopenharmony_ci#define STATUS_WRONG_VOLUME cpu_to_le32(0xC0000012)
24462306a36Sopenharmony_ci#define STATUS_NO_MEDIA_IN_DEVICE cpu_to_le32(0xC0000013)
24562306a36Sopenharmony_ci#define STATUS_UNRECOGNIZED_MEDIA cpu_to_le32(0xC0000014)
24662306a36Sopenharmony_ci#define STATUS_NONEXISTENT_SECTOR cpu_to_le32(0xC0000015)
24762306a36Sopenharmony_ci#define STATUS_MORE_PROCESSING_REQUIRED cpu_to_le32(0xC0000016)
24862306a36Sopenharmony_ci#define STATUS_NO_MEMORY cpu_to_le32(0xC0000017)
24962306a36Sopenharmony_ci#define STATUS_CONFLICTING_ADDRESSES cpu_to_le32(0xC0000018)
25062306a36Sopenharmony_ci#define STATUS_NOT_MAPPED_VIEW cpu_to_le32(0xC0000019)
25162306a36Sopenharmony_ci#define STATUS_UNABLE_TO_FREE_VM cpu_to_le32(0xC000001A)
25262306a36Sopenharmony_ci#define STATUS_UNABLE_TO_DELETE_SECTION cpu_to_le32(0xC000001B)
25362306a36Sopenharmony_ci#define STATUS_INVALID_SYSTEM_SERVICE cpu_to_le32(0xC000001C)
25462306a36Sopenharmony_ci#define STATUS_ILLEGAL_INSTRUCTION cpu_to_le32(0xC000001D)
25562306a36Sopenharmony_ci#define STATUS_INVALID_LOCK_SEQUENCE cpu_to_le32(0xC000001E)
25662306a36Sopenharmony_ci#define STATUS_INVALID_VIEW_SIZE cpu_to_le32(0xC000001F)
25762306a36Sopenharmony_ci#define STATUS_INVALID_FILE_FOR_SECTION cpu_to_le32(0xC0000020)
25862306a36Sopenharmony_ci#define STATUS_ALREADY_COMMITTED cpu_to_le32(0xC0000021)
25962306a36Sopenharmony_ci#define STATUS_ACCESS_DENIED cpu_to_le32(0xC0000022)
26062306a36Sopenharmony_ci#define STATUS_BUFFER_TOO_SMALL cpu_to_le32(0xC0000023)
26162306a36Sopenharmony_ci#define STATUS_OBJECT_TYPE_MISMATCH cpu_to_le32(0xC0000024)
26262306a36Sopenharmony_ci#define STATUS_NONCONTINUABLE_EXCEPTION cpu_to_le32(0xC0000025)
26362306a36Sopenharmony_ci#define STATUS_INVALID_DISPOSITION cpu_to_le32(0xC0000026)
26462306a36Sopenharmony_ci#define STATUS_UNWIND cpu_to_le32(0xC0000027)
26562306a36Sopenharmony_ci#define STATUS_BAD_STACK cpu_to_le32(0xC0000028)
26662306a36Sopenharmony_ci#define STATUS_INVALID_UNWIND_TARGET cpu_to_le32(0xC0000029)
26762306a36Sopenharmony_ci#define STATUS_NOT_LOCKED cpu_to_le32(0xC000002A)
26862306a36Sopenharmony_ci#define STATUS_PARITY_ERROR cpu_to_le32(0xC000002B)
26962306a36Sopenharmony_ci#define STATUS_UNABLE_TO_DECOMMIT_VM cpu_to_le32(0xC000002C)
27062306a36Sopenharmony_ci#define STATUS_NOT_COMMITTED cpu_to_le32(0xC000002D)
27162306a36Sopenharmony_ci#define STATUS_INVALID_PORT_ATTRIBUTES cpu_to_le32(0xC000002E)
27262306a36Sopenharmony_ci#define STATUS_PORT_MESSAGE_TOO_LONG cpu_to_le32(0xC000002F)
27362306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_MIX cpu_to_le32(0xC0000030)
27462306a36Sopenharmony_ci#define STATUS_INVALID_QUOTA_LOWER cpu_to_le32(0xC0000031)
27562306a36Sopenharmony_ci#define STATUS_DISK_CORRUPT_ERROR cpu_to_le32(0xC0000032)
27662306a36Sopenharmony_ci#define STATUS_OBJECT_NAME_INVALID cpu_to_le32(0xC0000033)
27762306a36Sopenharmony_ci#define STATUS_OBJECT_NAME_NOT_FOUND cpu_to_le32(0xC0000034)
27862306a36Sopenharmony_ci#define STATUS_OBJECT_NAME_COLLISION cpu_to_le32(0xC0000035)
27962306a36Sopenharmony_ci#define STATUS_PORT_DISCONNECTED cpu_to_le32(0xC0000037)
28062306a36Sopenharmony_ci#define STATUS_DEVICE_ALREADY_ATTACHED cpu_to_le32(0xC0000038)
28162306a36Sopenharmony_ci#define STATUS_OBJECT_PATH_INVALID cpu_to_le32(0xC0000039)
28262306a36Sopenharmony_ci#define STATUS_OBJECT_PATH_NOT_FOUND cpu_to_le32(0xC000003A)
28362306a36Sopenharmony_ci#define STATUS_OBJECT_PATH_SYNTAX_BAD cpu_to_le32(0xC000003B)
28462306a36Sopenharmony_ci#define STATUS_DATA_OVERRUN cpu_to_le32(0xC000003C)
28562306a36Sopenharmony_ci#define STATUS_DATA_LATE_ERROR cpu_to_le32(0xC000003D)
28662306a36Sopenharmony_ci#define STATUS_DATA_ERROR cpu_to_le32(0xC000003E)
28762306a36Sopenharmony_ci#define STATUS_CRC_ERROR cpu_to_le32(0xC000003F)
28862306a36Sopenharmony_ci#define STATUS_SECTION_TOO_BIG cpu_to_le32(0xC0000040)
28962306a36Sopenharmony_ci#define STATUS_PORT_CONNECTION_REFUSED cpu_to_le32(0xC0000041)
29062306a36Sopenharmony_ci#define STATUS_INVALID_PORT_HANDLE cpu_to_le32(0xC0000042)
29162306a36Sopenharmony_ci#define STATUS_SHARING_VIOLATION cpu_to_le32(0xC0000043)
29262306a36Sopenharmony_ci#define STATUS_QUOTA_EXCEEDED cpu_to_le32(0xC0000044)
29362306a36Sopenharmony_ci#define STATUS_INVALID_PAGE_PROTECTION cpu_to_le32(0xC0000045)
29462306a36Sopenharmony_ci#define STATUS_MUTANT_NOT_OWNED cpu_to_le32(0xC0000046)
29562306a36Sopenharmony_ci#define STATUS_SEMAPHORE_LIMIT_EXCEEDED cpu_to_le32(0xC0000047)
29662306a36Sopenharmony_ci#define STATUS_PORT_ALREADY_SET cpu_to_le32(0xC0000048)
29762306a36Sopenharmony_ci#define STATUS_SECTION_NOT_IMAGE cpu_to_le32(0xC0000049)
29862306a36Sopenharmony_ci#define STATUS_SUSPEND_COUNT_EXCEEDED cpu_to_le32(0xC000004A)
29962306a36Sopenharmony_ci#define STATUS_THREAD_IS_TERMINATING cpu_to_le32(0xC000004B)
30062306a36Sopenharmony_ci#define STATUS_BAD_WORKING_SET_LIMIT cpu_to_le32(0xC000004C)
30162306a36Sopenharmony_ci#define STATUS_INCOMPATIBLE_FILE_MAP cpu_to_le32(0xC000004D)
30262306a36Sopenharmony_ci#define STATUS_SECTION_PROTECTION cpu_to_le32(0xC000004E)
30362306a36Sopenharmony_ci#define STATUS_EAS_NOT_SUPPORTED cpu_to_le32(0xC000004F)
30462306a36Sopenharmony_ci#define STATUS_EA_TOO_LARGE cpu_to_le32(0xC0000050)
30562306a36Sopenharmony_ci#define STATUS_NONEXISTENT_EA_ENTRY cpu_to_le32(0xC0000051)
30662306a36Sopenharmony_ci#define STATUS_NO_EAS_ON_FILE cpu_to_le32(0xC0000052)
30762306a36Sopenharmony_ci#define STATUS_EA_CORRUPT_ERROR cpu_to_le32(0xC0000053)
30862306a36Sopenharmony_ci#define STATUS_FILE_LOCK_CONFLICT cpu_to_le32(0xC0000054)
30962306a36Sopenharmony_ci#define STATUS_LOCK_NOT_GRANTED cpu_to_le32(0xC0000055)
31062306a36Sopenharmony_ci#define STATUS_DELETE_PENDING cpu_to_le32(0xC0000056)
31162306a36Sopenharmony_ci#define STATUS_CTL_FILE_NOT_SUPPORTED cpu_to_le32(0xC0000057)
31262306a36Sopenharmony_ci#define STATUS_UNKNOWN_REVISION cpu_to_le32(0xC0000058)
31362306a36Sopenharmony_ci#define STATUS_REVISION_MISMATCH cpu_to_le32(0xC0000059)
31462306a36Sopenharmony_ci#define STATUS_INVALID_OWNER cpu_to_le32(0xC000005A)
31562306a36Sopenharmony_ci#define STATUS_INVALID_PRIMARY_GROUP cpu_to_le32(0xC000005B)
31662306a36Sopenharmony_ci#define STATUS_NO_IMPERSONATION_TOKEN cpu_to_le32(0xC000005C)
31762306a36Sopenharmony_ci#define STATUS_CANT_DISABLE_MANDATORY cpu_to_le32(0xC000005D)
31862306a36Sopenharmony_ci#define STATUS_NO_LOGON_SERVERS cpu_to_le32(0xC000005E)
31962306a36Sopenharmony_ci#define STATUS_NO_SUCH_LOGON_SESSION cpu_to_le32(0xC000005F)
32062306a36Sopenharmony_ci#define STATUS_NO_SUCH_PRIVILEGE cpu_to_le32(0xC0000060)
32162306a36Sopenharmony_ci#define STATUS_PRIVILEGE_NOT_HELD cpu_to_le32(0xC0000061)
32262306a36Sopenharmony_ci#define STATUS_INVALID_ACCOUNT_NAME cpu_to_le32(0xC0000062)
32362306a36Sopenharmony_ci#define STATUS_USER_EXISTS cpu_to_le32(0xC0000063)
32462306a36Sopenharmony_ci#define STATUS_NO_SUCH_USER cpu_to_le32(0xC0000064)
32562306a36Sopenharmony_ci#define STATUS_GROUP_EXISTS cpu_to_le32(0xC0000065)
32662306a36Sopenharmony_ci#define STATUS_NO_SUCH_GROUP cpu_to_le32(0xC0000066)
32762306a36Sopenharmony_ci#define STATUS_MEMBER_IN_GROUP cpu_to_le32(0xC0000067)
32862306a36Sopenharmony_ci#define STATUS_MEMBER_NOT_IN_GROUP cpu_to_le32(0xC0000068)
32962306a36Sopenharmony_ci#define STATUS_LAST_ADMIN cpu_to_le32(0xC0000069)
33062306a36Sopenharmony_ci#define STATUS_WRONG_PASSWORD cpu_to_le32(0xC000006A)
33162306a36Sopenharmony_ci#define STATUS_ILL_FORMED_PASSWORD cpu_to_le32(0xC000006B)
33262306a36Sopenharmony_ci#define STATUS_PASSWORD_RESTRICTION cpu_to_le32(0xC000006C)
33362306a36Sopenharmony_ci#define STATUS_LOGON_FAILURE cpu_to_le32(0xC000006D)
33462306a36Sopenharmony_ci#define STATUS_ACCOUNT_RESTRICTION cpu_to_le32(0xC000006E)
33562306a36Sopenharmony_ci#define STATUS_INVALID_LOGON_HOURS cpu_to_le32(0xC000006F)
33662306a36Sopenharmony_ci#define STATUS_INVALID_WORKSTATION cpu_to_le32(0xC0000070)
33762306a36Sopenharmony_ci#define STATUS_PASSWORD_EXPIRED cpu_to_le32(0xC0000071)
33862306a36Sopenharmony_ci#define STATUS_ACCOUNT_DISABLED cpu_to_le32(0xC0000072)
33962306a36Sopenharmony_ci#define STATUS_NONE_MAPPED cpu_to_le32(0xC0000073)
34062306a36Sopenharmony_ci#define STATUS_TOO_MANY_LUIDS_REQUESTED cpu_to_le32(0xC0000074)
34162306a36Sopenharmony_ci#define STATUS_LUIDS_EXHAUSTED cpu_to_le32(0xC0000075)
34262306a36Sopenharmony_ci#define STATUS_INVALID_SUB_AUTHORITY cpu_to_le32(0xC0000076)
34362306a36Sopenharmony_ci#define STATUS_INVALID_ACL cpu_to_le32(0xC0000077)
34462306a36Sopenharmony_ci#define STATUS_INVALID_SID cpu_to_le32(0xC0000078)
34562306a36Sopenharmony_ci#define STATUS_INVALID_SECURITY_DESCR cpu_to_le32(0xC0000079)
34662306a36Sopenharmony_ci#define STATUS_PROCEDURE_NOT_FOUND cpu_to_le32(0xC000007A)
34762306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_FORMAT cpu_to_le32(0xC000007B)
34862306a36Sopenharmony_ci#define STATUS_NO_TOKEN cpu_to_le32(0xC000007C)
34962306a36Sopenharmony_ci#define STATUS_BAD_INHERITANCE_ACL cpu_to_le32(0xC000007D)
35062306a36Sopenharmony_ci#define STATUS_RANGE_NOT_LOCKED cpu_to_le32(0xC000007E)
35162306a36Sopenharmony_ci#define STATUS_DISK_FULL cpu_to_le32(0xC000007F)
35262306a36Sopenharmony_ci#define STATUS_SERVER_DISABLED cpu_to_le32(0xC0000080)
35362306a36Sopenharmony_ci#define STATUS_SERVER_NOT_DISABLED cpu_to_le32(0xC0000081)
35462306a36Sopenharmony_ci#define STATUS_TOO_MANY_GUIDS_REQUESTED cpu_to_le32(0xC0000082)
35562306a36Sopenharmony_ci#define STATUS_GUIDS_EXHAUSTED cpu_to_le32(0xC0000083)
35662306a36Sopenharmony_ci#define STATUS_INVALID_ID_AUTHORITY cpu_to_le32(0xC0000084)
35762306a36Sopenharmony_ci#define STATUS_AGENTS_EXHAUSTED cpu_to_le32(0xC0000085)
35862306a36Sopenharmony_ci#define STATUS_INVALID_VOLUME_LABEL cpu_to_le32(0xC0000086)
35962306a36Sopenharmony_ci#define STATUS_SECTION_NOT_EXTENDED cpu_to_le32(0xC0000087)
36062306a36Sopenharmony_ci#define STATUS_NOT_MAPPED_DATA cpu_to_le32(0xC0000088)
36162306a36Sopenharmony_ci#define STATUS_RESOURCE_DATA_NOT_FOUND cpu_to_le32(0xC0000089)
36262306a36Sopenharmony_ci#define STATUS_RESOURCE_TYPE_NOT_FOUND cpu_to_le32(0xC000008A)
36362306a36Sopenharmony_ci#define STATUS_RESOURCE_NAME_NOT_FOUND cpu_to_le32(0xC000008B)
36462306a36Sopenharmony_ci#define STATUS_ARRAY_BOUNDS_EXCEEDED cpu_to_le32(0xC000008C)
36562306a36Sopenharmony_ci#define STATUS_FLOAT_DENORMAL_OPERAND cpu_to_le32(0xC000008D)
36662306a36Sopenharmony_ci#define STATUS_FLOAT_DIVIDE_BY_ZERO cpu_to_le32(0xC000008E)
36762306a36Sopenharmony_ci#define STATUS_FLOAT_INEXACT_RESULT cpu_to_le32(0xC000008F)
36862306a36Sopenharmony_ci#define STATUS_FLOAT_INVALID_OPERATION cpu_to_le32(0xC0000090)
36962306a36Sopenharmony_ci#define STATUS_FLOAT_OVERFLOW cpu_to_le32(0xC0000091)
37062306a36Sopenharmony_ci#define STATUS_FLOAT_STACK_CHECK cpu_to_le32(0xC0000092)
37162306a36Sopenharmony_ci#define STATUS_FLOAT_UNDERFLOW cpu_to_le32(0xC0000093)
37262306a36Sopenharmony_ci#define STATUS_INTEGER_DIVIDE_BY_ZERO cpu_to_le32(0xC0000094)
37362306a36Sopenharmony_ci#define STATUS_INTEGER_OVERFLOW cpu_to_le32(0xC0000095)
37462306a36Sopenharmony_ci#define STATUS_PRIVILEGED_INSTRUCTION cpu_to_le32(0xC0000096)
37562306a36Sopenharmony_ci#define STATUS_TOO_MANY_PAGING_FILES cpu_to_le32(0xC0000097)
37662306a36Sopenharmony_ci#define STATUS_FILE_INVALID cpu_to_le32(0xC0000098)
37762306a36Sopenharmony_ci#define STATUS_ALLOTTED_SPACE_EXCEEDED cpu_to_le32(0xC0000099)
37862306a36Sopenharmony_ci#define STATUS_INSUFFICIENT_RESOURCES cpu_to_le32(0xC000009A)
37962306a36Sopenharmony_ci#define STATUS_DFS_EXIT_PATH_FOUND cpu_to_le32(0xC000009B)
38062306a36Sopenharmony_ci#define STATUS_DEVICE_DATA_ERROR cpu_to_le32(0xC000009C)
38162306a36Sopenharmony_ci#define STATUS_DEVICE_NOT_CONNECTED cpu_to_le32(0xC000009D)
38262306a36Sopenharmony_ci#define STATUS_DEVICE_POWER_FAILURE cpu_to_le32(0xC000009E)
38362306a36Sopenharmony_ci#define STATUS_FREE_VM_NOT_AT_BASE cpu_to_le32(0xC000009F)
38462306a36Sopenharmony_ci#define STATUS_MEMORY_NOT_ALLOCATED cpu_to_le32(0xC00000A0)
38562306a36Sopenharmony_ci#define STATUS_WORKING_SET_QUOTA cpu_to_le32(0xC00000A1)
38662306a36Sopenharmony_ci#define STATUS_MEDIA_WRITE_PROTECTED cpu_to_le32(0xC00000A2)
38762306a36Sopenharmony_ci#define STATUS_DEVICE_NOT_READY cpu_to_le32(0xC00000A3)
38862306a36Sopenharmony_ci#define STATUS_INVALID_GROUP_ATTRIBUTES cpu_to_le32(0xC00000A4)
38962306a36Sopenharmony_ci#define STATUS_BAD_IMPERSONATION_LEVEL cpu_to_le32(0xC00000A5)
39062306a36Sopenharmony_ci#define STATUS_CANT_OPEN_ANONYMOUS cpu_to_le32(0xC00000A6)
39162306a36Sopenharmony_ci#define STATUS_BAD_VALIDATION_CLASS cpu_to_le32(0xC00000A7)
39262306a36Sopenharmony_ci#define STATUS_BAD_TOKEN_TYPE cpu_to_le32(0xC00000A8)
39362306a36Sopenharmony_ci#define STATUS_BAD_MASTER_BOOT_RECORD cpu_to_le32(0xC00000A9)
39462306a36Sopenharmony_ci#define STATUS_INSTRUCTION_MISALIGNMENT cpu_to_le32(0xC00000AA)
39562306a36Sopenharmony_ci#define STATUS_INSTANCE_NOT_AVAILABLE cpu_to_le32(0xC00000AB)
39662306a36Sopenharmony_ci#define STATUS_PIPE_NOT_AVAILABLE cpu_to_le32(0xC00000AC)
39762306a36Sopenharmony_ci#define STATUS_INVALID_PIPE_STATE cpu_to_le32(0xC00000AD)
39862306a36Sopenharmony_ci#define STATUS_PIPE_BUSY cpu_to_le32(0xC00000AE)
39962306a36Sopenharmony_ci#define STATUS_ILLEGAL_FUNCTION cpu_to_le32(0xC00000AF)
40062306a36Sopenharmony_ci#define STATUS_PIPE_DISCONNECTED cpu_to_le32(0xC00000B0)
40162306a36Sopenharmony_ci#define STATUS_PIPE_CLOSING cpu_to_le32(0xC00000B1)
40262306a36Sopenharmony_ci#define STATUS_PIPE_CONNECTED cpu_to_le32(0xC00000B2)
40362306a36Sopenharmony_ci#define STATUS_PIPE_LISTENING cpu_to_le32(0xC00000B3)
40462306a36Sopenharmony_ci#define STATUS_INVALID_READ_MODE cpu_to_le32(0xC00000B4)
40562306a36Sopenharmony_ci#define STATUS_IO_TIMEOUT cpu_to_le32(0xC00000B5)
40662306a36Sopenharmony_ci#define STATUS_FILE_FORCED_CLOSED cpu_to_le32(0xC00000B6)
40762306a36Sopenharmony_ci#define STATUS_PROFILING_NOT_STARTED cpu_to_le32(0xC00000B7)
40862306a36Sopenharmony_ci#define STATUS_PROFILING_NOT_STOPPED cpu_to_le32(0xC00000B8)
40962306a36Sopenharmony_ci#define STATUS_COULD_NOT_INTERPRET cpu_to_le32(0xC00000B9)
41062306a36Sopenharmony_ci#define STATUS_FILE_IS_A_DIRECTORY cpu_to_le32(0xC00000BA)
41162306a36Sopenharmony_ci#define STATUS_NOT_SUPPORTED cpu_to_le32(0xC00000BB)
41262306a36Sopenharmony_ci#define STATUS_REMOTE_NOT_LISTENING cpu_to_le32(0xC00000BC)
41362306a36Sopenharmony_ci#define STATUS_DUPLICATE_NAME cpu_to_le32(0xC00000BD)
41462306a36Sopenharmony_ci#define STATUS_BAD_NETWORK_PATH cpu_to_le32(0xC00000BE)
41562306a36Sopenharmony_ci#define STATUS_NETWORK_BUSY cpu_to_le32(0xC00000BF)
41662306a36Sopenharmony_ci#define STATUS_DEVICE_DOES_NOT_EXIST cpu_to_le32(0xC00000C0)
41762306a36Sopenharmony_ci#define STATUS_TOO_MANY_COMMANDS cpu_to_le32(0xC00000C1)
41862306a36Sopenharmony_ci#define STATUS_ADAPTER_HARDWARE_ERROR cpu_to_le32(0xC00000C2)
41962306a36Sopenharmony_ci#define STATUS_INVALID_NETWORK_RESPONSE cpu_to_le32(0xC00000C3)
42062306a36Sopenharmony_ci#define STATUS_UNEXPECTED_NETWORK_ERROR cpu_to_le32(0xC00000C4)
42162306a36Sopenharmony_ci#define STATUS_BAD_REMOTE_ADAPTER cpu_to_le32(0xC00000C5)
42262306a36Sopenharmony_ci#define STATUS_PRINT_QUEUE_FULL cpu_to_le32(0xC00000C6)
42362306a36Sopenharmony_ci#define STATUS_NO_SPOOL_SPACE cpu_to_le32(0xC00000C7)
42462306a36Sopenharmony_ci#define STATUS_PRINT_CANCELLED cpu_to_le32(0xC00000C8)
42562306a36Sopenharmony_ci#define STATUS_NETWORK_NAME_DELETED cpu_to_le32(0xC00000C9)
42662306a36Sopenharmony_ci#define STATUS_NETWORK_ACCESS_DENIED cpu_to_le32(0xC00000CA)
42762306a36Sopenharmony_ci#define STATUS_BAD_DEVICE_TYPE cpu_to_le32(0xC00000CB)
42862306a36Sopenharmony_ci#define STATUS_BAD_NETWORK_NAME cpu_to_le32(0xC00000CC)
42962306a36Sopenharmony_ci#define STATUS_TOO_MANY_NAMES cpu_to_le32(0xC00000CD)
43062306a36Sopenharmony_ci#define STATUS_TOO_MANY_SESSIONS cpu_to_le32(0xC00000CE)
43162306a36Sopenharmony_ci#define STATUS_SHARING_PAUSED cpu_to_le32(0xC00000CF)
43262306a36Sopenharmony_ci#define STATUS_REQUEST_NOT_ACCEPTED cpu_to_le32(0xC00000D0)
43362306a36Sopenharmony_ci#define STATUS_REDIRECTOR_PAUSED cpu_to_le32(0xC00000D1)
43462306a36Sopenharmony_ci#define STATUS_NET_WRITE_FAULT cpu_to_le32(0xC00000D2)
43562306a36Sopenharmony_ci#define STATUS_PROFILING_AT_LIMIT cpu_to_le32(0xC00000D3)
43662306a36Sopenharmony_ci#define STATUS_NOT_SAME_DEVICE cpu_to_le32(0xC00000D4)
43762306a36Sopenharmony_ci#define STATUS_FILE_RENAMED cpu_to_le32(0xC00000D5)
43862306a36Sopenharmony_ci#define STATUS_VIRTUAL_CIRCUIT_CLOSED cpu_to_le32(0xC00000D6)
43962306a36Sopenharmony_ci#define STATUS_NO_SECURITY_ON_OBJECT cpu_to_le32(0xC00000D7)
44062306a36Sopenharmony_ci#define STATUS_CANT_WAIT cpu_to_le32(0xC00000D8)
44162306a36Sopenharmony_ci#define STATUS_PIPE_EMPTY cpu_to_le32(0xC00000D9)
44262306a36Sopenharmony_ci#define STATUS_CANT_ACCESS_DOMAIN_INFO cpu_to_le32(0xC00000DA)
44362306a36Sopenharmony_ci#define STATUS_CANT_TERMINATE_SELF cpu_to_le32(0xC00000DB)
44462306a36Sopenharmony_ci#define STATUS_INVALID_SERVER_STATE cpu_to_le32(0xC00000DC)
44562306a36Sopenharmony_ci#define STATUS_INVALID_DOMAIN_STATE cpu_to_le32(0xC00000DD)
44662306a36Sopenharmony_ci#define STATUS_INVALID_DOMAIN_ROLE cpu_to_le32(0xC00000DE)
44762306a36Sopenharmony_ci#define STATUS_NO_SUCH_DOMAIN cpu_to_le32(0xC00000DF)
44862306a36Sopenharmony_ci#define STATUS_DOMAIN_EXISTS cpu_to_le32(0xC00000E0)
44962306a36Sopenharmony_ci#define STATUS_DOMAIN_LIMIT_EXCEEDED cpu_to_le32(0xC00000E1)
45062306a36Sopenharmony_ci#define STATUS_OPLOCK_NOT_GRANTED cpu_to_le32(0xC00000E2)
45162306a36Sopenharmony_ci#define STATUS_INVALID_OPLOCK_PROTOCOL cpu_to_le32(0xC00000E3)
45262306a36Sopenharmony_ci#define STATUS_INTERNAL_DB_CORRUPTION cpu_to_le32(0xC00000E4)
45362306a36Sopenharmony_ci#define STATUS_INTERNAL_ERROR cpu_to_le32(0xC00000E5)
45462306a36Sopenharmony_ci#define STATUS_GENERIC_NOT_MAPPED cpu_to_le32(0xC00000E6)
45562306a36Sopenharmony_ci#define STATUS_BAD_DESCRIPTOR_FORMAT cpu_to_le32(0xC00000E7)
45662306a36Sopenharmony_ci#define STATUS_INVALID_USER_BUFFER cpu_to_le32(0xC00000E8)
45762306a36Sopenharmony_ci#define STATUS_UNEXPECTED_IO_ERROR cpu_to_le32(0xC00000E9)
45862306a36Sopenharmony_ci#define STATUS_UNEXPECTED_MM_CREATE_ERR cpu_to_le32(0xC00000EA)
45962306a36Sopenharmony_ci#define STATUS_UNEXPECTED_MM_MAP_ERROR cpu_to_le32(0xC00000EB)
46062306a36Sopenharmony_ci#define STATUS_UNEXPECTED_MM_EXTEND_ERR cpu_to_le32(0xC00000EC)
46162306a36Sopenharmony_ci#define STATUS_NOT_LOGON_PROCESS cpu_to_le32(0xC00000ED)
46262306a36Sopenharmony_ci#define STATUS_LOGON_SESSION_EXISTS cpu_to_le32(0xC00000EE)
46362306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_1 cpu_to_le32(0xC00000EF)
46462306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_2 cpu_to_le32(0xC00000F0)
46562306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_3 cpu_to_le32(0xC00000F1)
46662306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_4 cpu_to_le32(0xC00000F2)
46762306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_5 cpu_to_le32(0xC00000F3)
46862306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_6 cpu_to_le32(0xC00000F4)
46962306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_7 cpu_to_le32(0xC00000F5)
47062306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_8 cpu_to_le32(0xC00000F6)
47162306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_9 cpu_to_le32(0xC00000F7)
47262306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_10 cpu_to_le32(0xC00000F8)
47362306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_11 cpu_to_le32(0xC00000F9)
47462306a36Sopenharmony_ci#define STATUS_INVALID_PARAMETER_12 cpu_to_le32(0xC00000FA)
47562306a36Sopenharmony_ci#define STATUS_REDIRECTOR_NOT_STARTED cpu_to_le32(0xC00000FB)
47662306a36Sopenharmony_ci#define STATUS_REDIRECTOR_STARTED cpu_to_le32(0xC00000FC)
47762306a36Sopenharmony_ci#define STATUS_STACK_OVERFLOW cpu_to_le32(0xC00000FD)
47862306a36Sopenharmony_ci#define STATUS_NO_SUCH_PACKAGE cpu_to_le32(0xC00000FE)
47962306a36Sopenharmony_ci#define STATUS_BAD_FUNCTION_TABLE cpu_to_le32(0xC00000FF)
48062306a36Sopenharmony_ci#define STATUS_VARIABLE_NOT_FOUND cpu_to_le32(0xC0000100)
48162306a36Sopenharmony_ci#define STATUS_DIRECTORY_NOT_EMPTY cpu_to_le32(0xC0000101)
48262306a36Sopenharmony_ci#define STATUS_FILE_CORRUPT_ERROR cpu_to_le32(0xC0000102)
48362306a36Sopenharmony_ci#define STATUS_NOT_A_DIRECTORY cpu_to_le32(0xC0000103)
48462306a36Sopenharmony_ci#define STATUS_BAD_LOGON_SESSION_STATE cpu_to_le32(0xC0000104)
48562306a36Sopenharmony_ci#define STATUS_LOGON_SESSION_COLLISION cpu_to_le32(0xC0000105)
48662306a36Sopenharmony_ci#define STATUS_NAME_TOO_LONG cpu_to_le32(0xC0000106)
48762306a36Sopenharmony_ci#define STATUS_FILES_OPEN cpu_to_le32(0xC0000107)
48862306a36Sopenharmony_ci#define STATUS_CONNECTION_IN_USE cpu_to_le32(0xC0000108)
48962306a36Sopenharmony_ci#define STATUS_MESSAGE_NOT_FOUND cpu_to_le32(0xC0000109)
49062306a36Sopenharmony_ci#define STATUS_PROCESS_IS_TERMINATING cpu_to_le32(0xC000010A)
49162306a36Sopenharmony_ci#define STATUS_INVALID_LOGON_TYPE cpu_to_le32(0xC000010B)
49262306a36Sopenharmony_ci#define STATUS_NO_GUID_TRANSLATION cpu_to_le32(0xC000010C)
49362306a36Sopenharmony_ci#define STATUS_CANNOT_IMPERSONATE cpu_to_le32(0xC000010D)
49462306a36Sopenharmony_ci#define STATUS_IMAGE_ALREADY_LOADED cpu_to_le32(0xC000010E)
49562306a36Sopenharmony_ci#define STATUS_ABIOS_NOT_PRESENT cpu_to_le32(0xC000010F)
49662306a36Sopenharmony_ci#define STATUS_ABIOS_LID_NOT_EXIST cpu_to_le32(0xC0000110)
49762306a36Sopenharmony_ci#define STATUS_ABIOS_LID_ALREADY_OWNED cpu_to_le32(0xC0000111)
49862306a36Sopenharmony_ci#define STATUS_ABIOS_NOT_LID_OWNER cpu_to_le32(0xC0000112)
49962306a36Sopenharmony_ci#define STATUS_ABIOS_INVALID_COMMAND cpu_to_le32(0xC0000113)
50062306a36Sopenharmony_ci#define STATUS_ABIOS_INVALID_LID cpu_to_le32(0xC0000114)
50162306a36Sopenharmony_ci#define STATUS_ABIOS_SELECTOR_NOT_AVAILABLE cpu_to_le32(0xC0000115)
50262306a36Sopenharmony_ci#define STATUS_ABIOS_INVALID_SELECTOR cpu_to_le32(0xC0000116)
50362306a36Sopenharmony_ci#define STATUS_NO_LDT cpu_to_le32(0xC0000117)
50462306a36Sopenharmony_ci#define STATUS_INVALID_LDT_SIZE cpu_to_le32(0xC0000118)
50562306a36Sopenharmony_ci#define STATUS_INVALID_LDT_OFFSET cpu_to_le32(0xC0000119)
50662306a36Sopenharmony_ci#define STATUS_INVALID_LDT_DESCRIPTOR cpu_to_le32(0xC000011A)
50762306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_NE_FORMAT cpu_to_le32(0xC000011B)
50862306a36Sopenharmony_ci#define STATUS_RXACT_INVALID_STATE cpu_to_le32(0xC000011C)
50962306a36Sopenharmony_ci#define STATUS_RXACT_COMMIT_FAILURE cpu_to_le32(0xC000011D)
51062306a36Sopenharmony_ci#define STATUS_MAPPED_FILE_SIZE_ZERO cpu_to_le32(0xC000011E)
51162306a36Sopenharmony_ci#define STATUS_TOO_MANY_OPENED_FILES cpu_to_le32(0xC000011F)
51262306a36Sopenharmony_ci#define STATUS_CANCELLED cpu_to_le32(0xC0000120)
51362306a36Sopenharmony_ci#define STATUS_CANNOT_DELETE cpu_to_le32(0xC0000121)
51462306a36Sopenharmony_ci#define STATUS_INVALID_COMPUTER_NAME cpu_to_le32(0xC0000122)
51562306a36Sopenharmony_ci#define STATUS_FILE_DELETED cpu_to_le32(0xC0000123)
51662306a36Sopenharmony_ci#define STATUS_SPECIAL_ACCOUNT cpu_to_le32(0xC0000124)
51762306a36Sopenharmony_ci#define STATUS_SPECIAL_GROUP cpu_to_le32(0xC0000125)
51862306a36Sopenharmony_ci#define STATUS_SPECIAL_USER cpu_to_le32(0xC0000126)
51962306a36Sopenharmony_ci#define STATUS_MEMBERS_PRIMARY_GROUP cpu_to_le32(0xC0000127)
52062306a36Sopenharmony_ci#define STATUS_FILE_CLOSED cpu_to_le32(0xC0000128)
52162306a36Sopenharmony_ci#define STATUS_TOO_MANY_THREADS cpu_to_le32(0xC0000129)
52262306a36Sopenharmony_ci#define STATUS_THREAD_NOT_IN_PROCESS cpu_to_le32(0xC000012A)
52362306a36Sopenharmony_ci#define STATUS_TOKEN_ALREADY_IN_USE cpu_to_le32(0xC000012B)
52462306a36Sopenharmony_ci#define STATUS_PAGEFILE_QUOTA_EXCEEDED cpu_to_le32(0xC000012C)
52562306a36Sopenharmony_ci#define STATUS_COMMITMENT_LIMIT cpu_to_le32(0xC000012D)
52662306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_LE_FORMAT cpu_to_le32(0xC000012E)
52762306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_NOT_MZ cpu_to_le32(0xC000012F)
52862306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_PROTECT cpu_to_le32(0xC0000130)
52962306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_WIN_16 cpu_to_le32(0xC0000131)
53062306a36Sopenharmony_ci#define STATUS_LOGON_SERVER_CONFLICT cpu_to_le32(0xC0000132)
53162306a36Sopenharmony_ci#define STATUS_TIME_DIFFERENCE_AT_DC cpu_to_le32(0xC0000133)
53262306a36Sopenharmony_ci#define STATUS_SYNCHRONIZATION_REQUIRED cpu_to_le32(0xC0000134)
53362306a36Sopenharmony_ci#define STATUS_DLL_NOT_FOUND cpu_to_le32(0xC0000135)
53462306a36Sopenharmony_ci#define STATUS_OPEN_FAILED cpu_to_le32(0xC0000136)
53562306a36Sopenharmony_ci#define STATUS_IO_PRIVILEGE_FAILED cpu_to_le32(0xC0000137)
53662306a36Sopenharmony_ci#define STATUS_ORDINAL_NOT_FOUND cpu_to_le32(0xC0000138)
53762306a36Sopenharmony_ci#define STATUS_ENTRYPOINT_NOT_FOUND cpu_to_le32(0xC0000139)
53862306a36Sopenharmony_ci#define STATUS_CONTROL_C_EXIT cpu_to_le32(0xC000013A)
53962306a36Sopenharmony_ci#define STATUS_LOCAL_DISCONNECT cpu_to_le32(0xC000013B)
54062306a36Sopenharmony_ci#define STATUS_REMOTE_DISCONNECT cpu_to_le32(0xC000013C)
54162306a36Sopenharmony_ci#define STATUS_REMOTE_RESOURCES cpu_to_le32(0xC000013D)
54262306a36Sopenharmony_ci#define STATUS_LINK_FAILED cpu_to_le32(0xC000013E)
54362306a36Sopenharmony_ci#define STATUS_LINK_TIMEOUT cpu_to_le32(0xC000013F)
54462306a36Sopenharmony_ci#define STATUS_INVALID_CONNECTION cpu_to_le32(0xC0000140)
54562306a36Sopenharmony_ci#define STATUS_INVALID_ADDRESS cpu_to_le32(0xC0000141)
54662306a36Sopenharmony_ci#define STATUS_DLL_INIT_FAILED cpu_to_le32(0xC0000142)
54762306a36Sopenharmony_ci#define STATUS_MISSING_SYSTEMFILE cpu_to_le32(0xC0000143)
54862306a36Sopenharmony_ci#define STATUS_UNHANDLED_EXCEPTION cpu_to_le32(0xC0000144)
54962306a36Sopenharmony_ci#define STATUS_APP_INIT_FAILURE cpu_to_le32(0xC0000145)
55062306a36Sopenharmony_ci#define STATUS_PAGEFILE_CREATE_FAILED cpu_to_le32(0xC0000146)
55162306a36Sopenharmony_ci#define STATUS_NO_PAGEFILE cpu_to_le32(0xC0000147)
55262306a36Sopenharmony_ci#define STATUS_INVALID_LEVEL cpu_to_le32(0xC0000148)
55362306a36Sopenharmony_ci#define STATUS_WRONG_PASSWORD_CORE cpu_to_le32(0xC0000149)
55462306a36Sopenharmony_ci#define STATUS_ILLEGAL_FLOAT_CONTEXT cpu_to_le32(0xC000014A)
55562306a36Sopenharmony_ci#define STATUS_PIPE_BROKEN cpu_to_le32(0xC000014B)
55662306a36Sopenharmony_ci#define STATUS_REGISTRY_CORRUPT cpu_to_le32(0xC000014C)
55762306a36Sopenharmony_ci#define STATUS_REGISTRY_IO_FAILED cpu_to_le32(0xC000014D)
55862306a36Sopenharmony_ci#define STATUS_NO_EVENT_PAIR cpu_to_le32(0xC000014E)
55962306a36Sopenharmony_ci#define STATUS_UNRECOGNIZED_VOLUME cpu_to_le32(0xC000014F)
56062306a36Sopenharmony_ci#define STATUS_SERIAL_NO_DEVICE_INITED cpu_to_le32(0xC0000150)
56162306a36Sopenharmony_ci#define STATUS_NO_SUCH_ALIAS cpu_to_le32(0xC0000151)
56262306a36Sopenharmony_ci#define STATUS_MEMBER_NOT_IN_ALIAS cpu_to_le32(0xC0000152)
56362306a36Sopenharmony_ci#define STATUS_MEMBER_IN_ALIAS cpu_to_le32(0xC0000153)
56462306a36Sopenharmony_ci#define STATUS_ALIAS_EXISTS cpu_to_le32(0xC0000154)
56562306a36Sopenharmony_ci#define STATUS_LOGON_NOT_GRANTED cpu_to_le32(0xC0000155)
56662306a36Sopenharmony_ci#define STATUS_TOO_MANY_SECRETS cpu_to_le32(0xC0000156)
56762306a36Sopenharmony_ci#define STATUS_SECRET_TOO_LONG cpu_to_le32(0xC0000157)
56862306a36Sopenharmony_ci#define STATUS_INTERNAL_DB_ERROR cpu_to_le32(0xC0000158)
56962306a36Sopenharmony_ci#define STATUS_FULLSCREEN_MODE cpu_to_le32(0xC0000159)
57062306a36Sopenharmony_ci#define STATUS_TOO_MANY_CONTEXT_IDS cpu_to_le32(0xC000015A)
57162306a36Sopenharmony_ci#define STATUS_LOGON_TYPE_NOT_GRANTED cpu_to_le32(0xC000015B)
57262306a36Sopenharmony_ci#define STATUS_NOT_REGISTRY_FILE cpu_to_le32(0xC000015C)
57362306a36Sopenharmony_ci#define STATUS_NT_CROSS_ENCRYPTION_REQUIRED cpu_to_le32(0xC000015D)
57462306a36Sopenharmony_ci#define STATUS_DOMAIN_CTRLR_CONFIG_ERROR cpu_to_le32(0xC000015E)
57562306a36Sopenharmony_ci#define STATUS_FT_MISSING_MEMBER cpu_to_le32(0xC000015F)
57662306a36Sopenharmony_ci#define STATUS_ILL_FORMED_SERVICE_ENTRY cpu_to_le32(0xC0000160)
57762306a36Sopenharmony_ci#define STATUS_ILLEGAL_CHARACTER cpu_to_le32(0xC0000161)
57862306a36Sopenharmony_ci#define STATUS_UNMAPPABLE_CHARACTER cpu_to_le32(0xC0000162)
57962306a36Sopenharmony_ci#define STATUS_UNDEFINED_CHARACTER cpu_to_le32(0xC0000163)
58062306a36Sopenharmony_ci#define STATUS_FLOPPY_VOLUME cpu_to_le32(0xC0000164)
58162306a36Sopenharmony_ci#define STATUS_FLOPPY_ID_MARK_NOT_FOUND cpu_to_le32(0xC0000165)
58262306a36Sopenharmony_ci#define STATUS_FLOPPY_WRONG_CYLINDER cpu_to_le32(0xC0000166)
58362306a36Sopenharmony_ci#define STATUS_FLOPPY_UNKNOWN_ERROR cpu_to_le32(0xC0000167)
58462306a36Sopenharmony_ci#define STATUS_FLOPPY_BAD_REGISTERS cpu_to_le32(0xC0000168)
58562306a36Sopenharmony_ci#define STATUS_DISK_RECALIBRATE_FAILED cpu_to_le32(0xC0000169)
58662306a36Sopenharmony_ci#define STATUS_DISK_OPERATION_FAILED cpu_to_le32(0xC000016A)
58762306a36Sopenharmony_ci#define STATUS_DISK_RESET_FAILED cpu_to_le32(0xC000016B)
58862306a36Sopenharmony_ci#define STATUS_SHARED_IRQ_BUSY cpu_to_le32(0xC000016C)
58962306a36Sopenharmony_ci#define STATUS_FT_ORPHANING cpu_to_le32(0xC000016D)
59062306a36Sopenharmony_ci#define STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT cpu_to_le32(0xC000016E)
59162306a36Sopenharmony_ci#define STATUS_PARTITION_FAILURE cpu_to_le32(0xC0000172)
59262306a36Sopenharmony_ci#define STATUS_INVALID_BLOCK_LENGTH cpu_to_le32(0xC0000173)
59362306a36Sopenharmony_ci#define STATUS_DEVICE_NOT_PARTITIONED cpu_to_le32(0xC0000174)
59462306a36Sopenharmony_ci#define STATUS_UNABLE_TO_LOCK_MEDIA cpu_to_le32(0xC0000175)
59562306a36Sopenharmony_ci#define STATUS_UNABLE_TO_UNLOAD_MEDIA cpu_to_le32(0xC0000176)
59662306a36Sopenharmony_ci#define STATUS_EOM_OVERFLOW cpu_to_le32(0xC0000177)
59762306a36Sopenharmony_ci#define STATUS_NO_MEDIA cpu_to_le32(0xC0000178)
59862306a36Sopenharmony_ci#define STATUS_NO_SUCH_MEMBER cpu_to_le32(0xC000017A)
59962306a36Sopenharmony_ci#define STATUS_INVALID_MEMBER cpu_to_le32(0xC000017B)
60062306a36Sopenharmony_ci#define STATUS_KEY_DELETED cpu_to_le32(0xC000017C)
60162306a36Sopenharmony_ci#define STATUS_NO_LOG_SPACE cpu_to_le32(0xC000017D)
60262306a36Sopenharmony_ci#define STATUS_TOO_MANY_SIDS cpu_to_le32(0xC000017E)
60362306a36Sopenharmony_ci#define STATUS_LM_CROSS_ENCRYPTION_REQUIRED cpu_to_le32(0xC000017F)
60462306a36Sopenharmony_ci#define STATUS_KEY_HAS_CHILDREN cpu_to_le32(0xC0000180)
60562306a36Sopenharmony_ci#define STATUS_CHILD_MUST_BE_VOLATILE cpu_to_le32(0xC0000181)
60662306a36Sopenharmony_ci#define STATUS_DEVICE_CONFIGURATION_ERROR cpu_to_le32(0xC0000182)
60762306a36Sopenharmony_ci#define STATUS_DRIVER_INTERNAL_ERROR cpu_to_le32(0xC0000183)
60862306a36Sopenharmony_ci#define STATUS_INVALID_DEVICE_STATE cpu_to_le32(0xC0000184)
60962306a36Sopenharmony_ci#define STATUS_IO_DEVICE_ERROR cpu_to_le32(0xC0000185)
61062306a36Sopenharmony_ci#define STATUS_DEVICE_PROTOCOL_ERROR cpu_to_le32(0xC0000186)
61162306a36Sopenharmony_ci#define STATUS_BACKUP_CONTROLLER cpu_to_le32(0xC0000187)
61262306a36Sopenharmony_ci#define STATUS_LOG_FILE_FULL cpu_to_le32(0xC0000188)
61362306a36Sopenharmony_ci#define STATUS_TOO_LATE cpu_to_le32(0xC0000189)
61462306a36Sopenharmony_ci#define STATUS_NO_TRUST_LSA_SECRET cpu_to_le32(0xC000018A)
61562306a36Sopenharmony_ci#define STATUS_NO_TRUST_SAM_ACCOUNT cpu_to_le32(0xC000018B)
61662306a36Sopenharmony_ci#define STATUS_TRUSTED_DOMAIN_FAILURE cpu_to_le32(0xC000018C)
61762306a36Sopenharmony_ci#define STATUS_TRUSTED_RELATIONSHIP_FAILURE cpu_to_le32(0xC000018D)
61862306a36Sopenharmony_ci#define STATUS_EVENTLOG_FILE_CORRUPT cpu_to_le32(0xC000018E)
61962306a36Sopenharmony_ci#define STATUS_EVENTLOG_CANT_START cpu_to_le32(0xC000018F)
62062306a36Sopenharmony_ci#define STATUS_TRUST_FAILURE cpu_to_le32(0xC0000190)
62162306a36Sopenharmony_ci#define STATUS_MUTANT_LIMIT_EXCEEDED cpu_to_le32(0xC0000191)
62262306a36Sopenharmony_ci#define STATUS_NETLOGON_NOT_STARTED cpu_to_le32(0xC0000192)
62362306a36Sopenharmony_ci#define STATUS_ACCOUNT_EXPIRED cpu_to_le32(0xC0000193)
62462306a36Sopenharmony_ci#define STATUS_POSSIBLE_DEADLOCK cpu_to_le32(0xC0000194)
62562306a36Sopenharmony_ci#define STATUS_NETWORK_CREDENTIAL_CONFLICT cpu_to_le32(0xC0000195)
62662306a36Sopenharmony_ci#define STATUS_REMOTE_SESSION_LIMIT cpu_to_le32(0xC0000196)
62762306a36Sopenharmony_ci#define STATUS_EVENTLOG_FILE_CHANGED cpu_to_le32(0xC0000197)
62862306a36Sopenharmony_ci#define STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT cpu_to_le32(0xC0000198)
62962306a36Sopenharmony_ci#define STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT cpu_to_le32(0xC0000199)
63062306a36Sopenharmony_ci#define STATUS_NOLOGON_SERVER_TRUST_ACCOUNT cpu_to_le32(0xC000019A)
63162306a36Sopenharmony_ci#define STATUS_DOMAIN_TRUST_INCONSISTENT cpu_to_le32(0xC000019B)
63262306a36Sopenharmony_ci#define STATUS_FS_DRIVER_REQUIRED cpu_to_le32(0xC000019C)
63362306a36Sopenharmony_ci#define STATUS_IMAGE_ALREADY_LOADED_AS_DLL cpu_to_le32(0xC000019D)
63462306a36Sopenharmony_ci#define STATUS_NETWORK_OPEN_RESTRICTION cpu_to_le32(0xC0000201)
63562306a36Sopenharmony_ci#define STATUS_NO_USER_SESSION_KEY cpu_to_le32(0xC0000202)
63662306a36Sopenharmony_ci#define STATUS_USER_SESSION_DELETED cpu_to_le32(0xC0000203)
63762306a36Sopenharmony_ci#define STATUS_RESOURCE_LANG_NOT_FOUND cpu_to_le32(0xC0000204)
63862306a36Sopenharmony_ci#define STATUS_INSUFF_SERVER_RESOURCES cpu_to_le32(0xC0000205)
63962306a36Sopenharmony_ci#define STATUS_INVALID_BUFFER_SIZE cpu_to_le32(0xC0000206)
64062306a36Sopenharmony_ci#define STATUS_INVALID_ADDRESS_COMPONENT cpu_to_le32(0xC0000207)
64162306a36Sopenharmony_ci#define STATUS_INVALID_ADDRESS_WILDCARD cpu_to_le32(0xC0000208)
64262306a36Sopenharmony_ci#define STATUS_TOO_MANY_ADDRESSES cpu_to_le32(0xC0000209)
64362306a36Sopenharmony_ci#define STATUS_ADDRESS_ALREADY_EXISTS cpu_to_le32(0xC000020A)
64462306a36Sopenharmony_ci#define STATUS_ADDRESS_CLOSED cpu_to_le32(0xC000020B)
64562306a36Sopenharmony_ci#define STATUS_CONNECTION_DISCONNECTED cpu_to_le32(0xC000020C)
64662306a36Sopenharmony_ci#define STATUS_CONNECTION_RESET cpu_to_le32(0xC000020D)
64762306a36Sopenharmony_ci#define STATUS_TOO_MANY_NODES cpu_to_le32(0xC000020E)
64862306a36Sopenharmony_ci#define STATUS_TRANSACTION_ABORTED cpu_to_le32(0xC000020F)
64962306a36Sopenharmony_ci#define STATUS_TRANSACTION_TIMED_OUT cpu_to_le32(0xC0000210)
65062306a36Sopenharmony_ci#define STATUS_TRANSACTION_NO_RELEASE cpu_to_le32(0xC0000211)
65162306a36Sopenharmony_ci#define STATUS_TRANSACTION_NO_MATCH cpu_to_le32(0xC0000212)
65262306a36Sopenharmony_ci#define STATUS_TRANSACTION_RESPONDED cpu_to_le32(0xC0000213)
65362306a36Sopenharmony_ci#define STATUS_TRANSACTION_INVALID_ID cpu_to_le32(0xC0000214)
65462306a36Sopenharmony_ci#define STATUS_TRANSACTION_INVALID_TYPE cpu_to_le32(0xC0000215)
65562306a36Sopenharmony_ci#define STATUS_NOT_SERVER_SESSION cpu_to_le32(0xC0000216)
65662306a36Sopenharmony_ci#define STATUS_NOT_CLIENT_SESSION cpu_to_le32(0xC0000217)
65762306a36Sopenharmony_ci#define STATUS_CANNOT_LOAD_REGISTRY_FILE cpu_to_le32(0xC0000218)
65862306a36Sopenharmony_ci#define STATUS_DEBUG_ATTACH_FAILED cpu_to_le32(0xC0000219)
65962306a36Sopenharmony_ci#define STATUS_SYSTEM_PROCESS_TERMINATED cpu_to_le32(0xC000021A)
66062306a36Sopenharmony_ci#define STATUS_DATA_NOT_ACCEPTED cpu_to_le32(0xC000021B)
66162306a36Sopenharmony_ci#define STATUS_NO_BROWSER_SERVERS_FOUND cpu_to_le32(0xC000021C)
66262306a36Sopenharmony_ci#define STATUS_VDM_HARD_ERROR cpu_to_le32(0xC000021D)
66362306a36Sopenharmony_ci#define STATUS_DRIVER_CANCEL_TIMEOUT cpu_to_le32(0xC000021E)
66462306a36Sopenharmony_ci#define STATUS_REPLY_MESSAGE_MISMATCH cpu_to_le32(0xC000021F)
66562306a36Sopenharmony_ci#define STATUS_MAPPED_ALIGNMENT cpu_to_le32(0xC0000220)
66662306a36Sopenharmony_ci#define STATUS_IMAGE_CHECKSUM_MISMATCH cpu_to_le32(0xC0000221)
66762306a36Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA cpu_to_le32(0xC0000222)
66862306a36Sopenharmony_ci#define STATUS_CLIENT_SERVER_PARAMETERS_INVALID cpu_to_le32(0xC0000223)
66962306a36Sopenharmony_ci#define STATUS_PASSWORD_MUST_CHANGE cpu_to_le32(0xC0000224)
67062306a36Sopenharmony_ci#define STATUS_NOT_FOUND cpu_to_le32(0xC0000225)
67162306a36Sopenharmony_ci#define STATUS_NOT_TINY_STREAM cpu_to_le32(0xC0000226)
67262306a36Sopenharmony_ci#define STATUS_RECOVERY_FAILURE cpu_to_le32(0xC0000227)
67362306a36Sopenharmony_ci#define STATUS_STACK_OVERFLOW_READ cpu_to_le32(0xC0000228)
67462306a36Sopenharmony_ci#define STATUS_FAIL_CHECK cpu_to_le32(0xC0000229)
67562306a36Sopenharmony_ci#define STATUS_DUPLICATE_OBJECTID cpu_to_le32(0xC000022A)
67662306a36Sopenharmony_ci#define STATUS_OBJECTID_EXISTS cpu_to_le32(0xC000022B)
67762306a36Sopenharmony_ci#define STATUS_CONVERT_TO_LARGE cpu_to_le32(0xC000022C)
67862306a36Sopenharmony_ci#define STATUS_RETRY cpu_to_le32(0xC000022D)
67962306a36Sopenharmony_ci#define STATUS_FOUND_OUT_OF_SCOPE cpu_to_le32(0xC000022E)
68062306a36Sopenharmony_ci#define STATUS_ALLOCATE_BUCKET cpu_to_le32(0xC000022F)
68162306a36Sopenharmony_ci#define STATUS_PROPSET_NOT_FOUND cpu_to_le32(0xC0000230)
68262306a36Sopenharmony_ci#define STATUS_MARSHALL_OVERFLOW cpu_to_le32(0xC0000231)
68362306a36Sopenharmony_ci#define STATUS_INVALID_VARIANT cpu_to_le32(0xC0000232)
68462306a36Sopenharmony_ci#define STATUS_DOMAIN_CONTROLLER_NOT_FOUND cpu_to_le32(0xC0000233)
68562306a36Sopenharmony_ci#define STATUS_ACCOUNT_LOCKED_OUT cpu_to_le32(0xC0000234)
68662306a36Sopenharmony_ci#define STATUS_HANDLE_NOT_CLOSABLE cpu_to_le32(0xC0000235)
68762306a36Sopenharmony_ci#define STATUS_CONNECTION_REFUSED cpu_to_le32(0xC0000236)
68862306a36Sopenharmony_ci#define STATUS_GRACEFUL_DISCONNECT cpu_to_le32(0xC0000237)
68962306a36Sopenharmony_ci#define STATUS_ADDRESS_ALREADY_ASSOCIATED cpu_to_le32(0xC0000238)
69062306a36Sopenharmony_ci#define STATUS_ADDRESS_NOT_ASSOCIATED cpu_to_le32(0xC0000239)
69162306a36Sopenharmony_ci#define STATUS_CONNECTION_INVALID cpu_to_le32(0xC000023A)
69262306a36Sopenharmony_ci#define STATUS_CONNECTION_ACTIVE cpu_to_le32(0xC000023B)
69362306a36Sopenharmony_ci#define STATUS_NETWORK_UNREACHABLE cpu_to_le32(0xC000023C)
69462306a36Sopenharmony_ci#define STATUS_HOST_UNREACHABLE cpu_to_le32(0xC000023D)
69562306a36Sopenharmony_ci#define STATUS_PROTOCOL_UNREACHABLE cpu_to_le32(0xC000023E)
69662306a36Sopenharmony_ci#define STATUS_PORT_UNREACHABLE cpu_to_le32(0xC000023F)
69762306a36Sopenharmony_ci#define STATUS_REQUEST_ABORTED cpu_to_le32(0xC0000240)
69862306a36Sopenharmony_ci#define STATUS_CONNECTION_ABORTED cpu_to_le32(0xC0000241)
69962306a36Sopenharmony_ci#define STATUS_BAD_COMPRESSION_BUFFER cpu_to_le32(0xC0000242)
70062306a36Sopenharmony_ci#define STATUS_USER_MAPPED_FILE cpu_to_le32(0xC0000243)
70162306a36Sopenharmony_ci#define STATUS_AUDIT_FAILED cpu_to_le32(0xC0000244)
70262306a36Sopenharmony_ci#define STATUS_TIMER_RESOLUTION_NOT_SET cpu_to_le32(0xC0000245)
70362306a36Sopenharmony_ci#define STATUS_CONNECTION_COUNT_LIMIT cpu_to_le32(0xC0000246)
70462306a36Sopenharmony_ci#define STATUS_LOGIN_TIME_RESTRICTION cpu_to_le32(0xC0000247)
70562306a36Sopenharmony_ci#define STATUS_LOGIN_WKSTA_RESTRICTION cpu_to_le32(0xC0000248)
70662306a36Sopenharmony_ci#define STATUS_IMAGE_MP_UP_MISMATCH cpu_to_le32(0xC0000249)
70762306a36Sopenharmony_ci#define STATUS_INSUFFICIENT_LOGON_INFO cpu_to_le32(0xC0000250)
70862306a36Sopenharmony_ci#define STATUS_BAD_DLL_ENTRYPOINT cpu_to_le32(0xC0000251)
70962306a36Sopenharmony_ci#define STATUS_BAD_SERVICE_ENTRYPOINT cpu_to_le32(0xC0000252)
71062306a36Sopenharmony_ci#define STATUS_LPC_REPLY_LOST cpu_to_le32(0xC0000253)
71162306a36Sopenharmony_ci#define STATUS_IP_ADDRESS_CONFLICT1 cpu_to_le32(0xC0000254)
71262306a36Sopenharmony_ci#define STATUS_IP_ADDRESS_CONFLICT2 cpu_to_le32(0xC0000255)
71362306a36Sopenharmony_ci#define STATUS_REGISTRY_QUOTA_LIMIT cpu_to_le32(0xC0000256)
71462306a36Sopenharmony_ci#define STATUS_PATH_NOT_COVERED cpu_to_le32(0xC0000257)
71562306a36Sopenharmony_ci#define STATUS_NO_CALLBACK_ACTIVE cpu_to_le32(0xC0000258)
71662306a36Sopenharmony_ci#define STATUS_LICENSE_QUOTA_EXCEEDED cpu_to_le32(0xC0000259)
71762306a36Sopenharmony_ci#define STATUS_PWD_TOO_SHORT cpu_to_le32(0xC000025A)
71862306a36Sopenharmony_ci#define STATUS_PWD_TOO_RECENT cpu_to_le32(0xC000025B)
71962306a36Sopenharmony_ci#define STATUS_PWD_HISTORY_CONFLICT cpu_to_le32(0xC000025C)
72062306a36Sopenharmony_ci#define STATUS_PLUGPLAY_NO_DEVICE cpu_to_le32(0xC000025E)
72162306a36Sopenharmony_ci#define STATUS_UNSUPPORTED_COMPRESSION cpu_to_le32(0xC000025F)
72262306a36Sopenharmony_ci#define STATUS_INVALID_HW_PROFILE cpu_to_le32(0xC0000260)
72362306a36Sopenharmony_ci#define STATUS_INVALID_PLUGPLAY_DEVICE_PATH cpu_to_le32(0xC0000261)
72462306a36Sopenharmony_ci#define STATUS_DRIVER_ORDINAL_NOT_FOUND cpu_to_le32(0xC0000262)
72562306a36Sopenharmony_ci#define STATUS_DRIVER_ENTRYPOINT_NOT_FOUND cpu_to_le32(0xC0000263)
72662306a36Sopenharmony_ci#define STATUS_RESOURCE_NOT_OWNED cpu_to_le32(0xC0000264)
72762306a36Sopenharmony_ci#define STATUS_TOO_MANY_LINKS cpu_to_le32(0xC0000265)
72862306a36Sopenharmony_ci#define STATUS_QUOTA_LIST_INCONSISTENT cpu_to_le32(0xC0000266)
72962306a36Sopenharmony_ci#define STATUS_FILE_IS_OFFLINE cpu_to_le32(0xC0000267)
73062306a36Sopenharmony_ci#define STATUS_EVALUATION_EXPIRATION cpu_to_le32(0xC0000268)
73162306a36Sopenharmony_ci#define STATUS_ILLEGAL_DLL_RELOCATION cpu_to_le32(0xC0000269)
73262306a36Sopenharmony_ci#define STATUS_LICENSE_VIOLATION cpu_to_le32(0xC000026A)
73362306a36Sopenharmony_ci#define STATUS_DLL_INIT_FAILED_LOGOFF cpu_to_le32(0xC000026B)
73462306a36Sopenharmony_ci#define STATUS_DRIVER_UNABLE_TO_LOAD cpu_to_le32(0xC000026C)
73562306a36Sopenharmony_ci#define STATUS_DFS_UNAVAILABLE cpu_to_le32(0xC000026D)
73662306a36Sopenharmony_ci#define STATUS_VOLUME_DISMOUNTED cpu_to_le32(0xC000026E)
73762306a36Sopenharmony_ci#define STATUS_WX86_INTERNAL_ERROR cpu_to_le32(0xC000026F)
73862306a36Sopenharmony_ci#define STATUS_WX86_FLOAT_STACK_CHECK cpu_to_le32(0xC0000270)
73962306a36Sopenharmony_ci#define STATUS_VALIDATE_CONTINUE cpu_to_le32(0xC0000271)
74062306a36Sopenharmony_ci#define STATUS_NO_MATCH cpu_to_le32(0xC0000272)
74162306a36Sopenharmony_ci#define STATUS_NO_MORE_MATCHES cpu_to_le32(0xC0000273)
74262306a36Sopenharmony_ci#define STATUS_NOT_A_REPARSE_POINT cpu_to_le32(0xC0000275)
74362306a36Sopenharmony_ci#define STATUS_IO_REPARSE_TAG_INVALID cpu_to_le32(0xC0000276)
74462306a36Sopenharmony_ci#define STATUS_IO_REPARSE_TAG_MISMATCH cpu_to_le32(0xC0000277)
74562306a36Sopenharmony_ci#define STATUS_IO_REPARSE_DATA_INVALID cpu_to_le32(0xC0000278)
74662306a36Sopenharmony_ci#define STATUS_IO_REPARSE_TAG_NOT_HANDLED cpu_to_le32(0xC0000279)
74762306a36Sopenharmony_ci#define STATUS_REPARSE_POINT_NOT_RESOLVED cpu_to_le32(0xC0000280)
74862306a36Sopenharmony_ci#define STATUS_DIRECTORY_IS_A_REPARSE_POINT cpu_to_le32(0xC0000281)
74962306a36Sopenharmony_ci#define STATUS_RANGE_LIST_CONFLICT cpu_to_le32(0xC0000282)
75062306a36Sopenharmony_ci#define STATUS_SOURCE_ELEMENT_EMPTY cpu_to_le32(0xC0000283)
75162306a36Sopenharmony_ci#define STATUS_DESTINATION_ELEMENT_FULL cpu_to_le32(0xC0000284)
75262306a36Sopenharmony_ci#define STATUS_ILLEGAL_ELEMENT_ADDRESS cpu_to_le32(0xC0000285)
75362306a36Sopenharmony_ci#define STATUS_MAGAZINE_NOT_PRESENT cpu_to_le32(0xC0000286)
75462306a36Sopenharmony_ci#define STATUS_REINITIALIZATION_NEEDED cpu_to_le32(0xC0000287)
75562306a36Sopenharmony_ci#define STATUS_ENCRYPTION_FAILED cpu_to_le32(0xC000028A)
75662306a36Sopenharmony_ci#define STATUS_DECRYPTION_FAILED cpu_to_le32(0xC000028B)
75762306a36Sopenharmony_ci#define STATUS_RANGE_NOT_FOUND cpu_to_le32(0xC000028C)
75862306a36Sopenharmony_ci#define STATUS_NO_RECOVERY_POLICY cpu_to_le32(0xC000028D)
75962306a36Sopenharmony_ci#define STATUS_NO_EFS cpu_to_le32(0xC000028E)
76062306a36Sopenharmony_ci#define STATUS_WRONG_EFS cpu_to_le32(0xC000028F)
76162306a36Sopenharmony_ci#define STATUS_NO_USER_KEYS cpu_to_le32(0xC0000290)
76262306a36Sopenharmony_ci#define STATUS_FILE_NOT_ENCRYPTED cpu_to_le32(0xC0000291)
76362306a36Sopenharmony_ci#define STATUS_NOT_EXPORT_FORMAT cpu_to_le32(0xC0000292)
76462306a36Sopenharmony_ci#define STATUS_FILE_ENCRYPTED cpu_to_le32(0xC0000293)
76562306a36Sopenharmony_ci#define STATUS_WMI_GUID_NOT_FOUND cpu_to_le32(0xC0000295)
76662306a36Sopenharmony_ci#define STATUS_WMI_INSTANCE_NOT_FOUND cpu_to_le32(0xC0000296)
76762306a36Sopenharmony_ci#define STATUS_WMI_ITEMID_NOT_FOUND cpu_to_le32(0xC0000297)
76862306a36Sopenharmony_ci#define STATUS_WMI_TRY_AGAIN cpu_to_le32(0xC0000298)
76962306a36Sopenharmony_ci#define STATUS_SHARED_POLICY cpu_to_le32(0xC0000299)
77062306a36Sopenharmony_ci#define STATUS_POLICY_OBJECT_NOT_FOUND cpu_to_le32(0xC000029A)
77162306a36Sopenharmony_ci#define STATUS_POLICY_ONLY_IN_DS cpu_to_le32(0xC000029B)
77262306a36Sopenharmony_ci#define STATUS_VOLUME_NOT_UPGRADED cpu_to_le32(0xC000029C)
77362306a36Sopenharmony_ci#define STATUS_REMOTE_STORAGE_NOT_ACTIVE cpu_to_le32(0xC000029D)
77462306a36Sopenharmony_ci#define STATUS_REMOTE_STORAGE_MEDIA_ERROR cpu_to_le32(0xC000029E)
77562306a36Sopenharmony_ci#define STATUS_NO_TRACKING_SERVICE cpu_to_le32(0xC000029F)
77662306a36Sopenharmony_ci#define STATUS_SERVER_SID_MISMATCH cpu_to_le32(0xC00002A0)
77762306a36Sopenharmony_ci#define STATUS_DS_NO_ATTRIBUTE_OR_VALUE cpu_to_le32(0xC00002A1)
77862306a36Sopenharmony_ci#define STATUS_DS_INVALID_ATTRIBUTE_SYNTAX cpu_to_le32(0xC00002A2)
77962306a36Sopenharmony_ci#define STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED cpu_to_le32(0xC00002A3)
78062306a36Sopenharmony_ci#define STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS cpu_to_le32(0xC00002A4)
78162306a36Sopenharmony_ci#define STATUS_DS_BUSY cpu_to_le32(0xC00002A5)
78262306a36Sopenharmony_ci#define STATUS_DS_UNAVAILABLE cpu_to_le32(0xC00002A6)
78362306a36Sopenharmony_ci#define STATUS_DS_NO_RIDS_ALLOCATED cpu_to_le32(0xC00002A7)
78462306a36Sopenharmony_ci#define STATUS_DS_NO_MORE_RIDS cpu_to_le32(0xC00002A8)
78562306a36Sopenharmony_ci#define STATUS_DS_INCORRECT_ROLE_OWNER cpu_to_le32(0xC00002A9)
78662306a36Sopenharmony_ci#define STATUS_DS_RIDMGR_INIT_ERROR cpu_to_le32(0xC00002AA)
78762306a36Sopenharmony_ci#define STATUS_DS_OBJ_CLASS_VIOLATION cpu_to_le32(0xC00002AB)
78862306a36Sopenharmony_ci#define STATUS_DS_CANT_ON_NON_LEAF cpu_to_le32(0xC00002AC)
78962306a36Sopenharmony_ci#define STATUS_DS_CANT_ON_RDN cpu_to_le32(0xC00002AD)
79062306a36Sopenharmony_ci#define STATUS_DS_CANT_MOD_OBJ_CLASS cpu_to_le32(0xC00002AE)
79162306a36Sopenharmony_ci#define STATUS_DS_CROSS_DOM_MOVE_FAILED cpu_to_le32(0xC00002AF)
79262306a36Sopenharmony_ci#define STATUS_DS_GC_NOT_AVAILABLE cpu_to_le32(0xC00002B0)
79362306a36Sopenharmony_ci#define STATUS_DIRECTORY_SERVICE_REQUIRED cpu_to_le32(0xC00002B1)
79462306a36Sopenharmony_ci#define STATUS_REPARSE_ATTRIBUTE_CONFLICT cpu_to_le32(0xC00002B2)
79562306a36Sopenharmony_ci#define STATUS_CANT_ENABLE_DENY_ONLY cpu_to_le32(0xC00002B3)
79662306a36Sopenharmony_ci#define STATUS_FLOAT_MULTIPLE_FAULTS cpu_to_le32(0xC00002B4)
79762306a36Sopenharmony_ci#define STATUS_FLOAT_MULTIPLE_TRAPS cpu_to_le32(0xC00002B5)
79862306a36Sopenharmony_ci#define STATUS_DEVICE_REMOVED cpu_to_le32(0xC00002B6)
79962306a36Sopenharmony_ci#define STATUS_JOURNAL_DELETE_IN_PROGRESS cpu_to_le32(0xC00002B7)
80062306a36Sopenharmony_ci#define STATUS_JOURNAL_NOT_ACTIVE cpu_to_le32(0xC00002B8)
80162306a36Sopenharmony_ci#define STATUS_NOINTERFACE cpu_to_le32(0xC00002B9)
80262306a36Sopenharmony_ci#define STATUS_DS_ADMIN_LIMIT_EXCEEDED cpu_to_le32(0xC00002C1)
80362306a36Sopenharmony_ci#define STATUS_DRIVER_FAILED_SLEEP cpu_to_le32(0xC00002C2)
80462306a36Sopenharmony_ci#define STATUS_MUTUAL_AUTHENTICATION_FAILED cpu_to_le32(0xC00002C3)
80562306a36Sopenharmony_ci#define STATUS_CORRUPT_SYSTEM_FILE cpu_to_le32(0xC00002C4)
80662306a36Sopenharmony_ci#define STATUS_DATATYPE_MISALIGNMENT_ERROR cpu_to_le32(0xC00002C5)
80762306a36Sopenharmony_ci#define STATUS_WMI_READ_ONLY cpu_to_le32(0xC00002C6)
80862306a36Sopenharmony_ci#define STATUS_WMI_SET_FAILURE cpu_to_le32(0xC00002C7)
80962306a36Sopenharmony_ci#define STATUS_COMMITMENT_MINIMUM cpu_to_le32(0xC00002C8)
81062306a36Sopenharmony_ci#define STATUS_REG_NAT_CONSUMPTION cpu_to_le32(0xC00002C9)
81162306a36Sopenharmony_ci#define STATUS_TRANSPORT_FULL cpu_to_le32(0xC00002CA)
81262306a36Sopenharmony_ci#define STATUS_DS_SAM_INIT_FAILURE cpu_to_le32(0xC00002CB)
81362306a36Sopenharmony_ci#define STATUS_ONLY_IF_CONNECTED cpu_to_le32(0xC00002CC)
81462306a36Sopenharmony_ci#define STATUS_DS_SENSITIVE_GROUP_VIOLATION cpu_to_le32(0xC00002CD)
81562306a36Sopenharmony_ci#define STATUS_PNP_RESTART_ENUMERATION cpu_to_le32(0xC00002CE)
81662306a36Sopenharmony_ci#define STATUS_JOURNAL_ENTRY_DELETED cpu_to_le32(0xC00002CF)
81762306a36Sopenharmony_ci#define STATUS_DS_CANT_MOD_PRIMARYGROUPID cpu_to_le32(0xC00002D0)
81862306a36Sopenharmony_ci#define STATUS_SYSTEM_IMAGE_BAD_SIGNATURE cpu_to_le32(0xC00002D1)
81962306a36Sopenharmony_ci#define STATUS_PNP_REBOOT_REQUIRED cpu_to_le32(0xC00002D2)
82062306a36Sopenharmony_ci#define STATUS_POWER_STATE_INVALID cpu_to_le32(0xC00002D3)
82162306a36Sopenharmony_ci#define STATUS_DS_INVALID_GROUP_TYPE cpu_to_le32(0xC00002D4)
82262306a36Sopenharmony_ci#define STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN cpu_to_le32(0xC00002D5)
82362306a36Sopenharmony_ci#define STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN cpu_to_le32(0xC00002D6)
82462306a36Sopenharmony_ci#define STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER cpu_to_le32(0xC00002D7)
82562306a36Sopenharmony_ci#define STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER cpu_to_le32(0xC00002D8)
82662306a36Sopenharmony_ci#define STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER cpu_to_le32(0xC00002D9)
82762306a36Sopenharmony_ci#define STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER cpu_to_le32(0xC00002DA)
82862306a36Sopenharmony_ci#define STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER cpu_to_le32(0xC00002DB)
82962306a36Sopenharmony_ci#define STATUS_DS_HAVE_PRIMARY_MEMBERS cpu_to_le32(0xC00002DC)
83062306a36Sopenharmony_ci#define STATUS_WMI_NOT_SUPPORTED cpu_to_le32(0xC00002DD)
83162306a36Sopenharmony_ci#define STATUS_INSUFFICIENT_POWER cpu_to_le32(0xC00002DE)
83262306a36Sopenharmony_ci#define STATUS_SAM_NEED_BOOTKEY_PASSWORD cpu_to_le32(0xC00002DF)
83362306a36Sopenharmony_ci#define STATUS_SAM_NEED_BOOTKEY_FLOPPY cpu_to_le32(0xC00002E0)
83462306a36Sopenharmony_ci#define STATUS_DS_CANT_START cpu_to_le32(0xC00002E1)
83562306a36Sopenharmony_ci#define STATUS_DS_INIT_FAILURE cpu_to_le32(0xC00002E2)
83662306a36Sopenharmony_ci#define STATUS_SAM_INIT_FAILURE cpu_to_le32(0xC00002E3)
83762306a36Sopenharmony_ci#define STATUS_DS_GC_REQUIRED cpu_to_le32(0xC00002E4)
83862306a36Sopenharmony_ci#define STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY cpu_to_le32(0xC00002E5)
83962306a36Sopenharmony_ci#define STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS cpu_to_le32(0xC00002E6)
84062306a36Sopenharmony_ci#define STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED cpu_to_le32(0xC00002E7)
84162306a36Sopenharmony_ci#define STATUS_MULTIPLE_FAULT_VIOLATION cpu_to_le32(0xC00002E8)
84262306a36Sopenharmony_ci#define STATUS_CURRENT_DOMAIN_NOT_ALLOWED cpu_to_le32(0xC00002E9)
84362306a36Sopenharmony_ci#define STATUS_CANNOT_MAKE cpu_to_le32(0xC00002EA)
84462306a36Sopenharmony_ci#define STATUS_SYSTEM_SHUTDOWN cpu_to_le32(0xC00002EB)
84562306a36Sopenharmony_ci#define STATUS_DS_INIT_FAILURE_CONSOLE cpu_to_le32(0xC00002EC)
84662306a36Sopenharmony_ci#define STATUS_DS_SAM_INIT_FAILURE_CONSOLE cpu_to_le32(0xC00002ED)
84762306a36Sopenharmony_ci#define STATUS_UNFINISHED_CONTEXT_DELETED cpu_to_le32(0xC00002EE)
84862306a36Sopenharmony_ci#define STATUS_NO_TGT_REPLY cpu_to_le32(0xC00002EF)
84962306a36Sopenharmony_ci#define STATUS_OBJECTID_NOT_FOUND cpu_to_le32(0xC00002F0)
85062306a36Sopenharmony_ci#define STATUS_NO_IP_ADDRESSES cpu_to_le32(0xC00002F1)
85162306a36Sopenharmony_ci#define STATUS_WRONG_CREDENTIAL_HANDLE cpu_to_le32(0xC00002F2)
85262306a36Sopenharmony_ci#define STATUS_CRYPTO_SYSTEM_INVALID cpu_to_le32(0xC00002F3)
85362306a36Sopenharmony_ci#define STATUS_MAX_REFERRALS_EXCEEDED cpu_to_le32(0xC00002F4)
85462306a36Sopenharmony_ci#define STATUS_MUST_BE_KDC cpu_to_le32(0xC00002F5)
85562306a36Sopenharmony_ci#define STATUS_STRONG_CRYPTO_NOT_SUPPORTED cpu_to_le32(0xC00002F6)
85662306a36Sopenharmony_ci#define STATUS_TOO_MANY_PRINCIPALS cpu_to_le32(0xC00002F7)
85762306a36Sopenharmony_ci#define STATUS_NO_PA_DATA cpu_to_le32(0xC00002F8)
85862306a36Sopenharmony_ci#define STATUS_PKINIT_NAME_MISMATCH cpu_to_le32(0xC00002F9)
85962306a36Sopenharmony_ci#define STATUS_SMARTCARD_LOGON_REQUIRED cpu_to_le32(0xC00002FA)
86062306a36Sopenharmony_ci#define STATUS_KDC_INVALID_REQUEST cpu_to_le32(0xC00002FB)
86162306a36Sopenharmony_ci#define STATUS_KDC_UNABLE_TO_REFER cpu_to_le32(0xC00002FC)
86262306a36Sopenharmony_ci#define STATUS_KDC_UNKNOWN_ETYPE cpu_to_le32(0xC00002FD)
86362306a36Sopenharmony_ci#define STATUS_SHUTDOWN_IN_PROGRESS cpu_to_le32(0xC00002FE)
86462306a36Sopenharmony_ci#define STATUS_SERVER_SHUTDOWN_IN_PROGRESS cpu_to_le32(0xC00002FF)
86562306a36Sopenharmony_ci#define STATUS_NOT_SUPPORTED_ON_SBS cpu_to_le32(0xC0000300)
86662306a36Sopenharmony_ci#define STATUS_WMI_GUID_DISCONNECTED cpu_to_le32(0xC0000301)
86762306a36Sopenharmony_ci#define STATUS_WMI_ALREADY_DISABLED cpu_to_le32(0xC0000302)
86862306a36Sopenharmony_ci#define STATUS_WMI_ALREADY_ENABLED cpu_to_le32(0xC0000303)
86962306a36Sopenharmony_ci#define STATUS_MFT_TOO_FRAGMENTED cpu_to_le32(0xC0000304)
87062306a36Sopenharmony_ci#define STATUS_COPY_PROTECTION_FAILURE cpu_to_le32(0xC0000305)
87162306a36Sopenharmony_ci#define STATUS_CSS_AUTHENTICATION_FAILURE cpu_to_le32(0xC0000306)
87262306a36Sopenharmony_ci#define STATUS_CSS_KEY_NOT_PRESENT cpu_to_le32(0xC0000307)
87362306a36Sopenharmony_ci#define STATUS_CSS_KEY_NOT_ESTABLISHED cpu_to_le32(0xC0000308)
87462306a36Sopenharmony_ci#define STATUS_CSS_SCRAMBLED_SECTOR cpu_to_le32(0xC0000309)
87562306a36Sopenharmony_ci#define STATUS_CSS_REGION_MISMATCH cpu_to_le32(0xC000030A)
87662306a36Sopenharmony_ci#define STATUS_CSS_RESETS_EXHAUSTED cpu_to_le32(0xC000030B)
87762306a36Sopenharmony_ci#define STATUS_PKINIT_FAILURE cpu_to_le32(0xC0000320)
87862306a36Sopenharmony_ci#define STATUS_SMARTCARD_SUBSYSTEM_FAILURE cpu_to_le32(0xC0000321)
87962306a36Sopenharmony_ci#define STATUS_NO_KERB_KEY cpu_to_le32(0xC0000322)
88062306a36Sopenharmony_ci#define STATUS_HOST_DOWN cpu_to_le32(0xC0000350)
88162306a36Sopenharmony_ci#define STATUS_UNSUPPORTED_PREAUTH cpu_to_le32(0xC0000351)
88262306a36Sopenharmony_ci#define STATUS_EFS_ALG_BLOB_TOO_BIG cpu_to_le32(0xC0000352)
88362306a36Sopenharmony_ci#define STATUS_PORT_NOT_SET cpu_to_le32(0xC0000353)
88462306a36Sopenharmony_ci#define STATUS_DEBUGGER_INACTIVE cpu_to_le32(0xC0000354)
88562306a36Sopenharmony_ci#define STATUS_DS_VERSION_CHECK_FAILURE cpu_to_le32(0xC0000355)
88662306a36Sopenharmony_ci#define STATUS_AUDITING_DISABLED cpu_to_le32(0xC0000356)
88762306a36Sopenharmony_ci#define STATUS_PRENT4_MACHINE_ACCOUNT cpu_to_le32(0xC0000357)
88862306a36Sopenharmony_ci#define STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER cpu_to_le32(0xC0000358)
88962306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_WIN_32 cpu_to_le32(0xC0000359)
89062306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_WIN_64 cpu_to_le32(0xC000035A)
89162306a36Sopenharmony_ci#define STATUS_BAD_BINDINGS cpu_to_le32(0xC000035B)
89262306a36Sopenharmony_ci#define STATUS_NETWORK_SESSION_EXPIRED cpu_to_le32(0xC000035C)
89362306a36Sopenharmony_ci#define STATUS_APPHELP_BLOCK cpu_to_le32(0xC000035D)
89462306a36Sopenharmony_ci#define STATUS_ALL_SIDS_FILTERED cpu_to_le32(0xC000035E)
89562306a36Sopenharmony_ci#define STATUS_NOT_SAFE_MODE_DRIVER cpu_to_le32(0xC000035F)
89662306a36Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT cpu_to_le32(0xC0000361)
89762306a36Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_PATH cpu_to_le32(0xC0000362)
89862306a36Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER cpu_to_le32(0xC0000363)
89962306a36Sopenharmony_ci#define STATUS_ACCESS_DISABLED_BY_POLICY_OTHER cpu_to_le32(0xC0000364)
90062306a36Sopenharmony_ci#define STATUS_FAILED_DRIVER_ENTRY cpu_to_le32(0xC0000365)
90162306a36Sopenharmony_ci#define STATUS_DEVICE_ENUMERATION_ERROR cpu_to_le32(0xC0000366)
90262306a36Sopenharmony_ci#define STATUS_MOUNT_POINT_NOT_RESOLVED cpu_to_le32(0xC0000368)
90362306a36Sopenharmony_ci#define STATUS_INVALID_DEVICE_OBJECT_PARAMETER cpu_to_le32(0xC0000369)
90462306a36Sopenharmony_ci#define STATUS_MCA_OCCURED cpu_to_le32(0xC000036A)
90562306a36Sopenharmony_ci#define STATUS_DRIVER_BLOCKED_CRITICAL cpu_to_le32(0xC000036B)
90662306a36Sopenharmony_ci#define STATUS_DRIVER_BLOCKED cpu_to_le32(0xC000036C)
90762306a36Sopenharmony_ci#define STATUS_DRIVER_DATABASE_ERROR cpu_to_le32(0xC000036D)
90862306a36Sopenharmony_ci#define STATUS_SYSTEM_HIVE_TOO_LARGE cpu_to_le32(0xC000036E)
90962306a36Sopenharmony_ci#define STATUS_INVALID_IMPORT_OF_NON_DLL cpu_to_le32(0xC000036F)
91062306a36Sopenharmony_ci#define STATUS_NO_SECRETS cpu_to_le32(0xC0000371)
91162306a36Sopenharmony_ci#define STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY cpu_to_le32(0xC0000372)
91262306a36Sopenharmony_ci#define STATUS_FAILED_STACK_SWITCH cpu_to_le32(0xC0000373)
91362306a36Sopenharmony_ci#define STATUS_HEAP_CORRUPTION cpu_to_le32(0xC0000374)
91462306a36Sopenharmony_ci#define STATUS_SMARTCARD_WRONG_PIN cpu_to_le32(0xC0000380)
91562306a36Sopenharmony_ci#define STATUS_SMARTCARD_CARD_BLOCKED cpu_to_le32(0xC0000381)
91662306a36Sopenharmony_ci#define STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED cpu_to_le32(0xC0000382)
91762306a36Sopenharmony_ci#define STATUS_SMARTCARD_NO_CARD cpu_to_le32(0xC0000383)
91862306a36Sopenharmony_ci#define STATUS_SMARTCARD_NO_KEY_CONTAINER cpu_to_le32(0xC0000384)
91962306a36Sopenharmony_ci#define STATUS_SMARTCARD_NO_CERTIFICATE cpu_to_le32(0xC0000385)
92062306a36Sopenharmony_ci#define STATUS_SMARTCARD_NO_KEYSET cpu_to_le32(0xC0000386)
92162306a36Sopenharmony_ci#define STATUS_SMARTCARD_IO_ERROR cpu_to_le32(0xC0000387)
92262306a36Sopenharmony_ci#define STATUS_DOWNGRADE_DETECTED cpu_to_le32(0xC0000388)
92362306a36Sopenharmony_ci#define STATUS_SMARTCARD_CERT_REVOKED cpu_to_le32(0xC0000389)
92462306a36Sopenharmony_ci#define STATUS_ISSUING_CA_UNTRUSTED cpu_to_le32(0xC000038A)
92562306a36Sopenharmony_ci#define STATUS_REVOCATION_OFFLINE_C cpu_to_le32(0xC000038B)
92662306a36Sopenharmony_ci#define STATUS_PKINIT_CLIENT_FAILURE cpu_to_le32(0xC000038C)
92762306a36Sopenharmony_ci#define STATUS_SMARTCARD_CERT_EXPIRED cpu_to_le32(0xC000038D)
92862306a36Sopenharmony_ci#define STATUS_DRIVER_FAILED_PRIOR_UNLOAD cpu_to_le32(0xC000038E)
92962306a36Sopenharmony_ci#define STATUS_SMARTCARD_SILENT_CONTEXT cpu_to_le32(0xC000038F)
93062306a36Sopenharmony_ci#define STATUS_PER_USER_TRUST_QUOTA_EXCEEDED cpu_to_le32(0xC0000401)
93162306a36Sopenharmony_ci#define STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED cpu_to_le32(0xC0000402)
93262306a36Sopenharmony_ci#define STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED cpu_to_le32(0xC0000403)
93362306a36Sopenharmony_ci#define STATUS_DS_NAME_NOT_UNIQUE cpu_to_le32(0xC0000404)
93462306a36Sopenharmony_ci#define STATUS_DS_DUPLICATE_ID_FOUND cpu_to_le32(0xC0000405)
93562306a36Sopenharmony_ci#define STATUS_DS_GROUP_CONVERSION_ERROR cpu_to_le32(0xC0000406)
93662306a36Sopenharmony_ci#define STATUS_VOLSNAP_PREPARE_HIBERNATE cpu_to_le32(0xC0000407)
93762306a36Sopenharmony_ci#define STATUS_USER2USER_REQUIRED cpu_to_le32(0xC0000408)
93862306a36Sopenharmony_ci#define STATUS_STACK_BUFFER_OVERRUN cpu_to_le32(0xC0000409)
93962306a36Sopenharmony_ci#define STATUS_NO_S4U_PROT_SUPPORT cpu_to_le32(0xC000040A)
94062306a36Sopenharmony_ci#define STATUS_CROSSREALM_DELEGATION_FAILURE cpu_to_le32(0xC000040B)
94162306a36Sopenharmony_ci#define STATUS_REVOCATION_OFFLINE_KDC cpu_to_le32(0xC000040C)
94262306a36Sopenharmony_ci#define STATUS_ISSUING_CA_UNTRUSTED_KDC cpu_to_le32(0xC000040D)
94362306a36Sopenharmony_ci#define STATUS_KDC_CERT_EXPIRED cpu_to_le32(0xC000040E)
94462306a36Sopenharmony_ci#define STATUS_KDC_CERT_REVOKED cpu_to_le32(0xC000040F)
94562306a36Sopenharmony_ci#define STATUS_PARAMETER_QUOTA_EXCEEDED cpu_to_le32(0xC0000410)
94662306a36Sopenharmony_ci#define STATUS_HIBERNATION_FAILURE cpu_to_le32(0xC0000411)
94762306a36Sopenharmony_ci#define STATUS_DELAY_LOAD_FAILED cpu_to_le32(0xC0000412)
94862306a36Sopenharmony_ci#define STATUS_AUTHENTICATION_FIREWALL_FAILED cpu_to_le32(0xC0000413)
94962306a36Sopenharmony_ci#define STATUS_VDM_DISALLOWED cpu_to_le32(0xC0000414)
95062306a36Sopenharmony_ci#define STATUS_HUNG_DISPLAY_DRIVER_THREAD cpu_to_le32(0xC0000415)
95162306a36Sopenharmony_ci#define STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE cpu_to_le32(0xC0000416)
95262306a36Sopenharmony_ci#define STATUS_INVALID_CRUNTIME_PARAMETER cpu_to_le32(0xC0000417)
95362306a36Sopenharmony_ci#define STATUS_NTLM_BLOCKED cpu_to_le32(0xC0000418)
95462306a36Sopenharmony_ci#define STATUS_ASSERTION_FAILURE cpu_to_le32(0xC0000420)
95562306a36Sopenharmony_ci#define STATUS_VERIFIER_STOP cpu_to_le32(0xC0000421)
95662306a36Sopenharmony_ci#define STATUS_CALLBACK_POP_STACK cpu_to_le32(0xC0000423)
95762306a36Sopenharmony_ci#define STATUS_INCOMPATIBLE_DRIVER_BLOCKED cpu_to_le32(0xC0000424)
95862306a36Sopenharmony_ci#define STATUS_HIVE_UNLOADED cpu_to_le32(0xC0000425)
95962306a36Sopenharmony_ci#define STATUS_COMPRESSION_DISABLED cpu_to_le32(0xC0000426)
96062306a36Sopenharmony_ci#define STATUS_FILE_SYSTEM_LIMITATION cpu_to_le32(0xC0000427)
96162306a36Sopenharmony_ci#define STATUS_INVALID_IMAGE_HASH cpu_to_le32(0xC0000428)
96262306a36Sopenharmony_ci#define STATUS_NOT_CAPABLE cpu_to_le32(0xC0000429)
96362306a36Sopenharmony_ci#define STATUS_REQUEST_OUT_OF_SEQUENCE cpu_to_le32(0xC000042A)
96462306a36Sopenharmony_ci#define STATUS_IMPLEMENTATION_LIMIT cpu_to_le32(0xC000042B)
96562306a36Sopenharmony_ci#define STATUS_ELEVATION_REQUIRED cpu_to_le32(0xC000042C)
96662306a36Sopenharmony_ci#define STATUS_BEYOND_VDL cpu_to_le32(0xC0000432)
96762306a36Sopenharmony_ci#define STATUS_ENCOUNTERED_WRITE_IN_PROGRESS cpu_to_le32(0xC0000433)
96862306a36Sopenharmony_ci#define STATUS_PTE_CHANGED cpu_to_le32(0xC0000434)
96962306a36Sopenharmony_ci#define STATUS_PURGE_FAILED cpu_to_le32(0xC0000435)
97062306a36Sopenharmony_ci#define STATUS_CRED_REQUIRES_CONFIRMATION cpu_to_le32(0xC0000440)
97162306a36Sopenharmony_ci#define STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE cpu_to_le32(0xC0000441)
97262306a36Sopenharmony_ci#define STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER cpu_to_le32(0xC0000442)
97362306a36Sopenharmony_ci#define STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE cpu_to_le32(0xC0000443)
97462306a36Sopenharmony_ci#define STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE cpu_to_le32(0xC0000444)
97562306a36Sopenharmony_ci#define STATUS_CS_ENCRYPTION_FILE_NOT_CSE cpu_to_le32(0xC0000445)
97662306a36Sopenharmony_ci#define STATUS_INVALID_LABEL cpu_to_le32(0xC0000446)
97762306a36Sopenharmony_ci#define STATUS_DRIVER_PROCESS_TERMINATED cpu_to_le32(0xC0000450)
97862306a36Sopenharmony_ci#define STATUS_AMBIGUOUS_SYSTEM_DEVICE cpu_to_le32(0xC0000451)
97962306a36Sopenharmony_ci#define STATUS_SYSTEM_DEVICE_NOT_FOUND cpu_to_le32(0xC0000452)
98062306a36Sopenharmony_ci#define STATUS_RESTART_BOOT_APPLICATION cpu_to_le32(0xC0000453)
98162306a36Sopenharmony_ci#define STATUS_INVALID_TASK_NAME cpu_to_le32(0xC0000500)
98262306a36Sopenharmony_ci#define STATUS_INVALID_TASK_INDEX cpu_to_le32(0xC0000501)
98362306a36Sopenharmony_ci#define STATUS_THREAD_ALREADY_IN_TASK cpu_to_le32(0xC0000502)
98462306a36Sopenharmony_ci#define STATUS_CALLBACK_BYPASS cpu_to_le32(0xC0000503)
98562306a36Sopenharmony_ci#define STATUS_PORT_CLOSED cpu_to_le32(0xC0000700)
98662306a36Sopenharmony_ci#define STATUS_MESSAGE_LOST cpu_to_le32(0xC0000701)
98762306a36Sopenharmony_ci#define STATUS_INVALID_MESSAGE cpu_to_le32(0xC0000702)
98862306a36Sopenharmony_ci#define STATUS_REQUEST_CANCELED cpu_to_le32(0xC0000703)
98962306a36Sopenharmony_ci#define STATUS_RECURSIVE_DISPATCH cpu_to_le32(0xC0000704)
99062306a36Sopenharmony_ci#define STATUS_LPC_RECEIVE_BUFFER_EXPECTED cpu_to_le32(0xC0000705)
99162306a36Sopenharmony_ci#define STATUS_LPC_INVALID_CONNECTION_USAGE cpu_to_le32(0xC0000706)
99262306a36Sopenharmony_ci#define STATUS_LPC_REQUESTS_NOT_ALLOWED cpu_to_le32(0xC0000707)
99362306a36Sopenharmony_ci#define STATUS_RESOURCE_IN_USE cpu_to_le32(0xC0000708)
99462306a36Sopenharmony_ci#define STATUS_HARDWARE_MEMORY_ERROR cpu_to_le32(0xC0000709)
99562306a36Sopenharmony_ci#define STATUS_THREADPOOL_HANDLE_EXCEPTION cpu_to_le32(0xC000070A)
99662306a36Sopenharmony_ci#define STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED cpu_to_le32(0xC000070B)
99762306a36Sopenharmony_ci#define STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED cpu_to_le32(0xC000070C)
99862306a36Sopenharmony_ci#define STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED cpu_to_le32(0xC000070D)
99962306a36Sopenharmony_ci#define STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED cpu_to_le32(0xC000070E)
100062306a36Sopenharmony_ci#define STATUS_THREADPOOL_RELEASED_DURING_OPERATION cpu_to_le32(0xC000070F)
100162306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING cpu_to_le32(0xC0000710)
100262306a36Sopenharmony_ci#define STATUS_APC_RETURNED_WHILE_IMPERSONATING cpu_to_le32(0xC0000711)
100362306a36Sopenharmony_ci#define STATUS_PROCESS_IS_PROTECTED cpu_to_le32(0xC0000712)
100462306a36Sopenharmony_ci#define STATUS_MCA_EXCEPTION cpu_to_le32(0xC0000713)
100562306a36Sopenharmony_ci#define STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE cpu_to_le32(0xC0000714)
100662306a36Sopenharmony_ci#define STATUS_SYMLINK_CLASS_DISABLED cpu_to_le32(0xC0000715)
100762306a36Sopenharmony_ci#define STATUS_INVALID_IDN_NORMALIZATION cpu_to_le32(0xC0000716)
100862306a36Sopenharmony_ci#define STATUS_NO_UNICODE_TRANSLATION cpu_to_le32(0xC0000717)
100962306a36Sopenharmony_ci#define STATUS_ALREADY_REGISTERED cpu_to_le32(0xC0000718)
101062306a36Sopenharmony_ci#define STATUS_CONTEXT_MISMATCH cpu_to_le32(0xC0000719)
101162306a36Sopenharmony_ci#define STATUS_PORT_ALREADY_HAS_COMPLETION_LIST cpu_to_le32(0xC000071A)
101262306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_THREAD_PRIORITY cpu_to_le32(0xC000071B)
101362306a36Sopenharmony_ci#define STATUS_INVALID_THREAD cpu_to_le32(0xC000071C)
101462306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_TRANSACTION cpu_to_le32(0xC000071D)
101562306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_LDR_LOCK cpu_to_le32(0xC000071E)
101662306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_LANG cpu_to_le32(0xC000071F)
101762306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_PRI_BACK cpu_to_le32(0xC0000720)
101862306a36Sopenharmony_ci#define STATUS_CALLBACK_RETURNED_THREAD_AFFINITY cpu_to_le32(0xC0000721)
101962306a36Sopenharmony_ci#define STATUS_DISK_REPAIR_DISABLED cpu_to_le32(0xC0000800)
102062306a36Sopenharmony_ci#define STATUS_DS_DOMAIN_RENAME_IN_PROGRESS cpu_to_le32(0xC0000801)
102162306a36Sopenharmony_ci#define STATUS_DISK_QUOTA_EXCEEDED cpu_to_le32(0xC0000802)
102262306a36Sopenharmony_ci#define STATUS_CONTENT_BLOCKED cpu_to_le32(0xC0000804)
102362306a36Sopenharmony_ci#define STATUS_BAD_CLUSTERS cpu_to_le32(0xC0000805)
102462306a36Sopenharmony_ci#define STATUS_VOLUME_DIRTY cpu_to_le32(0xC0000806)
102562306a36Sopenharmony_ci#define STATUS_FILE_CHECKED_OUT cpu_to_le32(0xC0000901)
102662306a36Sopenharmony_ci#define STATUS_CHECKOUT_REQUIRED cpu_to_le32(0xC0000902)
102762306a36Sopenharmony_ci#define STATUS_BAD_FILE_TYPE cpu_to_le32(0xC0000903)
102862306a36Sopenharmony_ci#define STATUS_FILE_TOO_LARGE cpu_to_le32(0xC0000904)
102962306a36Sopenharmony_ci#define STATUS_FORMS_AUTH_REQUIRED cpu_to_le32(0xC0000905)
103062306a36Sopenharmony_ci#define STATUS_VIRUS_INFECTED cpu_to_le32(0xC0000906)
103162306a36Sopenharmony_ci#define STATUS_VIRUS_DELETED cpu_to_le32(0xC0000907)
103262306a36Sopenharmony_ci#define STATUS_BAD_MCFG_TABLE cpu_to_le32(0xC0000908)
103362306a36Sopenharmony_ci#define STATUS_WOW_ASSERTION cpu_to_le32(0xC0009898)
103462306a36Sopenharmony_ci#define STATUS_INVALID_SIGNATURE cpu_to_le32(0xC000A000)
103562306a36Sopenharmony_ci#define STATUS_HMAC_NOT_SUPPORTED cpu_to_le32(0xC000A001)
103662306a36Sopenharmony_ci#define STATUS_IPSEC_QUEUE_OVERFLOW cpu_to_le32(0xC000A010)
103762306a36Sopenharmony_ci#define STATUS_ND_QUEUE_OVERFLOW cpu_to_le32(0xC000A011)
103862306a36Sopenharmony_ci#define STATUS_HOPLIMIT_EXCEEDED cpu_to_le32(0xC000A012)
103962306a36Sopenharmony_ci#define STATUS_PROTOCOL_NOT_SUPPORTED cpu_to_le32(0xC000A013)
104062306a36Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED cpu_to_le32(0xC000A080)
104162306a36Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR cpu_to_le32(0xC000A081)
104262306a36Sopenharmony_ci#define STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR cpu_to_le32(0xC000A082)
104362306a36Sopenharmony_ci#define STATUS_XML_PARSE_ERROR cpu_to_le32(0xC000A083)
104462306a36Sopenharmony_ci#define STATUS_XMLDSIG_ERROR cpu_to_le32(0xC000A084)
104562306a36Sopenharmony_ci#define STATUS_WRONG_COMPARTMENT cpu_to_le32(0xC000A085)
104662306a36Sopenharmony_ci#define STATUS_AUTHIP_FAILURE cpu_to_le32(0xC000A086)
104762306a36Sopenharmony_ci#define DBG_NO_STATE_CHANGE cpu_to_le32(0xC0010001)
104862306a36Sopenharmony_ci#define DBG_APP_NOT_IDLE cpu_to_le32(0xC0010002)
104962306a36Sopenharmony_ci#define RPC_NT_INVALID_STRING_BINDING cpu_to_le32(0xC0020001)
105062306a36Sopenharmony_ci#define RPC_NT_WRONG_KIND_OF_BINDING cpu_to_le32(0xC0020002)
105162306a36Sopenharmony_ci#define RPC_NT_INVALID_BINDING cpu_to_le32(0xC0020003)
105262306a36Sopenharmony_ci#define RPC_NT_PROTSEQ_NOT_SUPPORTED cpu_to_le32(0xC0020004)
105362306a36Sopenharmony_ci#define RPC_NT_INVALID_RPC_PROTSEQ cpu_to_le32(0xC0020005)
105462306a36Sopenharmony_ci#define RPC_NT_INVALID_STRING_UUID cpu_to_le32(0xC0020006)
105562306a36Sopenharmony_ci#define RPC_NT_INVALID_ENDPOINT_FORMAT cpu_to_le32(0xC0020007)
105662306a36Sopenharmony_ci#define RPC_NT_INVALID_NET_ADDR cpu_to_le32(0xC0020008)
105762306a36Sopenharmony_ci#define RPC_NT_NO_ENDPOINT_FOUND cpu_to_le32(0xC0020009)
105862306a36Sopenharmony_ci#define RPC_NT_INVALID_TIMEOUT cpu_to_le32(0xC002000A)
105962306a36Sopenharmony_ci#define RPC_NT_OBJECT_NOT_FOUND cpu_to_le32(0xC002000B)
106062306a36Sopenharmony_ci#define RPC_NT_ALREADY_REGISTERED cpu_to_le32(0xC002000C)
106162306a36Sopenharmony_ci#define RPC_NT_TYPE_ALREADY_REGISTERED cpu_to_le32(0xC002000D)
106262306a36Sopenharmony_ci#define RPC_NT_ALREADY_LISTENING cpu_to_le32(0xC002000E)
106362306a36Sopenharmony_ci#define RPC_NT_NO_PROTSEQS_REGISTERED cpu_to_le32(0xC002000F)
106462306a36Sopenharmony_ci#define RPC_NT_NOT_LISTENING cpu_to_le32(0xC0020010)
106562306a36Sopenharmony_ci#define RPC_NT_UNKNOWN_MGR_TYPE cpu_to_le32(0xC0020011)
106662306a36Sopenharmony_ci#define RPC_NT_UNKNOWN_IF cpu_to_le32(0xC0020012)
106762306a36Sopenharmony_ci#define RPC_NT_NO_BINDINGS cpu_to_le32(0xC0020013)
106862306a36Sopenharmony_ci#define RPC_NT_NO_PROTSEQS cpu_to_le32(0xC0020014)
106962306a36Sopenharmony_ci#define RPC_NT_CANT_CREATE_ENDPOINT cpu_to_le32(0xC0020015)
107062306a36Sopenharmony_ci#define RPC_NT_OUT_OF_RESOURCES cpu_to_le32(0xC0020016)
107162306a36Sopenharmony_ci#define RPC_NT_SERVER_UNAVAILABLE cpu_to_le32(0xC0020017)
107262306a36Sopenharmony_ci#define RPC_NT_SERVER_TOO_BUSY cpu_to_le32(0xC0020018)
107362306a36Sopenharmony_ci#define RPC_NT_INVALID_NETWORK_OPTIONS cpu_to_le32(0xC0020019)
107462306a36Sopenharmony_ci#define RPC_NT_NO_CALL_ACTIVE cpu_to_le32(0xC002001A)
107562306a36Sopenharmony_ci#define RPC_NT_CALL_FAILED cpu_to_le32(0xC002001B)
107662306a36Sopenharmony_ci#define RPC_NT_CALL_FAILED_DNE cpu_to_le32(0xC002001C)
107762306a36Sopenharmony_ci#define RPC_NT_PROTOCOL_ERROR cpu_to_le32(0xC002001D)
107862306a36Sopenharmony_ci#define RPC_NT_UNSUPPORTED_TRANS_SYN cpu_to_le32(0xC002001F)
107962306a36Sopenharmony_ci#define RPC_NT_UNSUPPORTED_TYPE cpu_to_le32(0xC0020021)
108062306a36Sopenharmony_ci#define RPC_NT_INVALID_TAG cpu_to_le32(0xC0020022)
108162306a36Sopenharmony_ci#define RPC_NT_INVALID_BOUND cpu_to_le32(0xC0020023)
108262306a36Sopenharmony_ci#define RPC_NT_NO_ENTRY_NAME cpu_to_le32(0xC0020024)
108362306a36Sopenharmony_ci#define RPC_NT_INVALID_NAME_SYNTAX cpu_to_le32(0xC0020025)
108462306a36Sopenharmony_ci#define RPC_NT_UNSUPPORTED_NAME_SYNTAX cpu_to_le32(0xC0020026)
108562306a36Sopenharmony_ci#define RPC_NT_UUID_NO_ADDRESS cpu_to_le32(0xC0020028)
108662306a36Sopenharmony_ci#define RPC_NT_DUPLICATE_ENDPOINT cpu_to_le32(0xC0020029)
108762306a36Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHN_TYPE cpu_to_le32(0xC002002A)
108862306a36Sopenharmony_ci#define RPC_NT_MAX_CALLS_TOO_SMALL cpu_to_le32(0xC002002B)
108962306a36Sopenharmony_ci#define RPC_NT_STRING_TOO_LONG cpu_to_le32(0xC002002C)
109062306a36Sopenharmony_ci#define RPC_NT_PROTSEQ_NOT_FOUND cpu_to_le32(0xC002002D)
109162306a36Sopenharmony_ci#define RPC_NT_PROCNUM_OUT_OF_RANGE cpu_to_le32(0xC002002E)
109262306a36Sopenharmony_ci#define RPC_NT_BINDING_HAS_NO_AUTH cpu_to_le32(0xC002002F)
109362306a36Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHN_SERVICE cpu_to_le32(0xC0020030)
109462306a36Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHN_LEVEL cpu_to_le32(0xC0020031)
109562306a36Sopenharmony_ci#define RPC_NT_INVALID_AUTH_IDENTITY cpu_to_le32(0xC0020032)
109662306a36Sopenharmony_ci#define RPC_NT_UNKNOWN_AUTHZ_SERVICE cpu_to_le32(0xC0020033)
109762306a36Sopenharmony_ci#define EPT_NT_INVALID_ENTRY cpu_to_le32(0xC0020034)
109862306a36Sopenharmony_ci#define EPT_NT_CANT_PERFORM_OP cpu_to_le32(0xC0020035)
109962306a36Sopenharmony_ci#define EPT_NT_NOT_REGISTERED cpu_to_le32(0xC0020036)
110062306a36Sopenharmony_ci#define RPC_NT_NOTHING_TO_EXPORT cpu_to_le32(0xC0020037)
110162306a36Sopenharmony_ci#define RPC_NT_INCOMPLETE_NAME cpu_to_le32(0xC0020038)
110262306a36Sopenharmony_ci#define RPC_NT_INVALID_VERS_OPTION cpu_to_le32(0xC0020039)
110362306a36Sopenharmony_ci#define RPC_NT_NO_MORE_MEMBERS cpu_to_le32(0xC002003A)
110462306a36Sopenharmony_ci#define RPC_NT_NOT_ALL_OBJS_UNEXPORTED cpu_to_le32(0xC002003B)
110562306a36Sopenharmony_ci#define RPC_NT_INTERFACE_NOT_FOUND cpu_to_le32(0xC002003C)
110662306a36Sopenharmony_ci#define RPC_NT_ENTRY_ALREADY_EXISTS cpu_to_le32(0xC002003D)
110762306a36Sopenharmony_ci#define RPC_NT_ENTRY_NOT_FOUND cpu_to_le32(0xC002003E)
110862306a36Sopenharmony_ci#define RPC_NT_NAME_SERVICE_UNAVAILABLE cpu_to_le32(0xC002003F)
110962306a36Sopenharmony_ci#define RPC_NT_INVALID_NAF_ID cpu_to_le32(0xC0020040)
111062306a36Sopenharmony_ci#define RPC_NT_CANNOT_SUPPORT cpu_to_le32(0xC0020041)
111162306a36Sopenharmony_ci#define RPC_NT_NO_CONTEXT_AVAILABLE cpu_to_le32(0xC0020042)
111262306a36Sopenharmony_ci#define RPC_NT_INTERNAL_ERROR cpu_to_le32(0xC0020043)
111362306a36Sopenharmony_ci#define RPC_NT_ZERO_DIVIDE cpu_to_le32(0xC0020044)
111462306a36Sopenharmony_ci#define RPC_NT_ADDRESS_ERROR cpu_to_le32(0xC0020045)
111562306a36Sopenharmony_ci#define RPC_NT_FP_DIV_ZERO cpu_to_le32(0xC0020046)
111662306a36Sopenharmony_ci#define RPC_NT_FP_UNDERFLOW cpu_to_le32(0xC0020047)
111762306a36Sopenharmony_ci#define RPC_NT_FP_OVERFLOW cpu_to_le32(0xC0020048)
111862306a36Sopenharmony_ci#define RPC_NT_CALL_IN_PROGRESS cpu_to_le32(0xC0020049)
111962306a36Sopenharmony_ci#define RPC_NT_NO_MORE_BINDINGS cpu_to_le32(0xC002004A)
112062306a36Sopenharmony_ci#define RPC_NT_GROUP_MEMBER_NOT_FOUND cpu_to_le32(0xC002004B)
112162306a36Sopenharmony_ci#define EPT_NT_CANT_CREATE cpu_to_le32(0xC002004C)
112262306a36Sopenharmony_ci#define RPC_NT_INVALID_OBJECT cpu_to_le32(0xC002004D)
112362306a36Sopenharmony_ci#define RPC_NT_NO_INTERFACES cpu_to_le32(0xC002004F)
112462306a36Sopenharmony_ci#define RPC_NT_CALL_CANCELLED cpu_to_le32(0xC0020050)
112562306a36Sopenharmony_ci#define RPC_NT_BINDING_INCOMPLETE cpu_to_le32(0xC0020051)
112662306a36Sopenharmony_ci#define RPC_NT_COMM_FAILURE cpu_to_le32(0xC0020052)
112762306a36Sopenharmony_ci#define RPC_NT_UNSUPPORTED_AUTHN_LEVEL cpu_to_le32(0xC0020053)
112862306a36Sopenharmony_ci#define RPC_NT_NO_PRINC_NAME cpu_to_le32(0xC0020054)
112962306a36Sopenharmony_ci#define RPC_NT_NOT_RPC_ERROR cpu_to_le32(0xC0020055)
113062306a36Sopenharmony_ci#define RPC_NT_SEC_PKG_ERROR cpu_to_le32(0xC0020057)
113162306a36Sopenharmony_ci#define RPC_NT_NOT_CANCELLED cpu_to_le32(0xC0020058)
113262306a36Sopenharmony_ci#define RPC_NT_INVALID_ASYNC_HANDLE cpu_to_le32(0xC0020062)
113362306a36Sopenharmony_ci#define RPC_NT_INVALID_ASYNC_CALL cpu_to_le32(0xC0020063)
113462306a36Sopenharmony_ci#define RPC_NT_PROXY_ACCESS_DENIED cpu_to_le32(0xC0020064)
113562306a36Sopenharmony_ci#define RPC_NT_NO_MORE_ENTRIES cpu_to_le32(0xC0030001)
113662306a36Sopenharmony_ci#define RPC_NT_SS_CHAR_TRANS_OPEN_FAIL cpu_to_le32(0xC0030002)
113762306a36Sopenharmony_ci#define RPC_NT_SS_CHAR_TRANS_SHORT_FILE cpu_to_le32(0xC0030003)
113862306a36Sopenharmony_ci#define RPC_NT_SS_IN_NULL_CONTEXT cpu_to_le32(0xC0030004)
113962306a36Sopenharmony_ci#define RPC_NT_SS_CONTEXT_MISMATCH cpu_to_le32(0xC0030005)
114062306a36Sopenharmony_ci#define RPC_NT_SS_CONTEXT_DAMAGED cpu_to_le32(0xC0030006)
114162306a36Sopenharmony_ci#define RPC_NT_SS_HANDLES_MISMATCH cpu_to_le32(0xC0030007)
114262306a36Sopenharmony_ci#define RPC_NT_SS_CANNOT_GET_CALL_HANDLE cpu_to_le32(0xC0030008)
114362306a36Sopenharmony_ci#define RPC_NT_NULL_REF_POINTER cpu_to_le32(0xC0030009)
114462306a36Sopenharmony_ci#define RPC_NT_ENUM_VALUE_OUT_OF_RANGE cpu_to_le32(0xC003000A)
114562306a36Sopenharmony_ci#define RPC_NT_BYTE_COUNT_TOO_SMALL cpu_to_le32(0xC003000B)
114662306a36Sopenharmony_ci#define RPC_NT_BAD_STUB_DATA cpu_to_le32(0xC003000C)
114762306a36Sopenharmony_ci#define RPC_NT_INVALID_ES_ACTION cpu_to_le32(0xC0030059)
114862306a36Sopenharmony_ci#define RPC_NT_WRONG_ES_VERSION cpu_to_le32(0xC003005A)
114962306a36Sopenharmony_ci#define RPC_NT_WRONG_STUB_VERSION cpu_to_le32(0xC003005B)
115062306a36Sopenharmony_ci#define RPC_NT_INVALID_PIPE_OBJECT cpu_to_le32(0xC003005C)
115162306a36Sopenharmony_ci#define RPC_NT_INVALID_PIPE_OPERATION cpu_to_le32(0xC003005D)
115262306a36Sopenharmony_ci#define RPC_NT_WRONG_PIPE_VERSION cpu_to_le32(0xC003005E)
115362306a36Sopenharmony_ci#define RPC_NT_PIPE_CLOSED cpu_to_le32(0xC003005F)
115462306a36Sopenharmony_ci#define RPC_NT_PIPE_DISCIPLINE_ERROR cpu_to_le32(0xC0030060)
115562306a36Sopenharmony_ci#define RPC_NT_PIPE_EMPTY cpu_to_le32(0xC0030061)
115662306a36Sopenharmony_ci#define STATUS_PNP_BAD_MPS_TABLE cpu_to_le32(0xC0040035)
115762306a36Sopenharmony_ci#define STATUS_PNP_TRANSLATION_FAILED cpu_to_le32(0xC0040036)
115862306a36Sopenharmony_ci#define STATUS_PNP_IRQ_TRANSLATION_FAILED cpu_to_le32(0xC0040037)
115962306a36Sopenharmony_ci#define STATUS_PNP_INVALID_ID cpu_to_le32(0xC0040038)
116062306a36Sopenharmony_ci#define STATUS_IO_REISSUE_AS_CACHED cpu_to_le32(0xC0040039)
116162306a36Sopenharmony_ci#define STATUS_CTX_WINSTATION_NAME_INVALID cpu_to_le32(0xC00A0001)
116262306a36Sopenharmony_ci#define STATUS_CTX_INVALID_PD cpu_to_le32(0xC00A0002)
116362306a36Sopenharmony_ci#define STATUS_CTX_PD_NOT_FOUND cpu_to_le32(0xC00A0003)
116462306a36Sopenharmony_ci#define STATUS_CTX_CLOSE_PENDING cpu_to_le32(0xC00A0006)
116562306a36Sopenharmony_ci#define STATUS_CTX_NO_OUTBUF cpu_to_le32(0xC00A0007)
116662306a36Sopenharmony_ci#define STATUS_CTX_MODEM_INF_NOT_FOUND cpu_to_le32(0xC00A0008)
116762306a36Sopenharmony_ci#define STATUS_CTX_INVALID_MODEMNAME cpu_to_le32(0xC00A0009)
116862306a36Sopenharmony_ci#define STATUS_CTX_RESPONSE_ERROR cpu_to_le32(0xC00A000A)
116962306a36Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_TIMEOUT cpu_to_le32(0xC00A000B)
117062306a36Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_NO_CARRIER cpu_to_le32(0xC00A000C)
117162306a36Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE cpu_to_le32(0xC00A000D)
117262306a36Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_BUSY cpu_to_le32(0xC00A000E)
117362306a36Sopenharmony_ci#define STATUS_CTX_MODEM_RESPONSE_VOICE cpu_to_le32(0xC00A000F)
117462306a36Sopenharmony_ci#define STATUS_CTX_TD_ERROR cpu_to_le32(0xC00A0010)
117562306a36Sopenharmony_ci#define STATUS_CTX_LICENSE_CLIENT_INVALID cpu_to_le32(0xC00A0012)
117662306a36Sopenharmony_ci#define STATUS_CTX_LICENSE_NOT_AVAILABLE cpu_to_le32(0xC00A0013)
117762306a36Sopenharmony_ci#define STATUS_CTX_LICENSE_EXPIRED cpu_to_le32(0xC00A0014)
117862306a36Sopenharmony_ci#define STATUS_CTX_WINSTATION_NOT_FOUND cpu_to_le32(0xC00A0015)
117962306a36Sopenharmony_ci#define STATUS_CTX_WINSTATION_NAME_COLLISION cpu_to_le32(0xC00A0016)
118062306a36Sopenharmony_ci#define STATUS_CTX_WINSTATION_BUSY cpu_to_le32(0xC00A0017)
118162306a36Sopenharmony_ci#define STATUS_CTX_BAD_VIDEO_MODE cpu_to_le32(0xC00A0018)
118262306a36Sopenharmony_ci#define STATUS_CTX_GRAPHICS_INVALID cpu_to_le32(0xC00A0022)
118362306a36Sopenharmony_ci#define STATUS_CTX_NOT_CONSOLE cpu_to_le32(0xC00A0024)
118462306a36Sopenharmony_ci#define STATUS_CTX_CLIENT_QUERY_TIMEOUT cpu_to_le32(0xC00A0026)
118562306a36Sopenharmony_ci#define STATUS_CTX_CONSOLE_DISCONNECT cpu_to_le32(0xC00A0027)
118662306a36Sopenharmony_ci#define STATUS_CTX_CONSOLE_CONNECT cpu_to_le32(0xC00A0028)
118762306a36Sopenharmony_ci#define STATUS_CTX_SHADOW_DENIED cpu_to_le32(0xC00A002A)
118862306a36Sopenharmony_ci#define STATUS_CTX_WINSTATION_ACCESS_DENIED cpu_to_le32(0xC00A002B)
118962306a36Sopenharmony_ci#define STATUS_CTX_INVALID_WD cpu_to_le32(0xC00A002E)
119062306a36Sopenharmony_ci#define STATUS_CTX_WD_NOT_FOUND cpu_to_le32(0xC00A002F)
119162306a36Sopenharmony_ci#define STATUS_CTX_SHADOW_INVALID cpu_to_le32(0xC00A0030)
119262306a36Sopenharmony_ci#define STATUS_CTX_SHADOW_DISABLED cpu_to_le32(0xC00A0031)
119362306a36Sopenharmony_ci#define STATUS_RDP_PROTOCOL_ERROR cpu_to_le32(0xC00A0032)
119462306a36Sopenharmony_ci#define STATUS_CTX_CLIENT_LICENSE_NOT_SET cpu_to_le32(0xC00A0033)
119562306a36Sopenharmony_ci#define STATUS_CTX_CLIENT_LICENSE_IN_USE cpu_to_le32(0xC00A0034)
119662306a36Sopenharmony_ci#define STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE cpu_to_le32(0xC00A0035)
119762306a36Sopenharmony_ci#define STATUS_CTX_SHADOW_NOT_RUNNING cpu_to_le32(0xC00A0036)
119862306a36Sopenharmony_ci#define STATUS_CTX_LOGON_DISABLED cpu_to_le32(0xC00A0037)
119962306a36Sopenharmony_ci#define STATUS_CTX_SECURITY_LAYER_ERROR cpu_to_le32(0xC00A0038)
120062306a36Sopenharmony_ci#define STATUS_TS_INCOMPATIBLE_SESSIONS cpu_to_le32(0xC00A0039)
120162306a36Sopenharmony_ci#define STATUS_MUI_FILE_NOT_FOUND cpu_to_le32(0xC00B0001)
120262306a36Sopenharmony_ci#define STATUS_MUI_INVALID_FILE cpu_to_le32(0xC00B0002)
120362306a36Sopenharmony_ci#define STATUS_MUI_INVALID_RC_CONFIG cpu_to_le32(0xC00B0003)
120462306a36Sopenharmony_ci#define STATUS_MUI_INVALID_LOCALE_NAME cpu_to_le32(0xC00B0004)
120562306a36Sopenharmony_ci#define STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME cpu_to_le32(0xC00B0005)
120662306a36Sopenharmony_ci#define STATUS_MUI_FILE_NOT_LOADED cpu_to_le32(0xC00B0006)
120762306a36Sopenharmony_ci#define STATUS_RESOURCE_ENUM_USER_STOP cpu_to_le32(0xC00B0007)
120862306a36Sopenharmony_ci#define STATUS_CLUSTER_INVALID_NODE cpu_to_le32(0xC0130001)
120962306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_EXISTS cpu_to_le32(0xC0130002)
121062306a36Sopenharmony_ci#define STATUS_CLUSTER_JOIN_IN_PROGRESS cpu_to_le32(0xC0130003)
121162306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_NOT_FOUND cpu_to_le32(0xC0130004)
121262306a36Sopenharmony_ci#define STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND cpu_to_le32(0xC0130005)
121362306a36Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_EXISTS cpu_to_le32(0xC0130006)
121462306a36Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_NOT_FOUND cpu_to_le32(0xC0130007)
121562306a36Sopenharmony_ci#define STATUS_CLUSTER_NETINTERFACE_EXISTS cpu_to_le32(0xC0130008)
121662306a36Sopenharmony_ci#define STATUS_CLUSTER_NETINTERFACE_NOT_FOUND cpu_to_le32(0xC0130009)
121762306a36Sopenharmony_ci#define STATUS_CLUSTER_INVALID_REQUEST cpu_to_le32(0xC013000A)
121862306a36Sopenharmony_ci#define STATUS_CLUSTER_INVALID_NETWORK_PROVIDER cpu_to_le32(0xC013000B)
121962306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_DOWN cpu_to_le32(0xC013000C)
122062306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_UNREACHABLE cpu_to_le32(0xC013000D)
122162306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_NOT_MEMBER cpu_to_le32(0xC013000E)
122262306a36Sopenharmony_ci#define STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS cpu_to_le32(0xC013000F)
122362306a36Sopenharmony_ci#define STATUS_CLUSTER_INVALID_NETWORK cpu_to_le32(0xC0130010)
122462306a36Sopenharmony_ci#define STATUS_CLUSTER_NO_NET_ADAPTERS cpu_to_le32(0xC0130011)
122562306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_UP cpu_to_le32(0xC0130012)
122662306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_PAUSED cpu_to_le32(0xC0130013)
122762306a36Sopenharmony_ci#define STATUS_CLUSTER_NODE_NOT_PAUSED cpu_to_le32(0xC0130014)
122862306a36Sopenharmony_ci#define STATUS_CLUSTER_NO_SECURITY_CONTEXT cpu_to_le32(0xC0130015)
122962306a36Sopenharmony_ci#define STATUS_CLUSTER_NETWORK_NOT_INTERNAL cpu_to_le32(0xC0130016)
123062306a36Sopenharmony_ci#define STATUS_CLUSTER_POISONED cpu_to_le32(0xC0130017)
123162306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_OPCODE cpu_to_le32(0xC0140001)
123262306a36Sopenharmony_ci#define STATUS_ACPI_STACK_OVERFLOW cpu_to_le32(0xC0140002)
123362306a36Sopenharmony_ci#define STATUS_ACPI_ASSERT_FAILED cpu_to_le32(0xC0140003)
123462306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_INDEX cpu_to_le32(0xC0140004)
123562306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_ARGUMENT cpu_to_le32(0xC0140005)
123662306a36Sopenharmony_ci#define STATUS_ACPI_FATAL cpu_to_le32(0xC0140006)
123762306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_SUPERNAME cpu_to_le32(0xC0140007)
123862306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_ARGTYPE cpu_to_le32(0xC0140008)
123962306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_OBJTYPE cpu_to_le32(0xC0140009)
124062306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_TARGETTYPE cpu_to_le32(0xC014000A)
124162306a36Sopenharmony_ci#define STATUS_ACPI_INCORRECT_ARGUMENT_COUNT cpu_to_le32(0xC014000B)
124262306a36Sopenharmony_ci#define STATUS_ACPI_ADDRESS_NOT_MAPPED cpu_to_le32(0xC014000C)
124362306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_EVENTTYPE cpu_to_le32(0xC014000D)
124462306a36Sopenharmony_ci#define STATUS_ACPI_HANDLER_COLLISION cpu_to_le32(0xC014000E)
124562306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_DATA cpu_to_le32(0xC014000F)
124662306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_REGION cpu_to_le32(0xC0140010)
124762306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_ACCESS_SIZE cpu_to_le32(0xC0140011)
124862306a36Sopenharmony_ci#define STATUS_ACPI_ACQUIRE_GLOBAL_LOCK cpu_to_le32(0xC0140012)
124962306a36Sopenharmony_ci#define STATUS_ACPI_ALREADY_INITIALIZED cpu_to_le32(0xC0140013)
125062306a36Sopenharmony_ci#define STATUS_ACPI_NOT_INITIALIZED cpu_to_le32(0xC0140014)
125162306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_MUTEX_LEVEL cpu_to_le32(0xC0140015)
125262306a36Sopenharmony_ci#define STATUS_ACPI_MUTEX_NOT_OWNED cpu_to_le32(0xC0140016)
125362306a36Sopenharmony_ci#define STATUS_ACPI_MUTEX_NOT_OWNER cpu_to_le32(0xC0140017)
125462306a36Sopenharmony_ci#define STATUS_ACPI_RS_ACCESS cpu_to_le32(0xC0140018)
125562306a36Sopenharmony_ci#define STATUS_ACPI_INVALID_TABLE cpu_to_le32(0xC0140019)
125662306a36Sopenharmony_ci#define STATUS_ACPI_REG_HANDLER_FAILED cpu_to_le32(0xC0140020)
125762306a36Sopenharmony_ci#define STATUS_ACPI_POWER_REQUEST_FAILED cpu_to_le32(0xC0140021)
125862306a36Sopenharmony_ci#define STATUS_SXS_SECTION_NOT_FOUND cpu_to_le32(0xC0150001)
125962306a36Sopenharmony_ci#define STATUS_SXS_CANT_GEN_ACTCTX cpu_to_le32(0xC0150002)
126062306a36Sopenharmony_ci#define STATUS_SXS_INVALID_ACTCTXDATA_FORMAT cpu_to_le32(0xC0150003)
126162306a36Sopenharmony_ci#define STATUS_SXS_ASSEMBLY_NOT_FOUND cpu_to_le32(0xC0150004)
126262306a36Sopenharmony_ci#define STATUS_SXS_MANIFEST_FORMAT_ERROR cpu_to_le32(0xC0150005)
126362306a36Sopenharmony_ci#define STATUS_SXS_MANIFEST_PARSE_ERROR cpu_to_le32(0xC0150006)
126462306a36Sopenharmony_ci#define STATUS_SXS_ACTIVATION_CONTEXT_DISABLED cpu_to_le32(0xC0150007)
126562306a36Sopenharmony_ci#define STATUS_SXS_KEY_NOT_FOUND cpu_to_le32(0xC0150008)
126662306a36Sopenharmony_ci#define STATUS_SXS_VERSION_CONFLICT cpu_to_le32(0xC0150009)
126762306a36Sopenharmony_ci#define STATUS_SXS_WRONG_SECTION_TYPE cpu_to_le32(0xC015000A)
126862306a36Sopenharmony_ci#define STATUS_SXS_THREAD_QUERIES_DISABLED cpu_to_le32(0xC015000B)
126962306a36Sopenharmony_ci#define STATUS_SXS_ASSEMBLY_MISSING cpu_to_le32(0xC015000C)
127062306a36Sopenharmony_ci#define STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET cpu_to_le32(0xC015000E)
127162306a36Sopenharmony_ci#define STATUS_SXS_EARLY_DEACTIVATION cpu_to_le32(0xC015000F)
127262306a36Sopenharmony_ci#define STATUS_SXS_INVALID_DEACTIVATION cpu_to_le32(0xC0150010)
127362306a36Sopenharmony_ci#define STATUS_SXS_MULTIPLE_DEACTIVATION cpu_to_le32(0xC0150011)
127462306a36Sopenharmony_ci#define STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY cpu_to_le32(0xC0150012)
127562306a36Sopenharmony_ci#define STATUS_SXS_PROCESS_TERMINATION_REQUESTED cpu_to_le32(0xC0150013)
127662306a36Sopenharmony_ci#define STATUS_SXS_CORRUPT_ACTIVATION_STACK cpu_to_le32(0xC0150014)
127762306a36Sopenharmony_ci#define STATUS_SXS_CORRUPTION cpu_to_le32(0xC0150015)
127862306a36Sopenharmony_ci#define STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE cpu_to_le32(0xC0150016)
127962306a36Sopenharmony_ci#define STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME cpu_to_le32(0xC0150017)
128062306a36Sopenharmony_ci#define STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE cpu_to_le32(0xC0150018)
128162306a36Sopenharmony_ci#define STATUS_SXS_IDENTITY_PARSE_ERROR cpu_to_le32(0xC0150019)
128262306a36Sopenharmony_ci#define STATUS_SXS_COMPONENT_STORE_CORRUPT cpu_to_le32(0xC015001A)
128362306a36Sopenharmony_ci#define STATUS_SXS_FILE_HASH_MISMATCH cpu_to_le32(0xC015001B)
128462306a36Sopenharmony_ci#define STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT cpu_to_le32(0xC015001C)
128562306a36Sopenharmony_ci#define STATUS_SXS_IDENTITIES_DIFFERENT cpu_to_le32(0xC015001D)
128662306a36Sopenharmony_ci#define STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT cpu_to_le32(0xC015001E)
128762306a36Sopenharmony_ci#define STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY cpu_to_le32(0xC015001F)
128862306a36Sopenharmony_ci#define STATUS_ADVANCED_INSTALLER_FAILED cpu_to_le32(0xC0150020)
128962306a36Sopenharmony_ci#define STATUS_XML_ENCODING_MISMATCH cpu_to_le32(0xC0150021)
129062306a36Sopenharmony_ci#define STATUS_SXS_MANIFEST_TOO_BIG cpu_to_le32(0xC0150022)
129162306a36Sopenharmony_ci#define STATUS_SXS_SETTING_NOT_REGISTERED cpu_to_le32(0xC0150023)
129262306a36Sopenharmony_ci#define STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE cpu_to_le32(0xC0150024)
129362306a36Sopenharmony_ci#define STATUS_SMI_PRIMITIVE_INSTALLER_FAILED cpu_to_le32(0xC0150025)
129462306a36Sopenharmony_ci#define STATUS_GENERIC_COMMAND_FAILED cpu_to_le32(0xC0150026)
129562306a36Sopenharmony_ci#define STATUS_SXS_FILE_HASH_MISSING cpu_to_le32(0xC0150027)
129662306a36Sopenharmony_ci#define STATUS_TRANSACTIONAL_CONFLICT cpu_to_le32(0xC0190001)
129762306a36Sopenharmony_ci#define STATUS_INVALID_TRANSACTION cpu_to_le32(0xC0190002)
129862306a36Sopenharmony_ci#define STATUS_TRANSACTION_NOT_ACTIVE cpu_to_le32(0xC0190003)
129962306a36Sopenharmony_ci#define STATUS_TM_INITIALIZATION_FAILED cpu_to_le32(0xC0190004)
130062306a36Sopenharmony_ci#define STATUS_RM_NOT_ACTIVE cpu_to_le32(0xC0190005)
130162306a36Sopenharmony_ci#define STATUS_RM_METADATA_CORRUPT cpu_to_le32(0xC0190006)
130262306a36Sopenharmony_ci#define STATUS_TRANSACTION_NOT_JOINED cpu_to_le32(0xC0190007)
130362306a36Sopenharmony_ci#define STATUS_DIRECTORY_NOT_RM cpu_to_le32(0xC0190008)
130462306a36Sopenharmony_ci#define STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE cpu_to_le32(0xC019000A)
130562306a36Sopenharmony_ci#define STATUS_LOG_RESIZE_INVALID_SIZE cpu_to_le32(0xC019000B)
130662306a36Sopenharmony_ci#define STATUS_REMOTE_FILE_VERSION_MISMATCH cpu_to_le32(0xC019000C)
130762306a36Sopenharmony_ci#define STATUS_CRM_PROTOCOL_ALREADY_EXISTS cpu_to_le32(0xC019000F)
130862306a36Sopenharmony_ci#define STATUS_TRANSACTION_PROPAGATION_FAILED cpu_to_le32(0xC0190010)
130962306a36Sopenharmony_ci#define STATUS_CRM_PROTOCOL_NOT_FOUND cpu_to_le32(0xC0190011)
131062306a36Sopenharmony_ci#define STATUS_TRANSACTION_SUPERIOR_EXISTS cpu_to_le32(0xC0190012)
131162306a36Sopenharmony_ci#define STATUS_TRANSACTION_REQUEST_NOT_VALID cpu_to_le32(0xC0190013)
131262306a36Sopenharmony_ci#define STATUS_TRANSACTION_NOT_REQUESTED cpu_to_le32(0xC0190014)
131362306a36Sopenharmony_ci#define STATUS_TRANSACTION_ALREADY_ABORTED cpu_to_le32(0xC0190015)
131462306a36Sopenharmony_ci#define STATUS_TRANSACTION_ALREADY_COMMITTED cpu_to_le32(0xC0190016)
131562306a36Sopenharmony_ci#define STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER cpu_to_le32(0xC0190017)
131662306a36Sopenharmony_ci#define STATUS_CURRENT_TRANSACTION_NOT_VALID cpu_to_le32(0xC0190018)
131762306a36Sopenharmony_ci#define STATUS_LOG_GROWTH_FAILED cpu_to_le32(0xC0190019)
131862306a36Sopenharmony_ci#define STATUS_OBJECT_NO_LONGER_EXISTS cpu_to_le32(0xC0190021)
131962306a36Sopenharmony_ci#define STATUS_STREAM_MINIVERSION_NOT_FOUND cpu_to_le32(0xC0190022)
132062306a36Sopenharmony_ci#define STATUS_STREAM_MINIVERSION_NOT_VALID cpu_to_le32(0xC0190023)
132162306a36Sopenharmony_ci#define STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION cpu_to_le32(0xC0190024)
132262306a36Sopenharmony_ci#define STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT cpu_to_le32(0xC0190025)
132362306a36Sopenharmony_ci#define STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS cpu_to_le32(0xC0190026)
132462306a36Sopenharmony_ci#define STATUS_HANDLE_NO_LONGER_VALID cpu_to_le32(0xC0190028)
132562306a36Sopenharmony_ci#define STATUS_LOG_CORRUPTION_DETECTED cpu_to_le32(0xC0190030)
132662306a36Sopenharmony_ci#define STATUS_RM_DISCONNECTED cpu_to_le32(0xC0190032)
132762306a36Sopenharmony_ci#define STATUS_ENLISTMENT_NOT_SUPERIOR cpu_to_le32(0xC0190033)
132862306a36Sopenharmony_ci#define STATUS_FILE_IDENTITY_NOT_PERSISTENT cpu_to_le32(0xC0190036)
132962306a36Sopenharmony_ci#define STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY cpu_to_le32(0xC0190037)
133062306a36Sopenharmony_ci#define STATUS_CANT_CROSS_RM_BOUNDARY cpu_to_le32(0xC0190038)
133162306a36Sopenharmony_ci#define STATUS_TXF_DIR_NOT_EMPTY cpu_to_le32(0xC0190039)
133262306a36Sopenharmony_ci#define STATUS_INDOUBT_TRANSACTIONS_EXIST cpu_to_le32(0xC019003A)
133362306a36Sopenharmony_ci#define STATUS_TM_VOLATILE cpu_to_le32(0xC019003B)
133462306a36Sopenharmony_ci#define STATUS_ROLLBACK_TIMER_EXPIRED cpu_to_le32(0xC019003C)
133562306a36Sopenharmony_ci#define STATUS_TXF_ATTRIBUTE_CORRUPT cpu_to_le32(0xC019003D)
133662306a36Sopenharmony_ci#define STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION cpu_to_le32(0xC019003E)
133762306a36Sopenharmony_ci#define STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED cpu_to_le32(0xC019003F)
133862306a36Sopenharmony_ci#define STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE cpu_to_le32(0xC0190040)
133962306a36Sopenharmony_ci#define STATUS_TRANSACTION_REQUIRED_PROMOTION cpu_to_le32(0xC0190043)
134062306a36Sopenharmony_ci#define STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION cpu_to_le32(0xC0190044)
134162306a36Sopenharmony_ci#define STATUS_TRANSACTIONS_NOT_FROZEN cpu_to_le32(0xC0190045)
134262306a36Sopenharmony_ci#define STATUS_TRANSACTION_FREEZE_IN_PROGRESS cpu_to_le32(0xC0190046)
134362306a36Sopenharmony_ci#define STATUS_NOT_SNAPSHOT_VOLUME cpu_to_le32(0xC0190047)
134462306a36Sopenharmony_ci#define STATUS_NO_SAVEPOINT_WITH_OPEN_FILES cpu_to_le32(0xC0190048)
134562306a36Sopenharmony_ci#define STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION cpu_to_le32(0xC0190049)
134662306a36Sopenharmony_ci#define STATUS_TM_IDENTITY_MISMATCH cpu_to_le32(0xC019004A)
134762306a36Sopenharmony_ci#define STATUS_FLOATED_SECTION cpu_to_le32(0xC019004B)
134862306a36Sopenharmony_ci#define STATUS_CANNOT_ACCEPT_TRANSACTED_WORK cpu_to_le32(0xC019004C)
134962306a36Sopenharmony_ci#define STATUS_CANNOT_ABORT_TRANSACTIONS cpu_to_le32(0xC019004D)
135062306a36Sopenharmony_ci#define STATUS_TRANSACTION_NOT_FOUND cpu_to_le32(0xC019004E)
135162306a36Sopenharmony_ci#define STATUS_RESOURCEMANAGER_NOT_FOUND cpu_to_le32(0xC019004F)
135262306a36Sopenharmony_ci#define STATUS_ENLISTMENT_NOT_FOUND cpu_to_le32(0xC0190050)
135362306a36Sopenharmony_ci#define STATUS_TRANSACTIONMANAGER_NOT_FOUND cpu_to_le32(0xC0190051)
135462306a36Sopenharmony_ci#define STATUS_TRANSACTIONMANAGER_NOT_ONLINE cpu_to_le32(0xC0190052)
135562306a36Sopenharmony_ci#define STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION cpu_to_le32(0xC0190053)
135662306a36Sopenharmony_ci#define STATUS_TRANSACTION_NOT_ROOT cpu_to_le32(0xC0190054)
135762306a36Sopenharmony_ci#define STATUS_TRANSACTION_OBJECT_EXPIRED cpu_to_le32(0xC0190055)
135862306a36Sopenharmony_ci#define STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION cpu_to_le32(0xC0190056)
135962306a36Sopenharmony_ci#define STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED cpu_to_le32(0xC0190057)
136062306a36Sopenharmony_ci#define STATUS_TRANSACTION_RECORD_TOO_LONG cpu_to_le32(0xC0190058)
136162306a36Sopenharmony_ci#define STATUS_NO_LINK_TRACKING_IN_TRANSACTION cpu_to_le32(0xC0190059)
136262306a36Sopenharmony_ci#define STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION cpu_to_le32(0xC019005A)
136362306a36Sopenharmony_ci#define STATUS_TRANSACTION_INTEGRITY_VIOLATED cpu_to_le32(0xC019005B)
136462306a36Sopenharmony_ci#define STATUS_LOG_SECTOR_INVALID cpu_to_le32(0xC01A0001)
136562306a36Sopenharmony_ci#define STATUS_LOG_SECTOR_PARITY_INVALID cpu_to_le32(0xC01A0002)
136662306a36Sopenharmony_ci#define STATUS_LOG_SECTOR_REMAPPED cpu_to_le32(0xC01A0003)
136762306a36Sopenharmony_ci#define STATUS_LOG_BLOCK_INCOMPLETE cpu_to_le32(0xC01A0004)
136862306a36Sopenharmony_ci#define STATUS_LOG_INVALID_RANGE cpu_to_le32(0xC01A0005)
136962306a36Sopenharmony_ci#define STATUS_LOG_BLOCKS_EXHAUSTED cpu_to_le32(0xC01A0006)
137062306a36Sopenharmony_ci#define STATUS_LOG_READ_CONTEXT_INVALID cpu_to_le32(0xC01A0007)
137162306a36Sopenharmony_ci#define STATUS_LOG_RESTART_INVALID cpu_to_le32(0xC01A0008)
137262306a36Sopenharmony_ci#define STATUS_LOG_BLOCK_VERSION cpu_to_le32(0xC01A0009)
137362306a36Sopenharmony_ci#define STATUS_LOG_BLOCK_INVALID cpu_to_le32(0xC01A000A)
137462306a36Sopenharmony_ci#define STATUS_LOG_READ_MODE_INVALID cpu_to_le32(0xC01A000B)
137562306a36Sopenharmony_ci#define STATUS_LOG_METADATA_CORRUPT cpu_to_le32(0xC01A000D)
137662306a36Sopenharmony_ci#define STATUS_LOG_METADATA_INVALID cpu_to_le32(0xC01A000E)
137762306a36Sopenharmony_ci#define STATUS_LOG_METADATA_INCONSISTENT cpu_to_le32(0xC01A000F)
137862306a36Sopenharmony_ci#define STATUS_LOG_RESERVATION_INVALID cpu_to_le32(0xC01A0010)
137962306a36Sopenharmony_ci#define STATUS_LOG_CANT_DELETE cpu_to_le32(0xC01A0011)
138062306a36Sopenharmony_ci#define STATUS_LOG_CONTAINER_LIMIT_EXCEEDED cpu_to_le32(0xC01A0012)
138162306a36Sopenharmony_ci#define STATUS_LOG_START_OF_LOG cpu_to_le32(0xC01A0013)
138262306a36Sopenharmony_ci#define STATUS_LOG_POLICY_ALREADY_INSTALLED cpu_to_le32(0xC01A0014)
138362306a36Sopenharmony_ci#define STATUS_LOG_POLICY_NOT_INSTALLED cpu_to_le32(0xC01A0015)
138462306a36Sopenharmony_ci#define STATUS_LOG_POLICY_INVALID cpu_to_le32(0xC01A0016)
138562306a36Sopenharmony_ci#define STATUS_LOG_POLICY_CONFLICT cpu_to_le32(0xC01A0017)
138662306a36Sopenharmony_ci#define STATUS_LOG_PINNED_ARCHIVE_TAIL cpu_to_le32(0xC01A0018)
138762306a36Sopenharmony_ci#define STATUS_LOG_RECORD_NONEXISTENT cpu_to_le32(0xC01A0019)
138862306a36Sopenharmony_ci#define STATUS_LOG_RECORDS_RESERVED_INVALID cpu_to_le32(0xC01A001A)
138962306a36Sopenharmony_ci#define STATUS_LOG_SPACE_RESERVED_INVALID cpu_to_le32(0xC01A001B)
139062306a36Sopenharmony_ci#define STATUS_LOG_TAIL_INVALID cpu_to_le32(0xC01A001C)
139162306a36Sopenharmony_ci#define STATUS_LOG_FULL cpu_to_le32(0xC01A001D)
139262306a36Sopenharmony_ci#define STATUS_LOG_MULTIPLEXED cpu_to_le32(0xC01A001E)
139362306a36Sopenharmony_ci#define STATUS_LOG_DEDICATED cpu_to_le32(0xC01A001F)
139462306a36Sopenharmony_ci#define STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS cpu_to_le32(0xC01A0020)
139562306a36Sopenharmony_ci#define STATUS_LOG_ARCHIVE_IN_PROGRESS cpu_to_le32(0xC01A0021)
139662306a36Sopenharmony_ci#define STATUS_LOG_EPHEMERAL cpu_to_le32(0xC01A0022)
139762306a36Sopenharmony_ci#define STATUS_LOG_NOT_ENOUGH_CONTAINERS cpu_to_le32(0xC01A0023)
139862306a36Sopenharmony_ci#define STATUS_LOG_CLIENT_ALREADY_REGISTERED cpu_to_le32(0xC01A0024)
139962306a36Sopenharmony_ci#define STATUS_LOG_CLIENT_NOT_REGISTERED cpu_to_le32(0xC01A0025)
140062306a36Sopenharmony_ci#define STATUS_LOG_FULL_HANDLER_IN_PROGRESS cpu_to_le32(0xC01A0026)
140162306a36Sopenharmony_ci#define STATUS_LOG_CONTAINER_READ_FAILED cpu_to_le32(0xC01A0027)
140262306a36Sopenharmony_ci#define STATUS_LOG_CONTAINER_WRITE_FAILED cpu_to_le32(0xC01A0028)
140362306a36Sopenharmony_ci#define STATUS_LOG_CONTAINER_OPEN_FAILED cpu_to_le32(0xC01A0029)
140462306a36Sopenharmony_ci#define STATUS_LOG_CONTAINER_STATE_INVALID cpu_to_le32(0xC01A002A)
140562306a36Sopenharmony_ci#define STATUS_LOG_STATE_INVALID cpu_to_le32(0xC01A002B)
140662306a36Sopenharmony_ci#define STATUS_LOG_PINNED cpu_to_le32(0xC01A002C)
140762306a36Sopenharmony_ci#define STATUS_LOG_METADATA_FLUSH_FAILED cpu_to_le32(0xC01A002D)
140862306a36Sopenharmony_ci#define STATUS_LOG_INCONSISTENT_SECURITY cpu_to_le32(0xC01A002E)
140962306a36Sopenharmony_ci#define STATUS_LOG_APPENDED_FLUSH_FAILED cpu_to_le32(0xC01A002F)
141062306a36Sopenharmony_ci#define STATUS_LOG_PINNED_RESERVATION cpu_to_le32(0xC01A0030)
141162306a36Sopenharmony_ci#define STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD cpu_to_le32(0xC01B00EA)
141262306a36Sopenharmony_ci#define STATUS_FLT_NO_HANDLER_DEFINED cpu_to_le32(0xC01C0001)
141362306a36Sopenharmony_ci#define STATUS_FLT_CONTEXT_ALREADY_DEFINED cpu_to_le32(0xC01C0002)
141462306a36Sopenharmony_ci#define STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST cpu_to_le32(0xC01C0003)
141562306a36Sopenharmony_ci#define STATUS_FLT_DISALLOW_FAST_IO cpu_to_le32(0xC01C0004)
141662306a36Sopenharmony_ci#define STATUS_FLT_INVALID_NAME_REQUEST cpu_to_le32(0xC01C0005)
141762306a36Sopenharmony_ci#define STATUS_FLT_NOT_SAFE_TO_POST_OPERATION cpu_to_le32(0xC01C0006)
141862306a36Sopenharmony_ci#define STATUS_FLT_NOT_INITIALIZED cpu_to_le32(0xC01C0007)
141962306a36Sopenharmony_ci#define STATUS_FLT_FILTER_NOT_READY cpu_to_le32(0xC01C0008)
142062306a36Sopenharmony_ci#define STATUS_FLT_POST_OPERATION_CLEANUP cpu_to_le32(0xC01C0009)
142162306a36Sopenharmony_ci#define STATUS_FLT_INTERNAL_ERROR cpu_to_le32(0xC01C000A)
142262306a36Sopenharmony_ci#define STATUS_FLT_DELETING_OBJECT cpu_to_le32(0xC01C000B)
142362306a36Sopenharmony_ci#define STATUS_FLT_MUST_BE_NONPAGED_POOL cpu_to_le32(0xC01C000C)
142462306a36Sopenharmony_ci#define STATUS_FLT_DUPLICATE_ENTRY cpu_to_le32(0xC01C000D)
142562306a36Sopenharmony_ci#define STATUS_FLT_CBDQ_DISABLED cpu_to_le32(0xC01C000E)
142662306a36Sopenharmony_ci#define STATUS_FLT_DO_NOT_ATTACH cpu_to_le32(0xC01C000F)
142762306a36Sopenharmony_ci#define STATUS_FLT_DO_NOT_DETACH cpu_to_le32(0xC01C0010)
142862306a36Sopenharmony_ci#define STATUS_FLT_INSTANCE_ALTITUDE_COLLISION cpu_to_le32(0xC01C0011)
142962306a36Sopenharmony_ci#define STATUS_FLT_INSTANCE_NAME_COLLISION cpu_to_le32(0xC01C0012)
143062306a36Sopenharmony_ci#define STATUS_FLT_FILTER_NOT_FOUND cpu_to_le32(0xC01C0013)
143162306a36Sopenharmony_ci#define STATUS_FLT_VOLUME_NOT_FOUND cpu_to_le32(0xC01C0014)
143262306a36Sopenharmony_ci#define STATUS_FLT_INSTANCE_NOT_FOUND cpu_to_le32(0xC01C0015)
143362306a36Sopenharmony_ci#define STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND cpu_to_le32(0xC01C0016)
143462306a36Sopenharmony_ci#define STATUS_FLT_INVALID_CONTEXT_REGISTRATION cpu_to_le32(0xC01C0017)
143562306a36Sopenharmony_ci#define STATUS_FLT_NAME_CACHE_MISS cpu_to_le32(0xC01C0018)
143662306a36Sopenharmony_ci#define STATUS_FLT_NO_DEVICE_OBJECT cpu_to_le32(0xC01C0019)
143762306a36Sopenharmony_ci#define STATUS_FLT_VOLUME_ALREADY_MOUNTED cpu_to_le32(0xC01C001A)
143862306a36Sopenharmony_ci#define STATUS_FLT_ALREADY_ENLISTED cpu_to_le32(0xC01C001B)
143962306a36Sopenharmony_ci#define STATUS_FLT_CONTEXT_ALREADY_LINKED cpu_to_le32(0xC01C001C)
144062306a36Sopenharmony_ci#define STATUS_FLT_NO_WAITER_FOR_REPLY cpu_to_le32(0xC01C0020)
144162306a36Sopenharmony_ci#define STATUS_MONITOR_NO_DESCRIPTOR cpu_to_le32(0xC01D0001)
144262306a36Sopenharmony_ci#define STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT cpu_to_le32(0xC01D0002)
144362306a36Sopenharmony_ci#define STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM cpu_to_le32(0xC01D0003)
144462306a36Sopenharmony_ci#define STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK cpu_to_le32(0xC01D0004)
144562306a36Sopenharmony_ci#define STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED cpu_to_le32(0xC01D0005)
144662306a36Sopenharmony_ci#define STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK cpu_to_le32(0xC01D0006)
144762306a36Sopenharmony_ci#define STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK cpu_to_le32(0xC01D0007)
144862306a36Sopenharmony_ci#define STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA cpu_to_le32(0xC01D0008)
144962306a36Sopenharmony_ci#define STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK cpu_to_le32(0xC01D0009)
145062306a36Sopenharmony_ci#define STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER cpu_to_le32(0xC01E0000)
145162306a36Sopenharmony_ci#define STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER cpu_to_le32(0xC01E0001)
145262306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER cpu_to_le32(0xC01E0002)
145362306a36Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_WAS_RESET cpu_to_le32(0xC01E0003)
145462306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_DRIVER_MODEL cpu_to_le32(0xC01E0004)
145562306a36Sopenharmony_ci#define STATUS_GRAPHICS_PRESENT_MODE_CHANGED cpu_to_le32(0xC01E0005)
145662306a36Sopenharmony_ci#define STATUS_GRAPHICS_PRESENT_OCCLUDED cpu_to_le32(0xC01E0006)
145762306a36Sopenharmony_ci#define STATUS_GRAPHICS_PRESENT_DENIED cpu_to_le32(0xC01E0007)
145862306a36Sopenharmony_ci#define STATUS_GRAPHICS_CANNOTCOLORCONVERT cpu_to_le32(0xC01E0008)
145962306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_VIDEO_MEMORY cpu_to_le32(0xC01E0100)
146062306a36Sopenharmony_ci#define STATUS_GRAPHICS_CANT_LOCK_MEMORY cpu_to_le32(0xC01E0101)
146162306a36Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_BUSY cpu_to_le32(0xC01E0102)
146262306a36Sopenharmony_ci#define STATUS_GRAPHICS_TOO_MANY_REFERENCES cpu_to_le32(0xC01E0103)
146362306a36Sopenharmony_ci#define STATUS_GRAPHICS_TRY_AGAIN_LATER cpu_to_le32(0xC01E0104)
146462306a36Sopenharmony_ci#define STATUS_GRAPHICS_TRY_AGAIN_NOW cpu_to_le32(0xC01E0105)
146562306a36Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_INVALID cpu_to_le32(0xC01E0106)
146662306a36Sopenharmony_ci#define STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE cpu_to_le32(0xC01E0107)
146762306a36Sopenharmony_ci#define STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED cpu_to_le32(0xC01E0108)
146862306a36Sopenharmony_ci#define STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION cpu_to_le32(0xC01E0109)
146962306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE cpu_to_le32(0xC01E0110)
147062306a36Sopenharmony_ci#define STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION cpu_to_le32(0xC01E0111)
147162306a36Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_CLOSED cpu_to_le32(0xC01E0112)
147262306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE cpu_to_le32(0xC01E0113)
147362306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE cpu_to_le32(0xC01E0114)
147462306a36Sopenharmony_ci#define STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE cpu_to_le32(0xC01E0115)
147562306a36Sopenharmony_ci#define STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST cpu_to_le32(0xC01E0116)
147662306a36Sopenharmony_ci#define STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE cpu_to_le32(0xC01E0200)
147762306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY cpu_to_le32(0xC01E0300)
147862306a36Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED cpu_to_le32(0xC01E0301)
147962306a36Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED cpu_to_le32(0xC01E0302)
148062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN cpu_to_le32(0xC01E0303)
148162306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE cpu_to_le32(0xC01E0304)
148262306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET cpu_to_le32(0xC01E0305)
148362306a36Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED cpu_to_le32(0xC01E0306)
148462306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET cpu_to_le32(0xC01E0308)
148562306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET cpu_to_le32(0xC01E0309)
148662306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_FREQUENCY cpu_to_le32(0xC01E030A)
148762306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_ACTIVE_REGION cpu_to_le32(0xC01E030B)
148862306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_TOTAL_REGION cpu_to_le32(0xC01E030C)
148962306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE cpu_to_le32(0xC01E0310)
149062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE cpu_to_le32(0xC01E0311)
149162306a36Sopenharmony_ci#define STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET cpu_to_le32(0xC01E0312)
149262306a36Sopenharmony_ci#define STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY cpu_to_le32(0xC01E0313)
149362306a36Sopenharmony_ci#define STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET cpu_to_le32(0xC01E0314)
149462306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET cpu_to_le32(0xC01E0315)
149562306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET cpu_to_le32(0xC01E0316)
149662306a36Sopenharmony_ci#define STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET cpu_to_le32(0xC01E0317)
149762306a36Sopenharmony_ci#define STATUS_GRAPHICS_TARGET_ALREADY_IN_SET cpu_to_le32(0xC01E0318)
149862306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH cpu_to_le32(0xC01E0319)
149962306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY cpu_to_le32(0xC01E031A)
150062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET cpu_to_le32(0xC01E031B)
150162306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE cpu_to_le32(0xC01E031C)
150262306a36Sopenharmony_ci#define STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET cpu_to_le32(0xC01E031D)
150362306a36Sopenharmony_ci#define STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET cpu_to_le32(0xC01E031F)
150462306a36Sopenharmony_ci#define STATUS_GRAPHICS_STALE_MODESET cpu_to_le32(0xC01E0320)
150562306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET cpu_to_le32(0xC01E0321)
150662306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE cpu_to_le32(0xC01E0322)
150762306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN cpu_to_le32(0xC01E0323)
150862306a36Sopenharmony_ci#define STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E0324)
150962306a36Sopenharmony_ci#define STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION cpu_to_le32(0xC01E0325)
151062306a36Sopenharmony_ci#define STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES cpu_to_le32(0xC01E0326)
151162306a36Sopenharmony_ci#define STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY cpu_to_le32(0xC01E0327)
151262306a36Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE cpu_to_le32(0xC01E0328)
151362306a36Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET cpu_to_le32(0xC01E0329)
151462306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET cpu_to_le32(0xC01E032A)
151562306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR cpu_to_le32(0xC01E032B)
151662306a36Sopenharmony_ci#define STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET cpu_to_le32(0xC01E032C)
151762306a36Sopenharmony_ci#define STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET cpu_to_le32(0xC01E032D)
151862306a36Sopenharmony_ci#define STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E032E)
151962306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE cpu_to_le32(0xC01E032F)
152062306a36Sopenharmony_ci#define STATUS_GRAPHICS_RESOURCES_NOT_RELATED cpu_to_le32(0xC01E0330)
152162306a36Sopenharmony_ci#define STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E0331)
152262306a36Sopenharmony_ci#define STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE cpu_to_le32(0xC01E0332)
152362306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET cpu_to_le32(0xC01E0333)
152462306a36Sopenharmony_ci#define STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER cpu_to_le32(0xC01E0334)
152562306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_VIDPNMGR cpu_to_le32(0xC01E0335)
152662306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_ACTIVE_VIDPN cpu_to_le32(0xC01E0336)
152762306a36Sopenharmony_ci#define STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY cpu_to_le32(0xC01E0337)
152862306a36Sopenharmony_ci#define STATUS_GRAPHICS_MONITOR_NOT_CONNECTED cpu_to_le32(0xC01E0338)
152962306a36Sopenharmony_ci#define STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY cpu_to_le32(0xC01E0339)
153062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE cpu_to_le32(0xC01E033A)
153162306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE cpu_to_le32(0xC01E033B)
153262306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_STRIDE cpu_to_le32(0xC01E033C)
153362306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PIXELFORMAT cpu_to_le32(0xC01E033D)
153462306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_COLORBASIS cpu_to_le32(0xC01E033E)
153562306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE cpu_to_le32(0xC01E033F)
153662306a36Sopenharmony_ci#define STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY cpu_to_le32(0xC01E0340)
153762306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT cpu_to_le32(0xC01E0341)
153862306a36Sopenharmony_ci#define STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE cpu_to_le32(0xC01E0342)
153962306a36Sopenharmony_ci#define STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN cpu_to_le32(0xC01E0343)
154062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL cpu_to_le32(0xC01E0344)
154162306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION cpu_to_le32(0xC01E0345)
154262306a36Sopenharmony_ci#define STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED cpu_to_le32(0xC01E0346)
154362306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_GAMMA_RAMP cpu_to_le32(0xC01E0347)
154462306a36Sopenharmony_ci#define STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED cpu_to_le32(0xC01E0348)
154562306a36Sopenharmony_ci#define STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED cpu_to_le32(0xC01E0349)
154662306a36Sopenharmony_ci#define STATUS_GRAPHICS_MODE_NOT_IN_MODESET cpu_to_le32(0xC01E034A)
154762306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON cpu_to_le32(0xC01E034D)
154862306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE cpu_to_le32(0xC01E034E)
154962306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE cpu_to_le32(0xC01E034F)
155062306a36Sopenharmony_ci#define STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS cpu_to_le32(0xC01E0350)
155162306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING cpu_to_le32(0xC01E0352)
155262306a36Sopenharmony_ci#define STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED cpu_to_le32(0xC01E0353)
155362306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS cpu_to_le32(0xC01E0354)
155462306a36Sopenharmony_ci#define STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT cpu_to_le32(0xC01E0355)
155562306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM cpu_to_le32(0xC01E0356)
155662306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN cpu_to_le32(0xC01E0357)
155762306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT cpu_to_le32(0xC01E0358)
155862306a36Sopenharmony_ci#define STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED cpu_to_le32(0xC01E0359)
155962306a36Sopenharmony_ci#define STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION cpu_to_le32(0xC01E035A)
156062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_CLIENT_TYPE cpu_to_le32(0xC01E035B)
156162306a36Sopenharmony_ci#define STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET cpu_to_le32(0xC01E035C)
156262306a36Sopenharmony_ci#define STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED cpu_to_le32(0xC01E0400)
156362306a36Sopenharmony_ci#define STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED cpu_to_le32(0xC01E0401)
156462306a36Sopenharmony_ci#define STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER cpu_to_le32(0xC01E0430)
156562306a36Sopenharmony_ci#define STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED cpu_to_le32(0xC01E0431)
156662306a36Sopenharmony_ci#define STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED cpu_to_le32(0xC01E0432)
156762306a36Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY cpu_to_le32(0xC01E0433)
156862306a36Sopenharmony_ci#define STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED cpu_to_le32(0xC01E0434)
156962306a36Sopenharmony_ci#define STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON cpu_to_le32(0xC01E0435)
157062306a36Sopenharmony_ci#define STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE cpu_to_le32(0xC01E0436)
157162306a36Sopenharmony_ci#define STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER cpu_to_le32(0xC01E0438)
157262306a36Sopenharmony_ci#define STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED cpu_to_le32(0xC01E043B)
157362306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS cpu_to_le32(0xC01E051C)
157462306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST cpu_to_le32(0xC01E051D)
157562306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR cpu_to_le32(0xC01E051E)
157662306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS cpu_to_le32(0xC01E051F)
157762306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED cpu_to_le32(0xC01E0520)
157862306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST cpu_to_le32(0xC01E0521)
157962306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_NOT_SUPPORTED cpu_to_le32(0xC01E0500)
158062306a36Sopenharmony_ci#define STATUS_GRAPHICS_COPP_NOT_SUPPORTED cpu_to_le32(0xC01E0501)
158162306a36Sopenharmony_ci#define STATUS_GRAPHICS_UAB_NOT_SUPPORTED cpu_to_le32(0xC01E0502)
158262306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS cpu_to_le32(0xC01E0503)
158362306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL cpu_to_le32(0xC01E0504)
158462306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST cpu_to_le32(0xC01E0505)
158562306a36Sopenharmony_ci#define STATUS_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME cpu_to_le32(0xC01E0506)
158662306a36Sopenharmony_ci#define STATUS_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP cpu_to_le32(0xC01E0507)
158762306a36Sopenharmony_ci#define STATUS_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED cpu_to_le32(0xC01E0508)
158862306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_POINTER cpu_to_le32(0xC01E050A)
158962306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INTERNAL_ERROR cpu_to_le32(0xC01E050B)
159062306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_HANDLE cpu_to_le32(0xC01E050C)
159162306a36Sopenharmony_ci#define STATUS_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE cpu_to_le32(0xC01E050D)
159262306a36Sopenharmony_ci#define STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH cpu_to_le32(0xC01E050E)
159362306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED cpu_to_le32(0xC01E050F)
159462306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED cpu_to_le32(0xC01E0510)
159562306a36Sopenharmony_ci#define STATUS_GRAPHICS_PVP_HFS_FAILED cpu_to_le32(0xC01E0511)
159662306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_INVALID_SRM cpu_to_le32(0xC01E0512)
159762306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP cpu_to_le32(0xC01E0513)
159862306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP cpu_to_le32(0xC01E0514)
159962306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA cpu_to_le32(0xC01E0515)
160062306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET cpu_to_le32(0xC01E0516)
160162306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH cpu_to_le32(0xC01E0517)
160262306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE cpu_to_le32(0xC01E0518)
160362306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS cpu_to_le32(0xC01E051A)
160462306a36Sopenharmony_ci#define STATUS_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS cpu_to_le32(0xC01E051B)
160562306a36Sopenharmony_ci#define STATUS_GRAPHICS_I2C_NOT_SUPPORTED cpu_to_le32(0xC01E0580)
160662306a36Sopenharmony_ci#define STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST cpu_to_le32(0xC01E0581)
160762306a36Sopenharmony_ci#define STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA cpu_to_le32(0xC01E0582)
160862306a36Sopenharmony_ci#define STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA cpu_to_le32(0xC01E0583)
160962306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED cpu_to_le32(0xC01E0584)
161062306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_DATA cpu_to_le32(0xC01E0585)
161162306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE cpu_to_le32(0xC01E0586)
161262306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING cpu_to_le32(0xC01E0587)
161362306a36Sopenharmony_ci#define STATUS_GRAPHICS_MCA_INTERNAL_ERROR cpu_to_le32(0xC01E0588)
161462306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND cpu_to_le32(0xC01E0589)
161562306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH cpu_to_le32(0xC01E058A)
161662306a36Sopenharmony_ci#define STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM cpu_to_le32(0xC01E058B)
161762306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE cpu_to_le32(0xC01E058C)
161862306a36Sopenharmony_ci#define STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS cpu_to_le32(0xC01E058D)
161962306a36Sopenharmony_ci#define STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED cpu_to_le32(0xC01E05E0)
162062306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME cpu_to_le32(0xC01E05E1)
162162306a36Sopenharmony_ci#define STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP cpu_to_le32(0xC01E05E2)
162262306a36Sopenharmony_ci#define STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED cpu_to_le32(0xC01E05E3)
162362306a36Sopenharmony_ci#define STATUS_GRAPHICS_INVALID_POINTER cpu_to_le32(0xC01E05E4)
162462306a36Sopenharmony_ci#define STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE cpu_to_le32(0xC01E05E5)
162562306a36Sopenharmony_ci#define STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL cpu_to_le32(0xC01E05E6)
162662306a36Sopenharmony_ci#define STATUS_GRAPHICS_INTERNAL_ERROR cpu_to_le32(0xC01E05E7)
162762306a36Sopenharmony_ci#define STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS cpu_to_le32(0xC01E05E8)
162862306a36Sopenharmony_ci#define STATUS_FVE_LOCKED_VOLUME cpu_to_le32(0xC0210000)
162962306a36Sopenharmony_ci#define STATUS_FVE_NOT_ENCRYPTED cpu_to_le32(0xC0210001)
163062306a36Sopenharmony_ci#define STATUS_FVE_BAD_INFORMATION cpu_to_le32(0xC0210002)
163162306a36Sopenharmony_ci#define STATUS_FVE_TOO_SMALL cpu_to_le32(0xC0210003)
163262306a36Sopenharmony_ci#define STATUS_FVE_FAILED_WRONG_FS cpu_to_le32(0xC0210004)
163362306a36Sopenharmony_ci#define STATUS_FVE_FAILED_BAD_FS cpu_to_le32(0xC0210005)
163462306a36Sopenharmony_ci#define STATUS_FVE_FS_NOT_EXTENDED cpu_to_le32(0xC0210006)
163562306a36Sopenharmony_ci#define STATUS_FVE_FS_MOUNTED cpu_to_le32(0xC0210007)
163662306a36Sopenharmony_ci#define STATUS_FVE_NO_LICENSE cpu_to_le32(0xC0210008)
163762306a36Sopenharmony_ci#define STATUS_FVE_ACTION_NOT_ALLOWED cpu_to_le32(0xC0210009)
163862306a36Sopenharmony_ci#define STATUS_FVE_BAD_DATA cpu_to_le32(0xC021000A)
163962306a36Sopenharmony_ci#define STATUS_FVE_VOLUME_NOT_BOUND cpu_to_le32(0xC021000B)
164062306a36Sopenharmony_ci#define STATUS_FVE_NOT_DATA_VOLUME cpu_to_le32(0xC021000C)
164162306a36Sopenharmony_ci#define STATUS_FVE_CONV_READ_ERROR cpu_to_le32(0xC021000D)
164262306a36Sopenharmony_ci#define STATUS_FVE_CONV_WRITE_ERROR cpu_to_le32(0xC021000E)
164362306a36Sopenharmony_ci#define STATUS_FVE_OVERLAPPED_UPDATE cpu_to_le32(0xC021000F)
164462306a36Sopenharmony_ci#define STATUS_FVE_FAILED_SECTOR_SIZE cpu_to_le32(0xC0210010)
164562306a36Sopenharmony_ci#define STATUS_FVE_FAILED_AUTHENTICATION cpu_to_le32(0xC0210011)
164662306a36Sopenharmony_ci#define STATUS_FVE_NOT_OS_VOLUME cpu_to_le32(0xC0210012)
164762306a36Sopenharmony_ci#define STATUS_FVE_KEYFILE_NOT_FOUND cpu_to_le32(0xC0210013)
164862306a36Sopenharmony_ci#define STATUS_FVE_KEYFILE_INVALID cpu_to_le32(0xC0210014)
164962306a36Sopenharmony_ci#define STATUS_FVE_KEYFILE_NO_VMK cpu_to_le32(0xC0210015)
165062306a36Sopenharmony_ci#define STATUS_FVE_TPM_DISABLED cpu_to_le32(0xC0210016)
165162306a36Sopenharmony_ci#define STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO cpu_to_le32(0xC0210017)
165262306a36Sopenharmony_ci#define STATUS_FVE_TPM_INVALID_PCR cpu_to_le32(0xC0210018)
165362306a36Sopenharmony_ci#define STATUS_FVE_TPM_NO_VMK cpu_to_le32(0xC0210019)
165462306a36Sopenharmony_ci#define STATUS_FVE_PIN_INVALID cpu_to_le32(0xC021001A)
165562306a36Sopenharmony_ci#define STATUS_FVE_AUTH_INVALID_APPLICATION cpu_to_le32(0xC021001B)
165662306a36Sopenharmony_ci#define STATUS_FVE_AUTH_INVALID_CONFIG cpu_to_le32(0xC021001C)
165762306a36Sopenharmony_ci#define STATUS_FVE_DEBUGGER_ENABLED cpu_to_le32(0xC021001D)
165862306a36Sopenharmony_ci#define STATUS_FVE_DRY_RUN_FAILED cpu_to_le32(0xC021001E)
165962306a36Sopenharmony_ci#define STATUS_FVE_BAD_METADATA_POINTER cpu_to_le32(0xC021001F)
166062306a36Sopenharmony_ci#define STATUS_FVE_OLD_METADATA_COPY cpu_to_le32(0xC0210020)
166162306a36Sopenharmony_ci#define STATUS_FVE_REBOOT_REQUIRED cpu_to_le32(0xC0210021)
166262306a36Sopenharmony_ci#define STATUS_FVE_RAW_ACCESS cpu_to_le32(0xC0210022)
166362306a36Sopenharmony_ci#define STATUS_FVE_RAW_BLOCKED cpu_to_le32(0xC0210023)
166462306a36Sopenharmony_ci#define STATUS_FWP_CALLOUT_NOT_FOUND cpu_to_le32(0xC0220001)
166562306a36Sopenharmony_ci#define STATUS_FWP_CONDITION_NOT_FOUND cpu_to_le32(0xC0220002)
166662306a36Sopenharmony_ci#define STATUS_FWP_FILTER_NOT_FOUND cpu_to_le32(0xC0220003)
166762306a36Sopenharmony_ci#define STATUS_FWP_LAYER_NOT_FOUND cpu_to_le32(0xC0220004)
166862306a36Sopenharmony_ci#define STATUS_FWP_PROVIDER_NOT_FOUND cpu_to_le32(0xC0220005)
166962306a36Sopenharmony_ci#define STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND cpu_to_le32(0xC0220006)
167062306a36Sopenharmony_ci#define STATUS_FWP_SUBLAYER_NOT_FOUND cpu_to_le32(0xC0220007)
167162306a36Sopenharmony_ci#define STATUS_FWP_NOT_FOUND cpu_to_le32(0xC0220008)
167262306a36Sopenharmony_ci#define STATUS_FWP_ALREADY_EXISTS cpu_to_le32(0xC0220009)
167362306a36Sopenharmony_ci#define STATUS_FWP_IN_USE cpu_to_le32(0xC022000A)
167462306a36Sopenharmony_ci#define STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS cpu_to_le32(0xC022000B)
167562306a36Sopenharmony_ci#define STATUS_FWP_WRONG_SESSION cpu_to_le32(0xC022000C)
167662306a36Sopenharmony_ci#define STATUS_FWP_NO_TXN_IN_PROGRESS cpu_to_le32(0xC022000D)
167762306a36Sopenharmony_ci#define STATUS_FWP_TXN_IN_PROGRESS cpu_to_le32(0xC022000E)
167862306a36Sopenharmony_ci#define STATUS_FWP_TXN_ABORTED cpu_to_le32(0xC022000F)
167962306a36Sopenharmony_ci#define STATUS_FWP_SESSION_ABORTED cpu_to_le32(0xC0220010)
168062306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_TXN cpu_to_le32(0xC0220011)
168162306a36Sopenharmony_ci#define STATUS_FWP_TIMEOUT cpu_to_le32(0xC0220012)
168262306a36Sopenharmony_ci#define STATUS_FWP_NET_EVENTS_DISABLED cpu_to_le32(0xC0220013)
168362306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_LAYER cpu_to_le32(0xC0220014)
168462306a36Sopenharmony_ci#define STATUS_FWP_KM_CLIENTS_ONLY cpu_to_le32(0xC0220015)
168562306a36Sopenharmony_ci#define STATUS_FWP_LIFETIME_MISMATCH cpu_to_le32(0xC0220016)
168662306a36Sopenharmony_ci#define STATUS_FWP_BUILTIN_OBJECT cpu_to_le32(0xC0220017)
168762306a36Sopenharmony_ci#define STATUS_FWP_TOO_MANY_BOOTTIME_FILTERS cpu_to_le32(0xC0220018)
168862306a36Sopenharmony_ci#define STATUS_FWP_TOO_MANY_CALLOUTS cpu_to_le32(0xC0220018)
168962306a36Sopenharmony_ci#define STATUS_FWP_NOTIFICATION_DROPPED cpu_to_le32(0xC0220019)
169062306a36Sopenharmony_ci#define STATUS_FWP_TRAFFIC_MISMATCH cpu_to_le32(0xC022001A)
169162306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_SA_STATE cpu_to_le32(0xC022001B)
169262306a36Sopenharmony_ci#define STATUS_FWP_NULL_POINTER cpu_to_le32(0xC022001C)
169362306a36Sopenharmony_ci#define STATUS_FWP_INVALID_ENUMERATOR cpu_to_le32(0xC022001D)
169462306a36Sopenharmony_ci#define STATUS_FWP_INVALID_FLAGS cpu_to_le32(0xC022001E)
169562306a36Sopenharmony_ci#define STATUS_FWP_INVALID_NET_MASK cpu_to_le32(0xC022001F)
169662306a36Sopenharmony_ci#define STATUS_FWP_INVALID_RANGE cpu_to_le32(0xC0220020)
169762306a36Sopenharmony_ci#define STATUS_FWP_INVALID_INTERVAL cpu_to_le32(0xC0220021)
169862306a36Sopenharmony_ci#define STATUS_FWP_ZERO_LENGTH_ARRAY cpu_to_le32(0xC0220022)
169962306a36Sopenharmony_ci#define STATUS_FWP_NULL_DISPLAY_NAME cpu_to_le32(0xC0220023)
170062306a36Sopenharmony_ci#define STATUS_FWP_INVALID_ACTION_TYPE cpu_to_le32(0xC0220024)
170162306a36Sopenharmony_ci#define STATUS_FWP_INVALID_WEIGHT cpu_to_le32(0xC0220025)
170262306a36Sopenharmony_ci#define STATUS_FWP_MATCH_TYPE_MISMATCH cpu_to_le32(0xC0220026)
170362306a36Sopenharmony_ci#define STATUS_FWP_TYPE_MISMATCH cpu_to_le32(0xC0220027)
170462306a36Sopenharmony_ci#define STATUS_FWP_OUT_OF_BOUNDS cpu_to_le32(0xC0220028)
170562306a36Sopenharmony_ci#define STATUS_FWP_RESERVED cpu_to_le32(0xC0220029)
170662306a36Sopenharmony_ci#define STATUS_FWP_DUPLICATE_CONDITION cpu_to_le32(0xC022002A)
170762306a36Sopenharmony_ci#define STATUS_FWP_DUPLICATE_KEYMOD cpu_to_le32(0xC022002B)
170862306a36Sopenharmony_ci#define STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER cpu_to_le32(0xC022002C)
170962306a36Sopenharmony_ci#define STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER cpu_to_le32(0xC022002D)
171062306a36Sopenharmony_ci#define STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER cpu_to_le32(0xC022002E)
171162306a36Sopenharmony_ci#define STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT cpu_to_le32(0xC022002F)
171262306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_AUTH_METHOD cpu_to_le32(0xC0220030)
171362306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_DH_GROUP cpu_to_le32(0xC0220031)
171462306a36Sopenharmony_ci#define STATUS_FWP_EM_NOT_SUPPORTED cpu_to_le32(0xC0220032)
171562306a36Sopenharmony_ci#define STATUS_FWP_NEVER_MATCH cpu_to_le32(0xC0220033)
171662306a36Sopenharmony_ci#define STATUS_FWP_PROVIDER_CONTEXT_MISMATCH cpu_to_le32(0xC0220034)
171762306a36Sopenharmony_ci#define STATUS_FWP_INVALID_PARAMETER cpu_to_le32(0xC0220035)
171862306a36Sopenharmony_ci#define STATUS_FWP_TOO_MANY_SUBLAYERS cpu_to_le32(0xC0220036)
171962306a36Sopenharmony_ci#define STATUS_FWP_CALLOUT_NOTIFICATION_FAILED cpu_to_le32(0xC0220037)
172062306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_AUTH_CONFIG cpu_to_le32(0xC0220038)
172162306a36Sopenharmony_ci#define STATUS_FWP_INCOMPATIBLE_CIPHER_CONFIG cpu_to_le32(0xC0220039)
172262306a36Sopenharmony_ci#define STATUS_FWP_TCPIP_NOT_READY cpu_to_le32(0xC0220100)
172362306a36Sopenharmony_ci#define STATUS_FWP_INJECT_HANDLE_CLOSING cpu_to_le32(0xC0220101)
172462306a36Sopenharmony_ci#define STATUS_FWP_INJECT_HANDLE_STALE cpu_to_le32(0xC0220102)
172562306a36Sopenharmony_ci#define STATUS_FWP_CANNOT_PEND cpu_to_le32(0xC0220103)
172662306a36Sopenharmony_ci#define STATUS_NDIS_CLOSING cpu_to_le32(0xC0230002)
172762306a36Sopenharmony_ci#define STATUS_NDIS_BAD_VERSION cpu_to_le32(0xC0230004)
172862306a36Sopenharmony_ci#define STATUS_NDIS_BAD_CHARACTERISTICS cpu_to_le32(0xC0230005)
172962306a36Sopenharmony_ci#define STATUS_NDIS_ADAPTER_NOT_FOUND cpu_to_le32(0xC0230006)
173062306a36Sopenharmony_ci#define STATUS_NDIS_OPEN_FAILED cpu_to_le32(0xC0230007)
173162306a36Sopenharmony_ci#define STATUS_NDIS_DEVICE_FAILED cpu_to_le32(0xC0230008)
173262306a36Sopenharmony_ci#define STATUS_NDIS_MULTICAST_FULL cpu_to_le32(0xC0230009)
173362306a36Sopenharmony_ci#define STATUS_NDIS_MULTICAST_EXISTS cpu_to_le32(0xC023000A)
173462306a36Sopenharmony_ci#define STATUS_NDIS_MULTICAST_NOT_FOUND cpu_to_le32(0xC023000B)
173562306a36Sopenharmony_ci#define STATUS_NDIS_REQUEST_ABORTED cpu_to_le32(0xC023000C)
173662306a36Sopenharmony_ci#define STATUS_NDIS_RESET_IN_PROGRESS cpu_to_le32(0xC023000D)
173762306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_PACKET cpu_to_le32(0xC023000F)
173862306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_DEVICE_REQUEST cpu_to_le32(0xC0230010)
173962306a36Sopenharmony_ci#define STATUS_NDIS_ADAPTER_NOT_READY cpu_to_le32(0xC0230011)
174062306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_LENGTH cpu_to_le32(0xC0230014)
174162306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_DATA cpu_to_le32(0xC0230015)
174262306a36Sopenharmony_ci#define STATUS_NDIS_BUFFER_TOO_SHORT cpu_to_le32(0xC0230016)
174362306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_OID cpu_to_le32(0xC0230017)
174462306a36Sopenharmony_ci#define STATUS_NDIS_ADAPTER_REMOVED cpu_to_le32(0xC0230018)
174562306a36Sopenharmony_ci#define STATUS_NDIS_UNSUPPORTED_MEDIA cpu_to_le32(0xC0230019)
174662306a36Sopenharmony_ci#define STATUS_NDIS_GROUP_ADDRESS_IN_USE cpu_to_le32(0xC023001A)
174762306a36Sopenharmony_ci#define STATUS_NDIS_FILE_NOT_FOUND cpu_to_le32(0xC023001B)
174862306a36Sopenharmony_ci#define STATUS_NDIS_ERROR_READING_FILE cpu_to_le32(0xC023001C)
174962306a36Sopenharmony_ci#define STATUS_NDIS_ALREADY_MAPPED cpu_to_le32(0xC023001D)
175062306a36Sopenharmony_ci#define STATUS_NDIS_RESOURCE_CONFLICT cpu_to_le32(0xC023001E)
175162306a36Sopenharmony_ci#define STATUS_NDIS_MEDIA_DISCONNECTED cpu_to_le32(0xC023001F)
175262306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_ADDRESS cpu_to_le32(0xC0230022)
175362306a36Sopenharmony_ci#define STATUS_NDIS_PAUSED cpu_to_le32(0xC023002A)
175462306a36Sopenharmony_ci#define STATUS_NDIS_INTERFACE_NOT_FOUND cpu_to_le32(0xC023002B)
175562306a36Sopenharmony_ci#define STATUS_NDIS_UNSUPPORTED_REVISION cpu_to_le32(0xC023002C)
175662306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_PORT cpu_to_le32(0xC023002D)
175762306a36Sopenharmony_ci#define STATUS_NDIS_INVALID_PORT_STATE cpu_to_le32(0xC023002E)
175862306a36Sopenharmony_ci#define STATUS_NDIS_LOW_POWER_STATE cpu_to_le32(0xC023002F)
175962306a36Sopenharmony_ci#define STATUS_NDIS_NOT_SUPPORTED cpu_to_le32(0xC02300BB)
176062306a36Sopenharmony_ci#define STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED cpu_to_le32(0xC0232000)
176162306a36Sopenharmony_ci#define STATUS_NDIS_DOT11_MEDIA_IN_USE cpu_to_le32(0xC0232001)
176262306a36Sopenharmony_ci#define STATUS_NDIS_DOT11_POWER_STATE_INVALID cpu_to_le32(0xC0232002)
176362306a36Sopenharmony_ci#define STATUS_IPSEC_BAD_SPI cpu_to_le32(0xC0360001)
176462306a36Sopenharmony_ci#define STATUS_IPSEC_SA_LIFETIME_EXPIRED cpu_to_le32(0xC0360002)
176562306a36Sopenharmony_ci#define STATUS_IPSEC_WRONG_SA cpu_to_le32(0xC0360003)
176662306a36Sopenharmony_ci#define STATUS_IPSEC_REPLAY_CHECK_FAILED cpu_to_le32(0xC0360004)
176762306a36Sopenharmony_ci#define STATUS_IPSEC_INVALID_PACKET cpu_to_le32(0xC0360005)
176862306a36Sopenharmony_ci#define STATUS_IPSEC_INTEGRITY_CHECK_FAILED cpu_to_le32(0xC0360006)
176962306a36Sopenharmony_ci#define STATUS_IPSEC_CLEAR_TEXT_DROP cpu_to_le32(0xC0360007)
1770