UNPKG

@netlify/plugin-nextjs

Version:
2,654 lines (2,354 loc) 354 kB
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. /*++ Copyright (c) Microsoft Corporation. All rights reserved. You may only use this code if you agree to the terms of the Windows Research Kernel Source Code License agreement (see License.txt). If you do not agree to the terms, do not use the code. Module: winderror.h Abstract: Win32 API functions --*/ // This module ports: // - https://raw.githubusercontent.com/mic101/windows/master/WRK-v1.2/public/sdk/inc/winerror.h // MessageId: ERROR_SUCCESS // // MessageText: // // The operation completed successfully. // export const ERROR_SUCCESS = 0; // // MessageId: ERROR_INVALID_FUNCTION // // MessageText: // // Incorrect function. // export const ERROR_INVALID_FUNCTION = 1; // dderror // // MessageId: ERROR_FILE_NOT_FOUND // // MessageText: // // The system cannot find the file specified. // export const ERROR_FILE_NOT_FOUND = 2; // // MessageId: ERROR_PATH_NOT_FOUND // // MessageText: // // The system cannot find the path specified. // export const ERROR_PATH_NOT_FOUND = 3; // // MessageId: ERROR_TOO_MANY_OPEN_FILES // // MessageText: // // The system cannot open the file. // export const ERROR_TOO_MANY_OPEN_FILES = 4; // // MessageId: ERROR_ACCESS_DENIED // // MessageText: // // Access is denied. // export const ERROR_ACCESS_DENIED = 5; // // MessageId: ERROR_INVALID_HANDLE // // MessageText: // // The handle is invalid. // export const ERROR_INVALID_HANDLE = 6; // // MessageId: ERROR_ARENA_TRASHED // // MessageText: // // The storage control blocks were destroyed. // export const ERROR_ARENA_TRASHED = 7; // // MessageId: ERROR_NOT_ENOUGH_MEMORY // // MessageText: // // Not enough storage is available to process this command. // export const ERROR_NOT_ENOUGH_MEMORY = 8; // dderror // // MessageId: ERROR_INVALID_BLOCK // // MessageText: // // The storage control block address is invalid. // export const ERROR_INVALID_BLOCK = 9; // // MessageId: ERROR_BAD_ENVIRONMENT // // MessageText: // // The environment is incorrect. // export const ERROR_BAD_ENVIRONMENT = 10; // // MessageId: ERROR_BAD_FORMAT // // MessageText: // // An attempt was made to load a program with an incorrect format. // export const ERROR_BAD_FORMAT = 11; // // MessageId: ERROR_INVALID_ACCESS // // MessageText: // // The access code is invalid. // export const ERROR_INVALID_ACCESS = 12; // // MessageId: ERROR_INVALID_DATA // // MessageText: // // The data is invalid. // export const ERROR_INVALID_DATA = 13; // // MessageId: ERROR_OUTOFMEMORY // // MessageText: // // Not enough storage is available to complete this operation. // export const ERROR_OUTOFMEMORY = 14; // // MessageId: ERROR_INVALID_DRIVE // // MessageText: // // The system cannot find the drive specified. // export const ERROR_INVALID_DRIVE = 15; // // MessageId: ERROR_CURRENT_DIRECTORY // // MessageText: // // The directory cannot be removed. // export const ERROR_CURRENT_DIRECTORY = 16; // // MessageId: ERROR_NOT_SAME_DEVICE // // MessageText: // // The system cannot move the file to a different disk drive. // export const ERROR_NOT_SAME_DEVICE = 17; // // MessageId: ERROR_NO_MORE_FILES // // MessageText: // // There are no more files. // export const ERROR_NO_MORE_FILES = 18; // // MessageId: ERROR_WRITE_PROTECT // // MessageText: // // The media is write protected. // export const ERROR_WRITE_PROTECT = 19; // // MessageId: ERROR_BAD_UNIT // // MessageText: // // The system cannot find the device specified. // export const ERROR_BAD_UNIT = 20; // // MessageId: ERROR_NOT_READY // // MessageText: // // The device is not ready. // export const ERROR_NOT_READY = 21; // // MessageId: ERROR_BAD_COMMAND // // MessageText: // // The device does not recognize the command. // export const ERROR_BAD_COMMAND = 22; // // MessageId: ERROR_CRC // // MessageText: // // Data error (cyclic redundancy check). // export const ERROR_CRC = 23; // // MessageId: ERROR_BAD_LENGTH // // MessageText: // // The program issued a command but the command length is incorrect. // export const ERROR_BAD_LENGTH = 24; // // MessageId: ERROR_SEEK // // MessageText: // // The drive cannot locate a specific area or track on the disk. // export const ERROR_SEEK = 25; // // MessageId: ERROR_NOT_DOS_DISK // // MessageText: // // The specified disk or diskette cannot be accessed. // export const ERROR_NOT_DOS_DISK = 26; // // MessageId: ERROR_SECTOR_NOT_FOUND // // MessageText: // // The drive cannot find the sector requested. // export const ERROR_SECTOR_NOT_FOUND = 27; // // MessageId: ERROR_OUT_OF_PAPER // // MessageText: // // The printer is out of paper. // export const ERROR_OUT_OF_PAPER = 28; // // MessageId: ERROR_WRITE_FAULT // // MessageText: // // The system cannot write to the specified device. // export const ERROR_WRITE_FAULT = 29; // // MessageId: ERROR_READ_FAULT // // MessageText: // // The system cannot read from the specified device. // export const ERROR_READ_FAULT = 30; // // MessageId: ERROR_GEN_FAILURE // // MessageText: // // A device attached to the system is not functioning. // export const ERROR_GEN_FAILURE = 31; // // MessageId: ERROR_SHARING_VIOLATION // // MessageText: // // The process cannot access the file because it is being used by another process. // export const ERROR_SHARING_VIOLATION = 32; // // MessageId: ERROR_LOCK_VIOLATION // // MessageText: // // The process cannot access the file because another process has locked a portion of the file. // export const ERROR_LOCK_VIOLATION = 33; // // MessageId: ERROR_WRONG_DISK // // MessageText: // // The wrong diskette is in the drive. // Insert %2 (Volume Serial Number: %3) into drive %1. // export const ERROR_WRONG_DISK = 34; // // MessageId: ERROR_SHARING_BUFFER_EXCEEDED // // MessageText: // // Too many files opened for sharing. // export const ERROR_SHARING_BUFFER_EXCEEDED = 36; // // MessageId: ERROR_HANDLE_EOF // // MessageText: // // Reached the end of the file. // export const ERROR_HANDLE_EOF = 38; // // MessageId: ERROR_HANDLE_DISK_FULL // // MessageText: // // The disk is full. // export const ERROR_HANDLE_DISK_FULL = 39; // // MessageId: ERROR_NOT_SUPPORTED // // MessageText: // // The request is not supported. // export const ERROR_NOT_SUPPORTED = 50; // // MessageId: ERROR_REM_NOT_LIST // // MessageText: // // Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator. // export const ERROR_REM_NOT_LIST = 51; // // MessageId: ERROR_DUP_NAME // // MessageText: // // You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name and try again. // export const ERROR_DUP_NAME = 52; // // MessageId: ERROR_BAD_NETPATH // // MessageText: // // The network path was not found. // export const ERROR_BAD_NETPATH = 53; // // MessageId: ERROR_NETWORK_BUSY // // MessageText: // // The network is busy. // export const ERROR_NETWORK_BUSY = 54; // // MessageId: ERROR_DEV_NOT_EXIST // // MessageText: // // The specified network resource or device is no longer available. // export const ERROR_DEV_NOT_EXIST = 55; // dderror // // MessageId: ERROR_TOO_MANY_CMDS // // MessageText: // // The network BIOS command limit has been reached. // export const ERROR_TOO_MANY_CMDS = 56; // // MessageId: ERROR_ADAP_HDW_ERR // // MessageText: // // A network adapter hardware error occurred. // export const ERROR_ADAP_HDW_ERR = 57; // // MessageId: ERROR_BAD_NET_RESP // // MessageText: // // The specified server cannot perform the requested operation. // export const ERROR_BAD_NET_RESP = 58; // // MessageId: ERROR_UNEXP_NET_ERR // // MessageText: // // An unexpected network error occurred. // export const ERROR_UNEXP_NET_ERR = 59; // // MessageId: ERROR_BAD_REM_ADAP // // MessageText: // // The remote adapter is not compatible. // export const ERROR_BAD_REM_ADAP = 60; // // MessageId: ERROR_PRINTQ_FULL // // MessageText: // // The printer queue is full. // export const ERROR_PRINTQ_FULL = 61; // // MessageId: ERROR_NO_SPOOL_SPACE // // MessageText: // // Space to store the file waiting to be printed is not available on the server. // export const ERROR_NO_SPOOL_SPACE = 62; // // MessageId: ERROR_PRINT_CANCELLED // // MessageText: // // Your file waiting to be printed was deleted. // export const ERROR_PRINT_CANCELLED = 63; // // MessageId: ERROR_NETNAME_DELETED // // MessageText: // // The specified network name is no longer available. // export const ERROR_NETNAME_DELETED = 64; // // MessageId: ERROR_NETWORK_ACCESS_DENIED // // MessageText: // // Network access is denied. // export const ERROR_NETWORK_ACCESS_DENIED = 65; // // MessageId: ERROR_BAD_DEV_TYPE // // MessageText: // // The network resource type is not correct. // export const ERROR_BAD_DEV_TYPE = 66; // // MessageId: ERROR_BAD_NET_NAME // // MessageText: // // The network name cannot be found. // export const ERROR_BAD_NET_NAME = 67; // // MessageId: ERROR_TOO_MANY_NAMES // // MessageText: // // The name limit for the local computer network adapter card was exceeded. // export const ERROR_TOO_MANY_NAMES = 68; // // MessageId: ERROR_TOO_MANY_SESS // // MessageText: // // The network BIOS session limit was exceeded. // export const ERROR_TOO_MANY_SESS = 69; // // MessageId: ERROR_SHARING_PAUSED // // MessageText: // // The remote server has been paused or is in the process of being started. // export const ERROR_SHARING_PAUSED = 70; // // MessageId: ERROR_REQ_NOT_ACCEP // // MessageText: // // No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept. // export const ERROR_REQ_NOT_ACCEP = 71; // // MessageId: ERROR_REDIR_PAUSED // // MessageText: // // The specified printer or disk device has been paused. // export const ERROR_REDIR_PAUSED = 72; // // MessageId: ERROR_FILE_EXISTS // // MessageText: // // The file exists. // export const ERROR_FILE_EXISTS = 80; // // MessageId: ERROR_CANNOT_MAKE // // MessageText: // // The directory or file cannot be created. // export const ERROR_CANNOT_MAKE = 82; // // MessageId: ERROR_FAIL_I24 // // MessageText: // // Fail on INT 24. // export const ERROR_FAIL_I24 = 83; // // MessageId: ERROR_OUT_OF_STRUCTURES // // MessageText: // // Storage to process this request is not available. // export const ERROR_OUT_OF_STRUCTURES = 84; // // MessageId: ERROR_ALREADY_ASSIGNED // // MessageText: // // The local device name is already in use. // export const ERROR_ALREADY_ASSIGNED = 85; // // MessageId: ERROR_INVALID_PASSWORD // // MessageText: // // The specified network password is not correct. // export const ERROR_INVALID_PASSWORD = 86; // // MessageId: ERROR_INVALID_PARAMETER // // MessageText: // // The parameter is incorrect. // export const ERROR_INVALID_PARAMETER = 87; // dderror // // MessageId: ERROR_NET_WRITE_FAULT // // MessageText: // // A write fault occurred on the network. // export const ERROR_NET_WRITE_FAULT = 88; // // MessageId: ERROR_NO_PROC_SLOTS // // MessageText: // // The system cannot start another process at this time. // export const ERROR_NO_PROC_SLOTS = 89; // // MessageId: ERROR_TOO_MANY_SEMAPHORES // // MessageText: // // Cannot create another system semaphore. // export const ERROR_TOO_MANY_SEMAPHORES = 100; // // MessageId: ERROR_EXCL_SEM_ALREADY_OWNED // // MessageText: // // The exclusive semaphore is owned by another process. // export const ERROR_EXCL_SEM_ALREADY_OWNED = 101; // // MessageId: ERROR_SEM_IS_SET // // MessageText: // // The semaphore is set and cannot be closed. // export const ERROR_SEM_IS_SET = 102; // // MessageId: ERROR_TOO_MANY_SEM_REQUESTS // // MessageText: // // The semaphore cannot be set again. // export const ERROR_TOO_MANY_SEM_REQUESTS = 103; // // MessageId: ERROR_INVALID_AT_INTERRUPT_TIME // // MessageText: // // Cannot request exclusive semaphores at interrupt time. // export const ERROR_INVALID_AT_INTERRUPT_TIME = 104; // // MessageId: ERROR_SEM_OWNER_DIED // // MessageText: // // The previous ownership of this semaphore has ended. // export const ERROR_SEM_OWNER_DIED = 105; // // MessageId: ERROR_SEM_USER_LIMIT // // MessageText: // // Insert the diskette for drive %1. // export const ERROR_SEM_USER_LIMIT = 106; // // MessageId: ERROR_DISK_CHANGE // // MessageText: // // The program stopped because an alternate diskette was not inserted. // export const ERROR_DISK_CHANGE = 107; // // MessageId: ERROR_DRIVE_LOCKED // // MessageText: // // The disk is in use or locked by another process. // export const ERROR_DRIVE_LOCKED = 108; // // MessageId: ERROR_BROKEN_PIPE // // MessageText: // // The pipe has been ended. // export const ERROR_BROKEN_PIPE = 109; // // MessageId: ERROR_OPEN_FAILED // // MessageText: // // The system cannot open the device or file specified. // export const ERROR_OPEN_FAILED = 110; // // MessageId: ERROR_BUFFER_OVERFLOW // // MessageText: // // The file name is too long. // export const ERROR_BUFFER_OVERFLOW = 111; // // MessageId: ERROR_DISK_FULL // // MessageText: // // There is not enough space on the disk. // export const ERROR_DISK_FULL = 112; // // MessageId: ERROR_NO_MORE_SEARCH_HANDLES // // MessageText: // // No more internal file identifiers available. // export const ERROR_NO_MORE_SEARCH_HANDLES = 113; // // MessageId: ERROR_INVALID_TARGET_HANDLE // // MessageText: // // The target internal file identifier is incorrect. // export const ERROR_INVALID_TARGET_HANDLE = 114; // // MessageId: ERROR_INVALID_CATEGORY // // MessageText: // // The IOCTL call made by the application program is not correct. // export const ERROR_INVALID_CATEGORY = 117; // // MessageId: ERROR_INVALID_VERIFY_SWITCH // // MessageText: // // The verify-on-write switch parameter value is not correct. // export const ERROR_INVALID_VERIFY_SWITCH = 118; // // MessageId: ERROR_BAD_DRIVER_LEVEL // // MessageText: // // The system does not support the command requested. // export const ERROR_BAD_DRIVER_LEVEL = 119; // // MessageId: ERROR_CALL_NOT_IMPLEMENTED // // MessageText: // // This function is not supported on this system. // export const ERROR_CALL_NOT_IMPLEMENTED = 120; // // MessageId: ERROR_SEM_TIMEOUT // // MessageText: // // The semaphore timeout period has expired. // export const ERROR_SEM_TIMEOUT = 121; // // MessageId: ERROR_INSUFFICIENT_BUFFER // // MessageText: // // The data area passed to a system call is too small. // export const ERROR_INSUFFICIENT_BUFFER = 122; // dderror // // MessageId: ERROR_INVALID_NAME // // MessageText: // // The filename, directory name, or volume label syntax is incorrect. // export const ERROR_INVALID_NAME = 123; // dderror // // MessageId: ERROR_INVALID_LEVEL // // MessageText: // // The system call level is not correct. // export const ERROR_INVALID_LEVEL = 124; // // MessageId: ERROR_NO_VOLUME_LABEL // // MessageText: // // The disk has no volume label. // export const ERROR_NO_VOLUME_LABEL = 125; // // MessageId: ERROR_MOD_NOT_FOUND // // MessageText: // // The specified module could not be found. // export const ERROR_MOD_NOT_FOUND = 126; // // MessageId: ERROR_PROC_NOT_FOUND // // MessageText: // // The specified procedure could not be found. // export const ERROR_PROC_NOT_FOUND = 127; // // MessageId: ERROR_WAIT_NO_CHILDREN // // MessageText: // // There are no child processes to wait for. // export const ERROR_WAIT_NO_CHILDREN = 128; // // MessageId: ERROR_CHILD_NOT_COMPLETE // // MessageText: // // The %1 application cannot be run in Win32 mode. // export const ERROR_CHILD_NOT_COMPLETE = 129; // // MessageId: ERROR_DIRECT_ACCESS_HANDLE // // MessageText: // // Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. // export const ERROR_DIRECT_ACCESS_HANDLE = 130; // // MessageId: ERROR_NEGATIVE_SEEK // // MessageText: // // An attempt was made to move the file pointer before the beginning of the file. // export const ERROR_NEGATIVE_SEEK = 131; // // MessageId: ERROR_SEEK_ON_DEVICE // // MessageText: // // The file pointer cannot be set on the specified device or file. // export const ERROR_SEEK_ON_DEVICE = 132; // // MessageId: ERROR_IS_JOIN_TARGET // // MessageText: // // A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. // export const ERROR_IS_JOIN_TARGET = 133; // // MessageId: ERROR_IS_JOINED // // MessageText: // // An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. // export const ERROR_IS_JOINED = 134; // // MessageId: ERROR_IS_SUBSTED // // MessageText: // // An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. // export const ERROR_IS_SUBSTED = 135; // // MessageId: ERROR_NOT_JOINED // // MessageText: // // The system tried to delete the JOIN of a drive that is not joined. // export const ERROR_NOT_JOINED = 136; // // MessageId: ERROR_NOT_SUBSTED // // MessageText: // // The system tried to delete the substitution of a drive that is not substituted. // export const ERROR_NOT_SUBSTED = 137; // // MessageId: ERROR_JOIN_TO_JOIN // // MessageText: // // The system tried to join a drive to a directory on a joined drive. // export const ERROR_JOIN_TO_JOIN = 138; // // MessageId: ERROR_SUBST_TO_SUBST // // MessageText: // // The system tried to substitute a drive to a directory on a substituted drive. // export const ERROR_SUBST_TO_SUBST = 139; // // MessageId: ERROR_JOIN_TO_SUBST // // MessageText: // // The system tried to join a drive to a directory on a substituted drive. // export const ERROR_JOIN_TO_SUBST = 140; // // MessageId: ERROR_SUBST_TO_JOIN // // MessageText: // // The system tried to SUBST a drive to a directory on a joined drive. // export const ERROR_SUBST_TO_JOIN = 141; // // MessageId: ERROR_BUSY_DRIVE // // MessageText: // // The system cannot perform a JOIN or SUBST at this time. // export const ERROR_BUSY_DRIVE = 142; // // MessageId: ERROR_SAME_DRIVE // // MessageText: // // The system cannot join or substitute a drive to or for a directory on the same drive. // export const ERROR_SAME_DRIVE = 143; // // MessageId: ERROR_DIR_NOT_ROOT // // MessageText: // // The directory is not a subdirectory of the root directory. // export const ERROR_DIR_NOT_ROOT = 144; // // MessageId: ERROR_DIR_NOT_EMPTY // // MessageText: // // The directory is not empty. // export const ERROR_DIR_NOT_EMPTY = 145; // // MessageId: ERROR_IS_SUBST_PATH // // MessageText: // // The path specified is being used in a substitute. // export const ERROR_IS_SUBST_PATH = 146; // // MessageId: ERROR_IS_JOIN_PATH // // MessageText: // // Not enough resources are available to process this command. // export const ERROR_IS_JOIN_PATH = 147; // // MessageId: ERROR_PATH_BUSY // // MessageText: // // The path specified cannot be used at this time. // export const ERROR_PATH_BUSY = 148; // // MessageId: ERROR_IS_SUBST_TARGET // // MessageText: // // An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute. // export const ERROR_IS_SUBST_TARGET = 149; // // MessageId: ERROR_SYSTEM_TRACE // // MessageText: // // System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed. // export const ERROR_SYSTEM_TRACE = 150; // // MessageId: ERROR_INVALID_EVENT_COUNT // // MessageText: // // The number of specified semaphore events for DosMuxSemWait is not correct. // export const ERROR_INVALID_EVENT_COUNT = 151; // // MessageId: ERROR_TOO_MANY_MUXWAITERS // // MessageText: // // DosMuxSemWait did not execute; too many semaphores are already set. // export const ERROR_TOO_MANY_MUXWAITERS = 152; // // MessageId: ERROR_INVALID_LIST_FORMAT // // MessageText: // // The DosMuxSemWait list is not correct. // export const ERROR_INVALID_LIST_FORMAT = 153; // // MessageId: ERROR_LABEL_TOO_LONG // // MessageText: // // The volume label you entered exceeds the label character limit of the target file system. // export const ERROR_LABEL_TOO_LONG = 154; // // MessageId: ERROR_TOO_MANY_TCBS // // MessageText: // // Cannot create another thread. // export const ERROR_TOO_MANY_TCBS = 155; // // MessageId: ERROR_SIGNAL_REFUSED // // MessageText: // // The recipient process has refused the signal. // export const ERROR_SIGNAL_REFUSED = 156; // // MessageId: ERROR_DISCARDED // // MessageText: // // The segment is already discarded and cannot be locked. // export const ERROR_DISCARDED = 157; // // MessageId: ERROR_NOT_LOCKED // // MessageText: // // The segment is already unlocked. // export const ERROR_NOT_LOCKED = 158; // // MessageId: ERROR_BAD_THREADID_ADDR // // MessageText: // // The address for the thread ID is not correct. // export const ERROR_BAD_THREADID_ADDR = 159; // // MessageId: ERROR_BAD_ARGUMENTS // // MessageText: // // One or more arguments are not correct. // export const ERROR_BAD_ARGUMENTS = 160; // // MessageId: ERROR_BAD_PATHNAME // // MessageText: // // The specified path is invalid. // export const ERROR_BAD_PATHNAME = 161; // // MessageId: ERROR_SIGNAL_PENDING // // MessageText: // // A signal is already pending. // export const ERROR_SIGNAL_PENDING = 162; // // MessageId: ERROR_MAX_THRDS_REACHED // // MessageText: // // No more threads can be created in the system. // export const ERROR_MAX_THRDS_REACHED = 164; // // MessageId: ERROR_LOCK_FAILED // // MessageText: // // Unable to lock a region of a file. // export const ERROR_LOCK_FAILED = 167; // // MessageId: ERROR_BUSY // // MessageText: // // The requested resource is in use. // export const ERROR_BUSY = 170; // dderror // // MessageId: ERROR_CANCEL_VIOLATION // // MessageText: // // A lock request was not outstanding for the supplied cancel region. // export const ERROR_CANCEL_VIOLATION = 173; // // MessageId: ERROR_ATOMIC_LOCKS_NOT_SUPPORTED // // MessageText: // // The file system does not support atomic changes to the lock type. // export const ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174; // // MessageId: ERROR_INVALID_SEGMENT_NUMBER // // MessageText: // // The system detected a segment number that was not correct. // export const ERROR_INVALID_SEGMENT_NUMBER = 180; // // MessageId: ERROR_INVALID_ORDINAL // // MessageText: // // The operating system cannot run %1. // export const ERROR_INVALID_ORDINAL = 182; // // MessageId: ERROR_ALREADY_EXISTS // // MessageText: // // Cannot create a file when that file already exists. // export const ERROR_ALREADY_EXISTS = 183; // // MessageId: ERROR_INVALID_FLAG_NUMBER // // MessageText: // // The flag passed is not correct. // export const ERROR_INVALID_FLAG_NUMBER = 186; // // MessageId: ERROR_SEM_NOT_FOUND // // MessageText: // // The specified system semaphore name was not found. // export const ERROR_SEM_NOT_FOUND = 187; // // MessageId: ERROR_INVALID_STARTING_CODESEG // // MessageText: // // The operating system cannot run %1. // export const ERROR_INVALID_STARTING_CODESEG = 188; // // MessageId: ERROR_INVALID_STACKSEG // // MessageText: // // The operating system cannot run %1. // export const ERROR_INVALID_STACKSEG = 189; // // MessageId: ERROR_INVALID_MODULETYPE // // MessageText: // // The operating system cannot run %1. // export const ERROR_INVALID_MODULETYPE = 190; // // MessageId: ERROR_INVALID_EXE_SIGNATURE // // MessageText: // // Cannot run %1 in Win32 mode. // export const ERROR_INVALID_EXE_SIGNATURE = 191; // // MessageId: ERROR_EXE_MARKED_INVALID // // MessageText: // // The operating system cannot run %1. // export const ERROR_EXE_MARKED_INVALID = 192; // // MessageId: ERROR_BAD_EXE_FORMAT // // MessageText: // // %1 is not a valid Win32 application. // export const ERROR_BAD_EXE_FORMAT = 193; // // MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k // // MessageText: // // The operating system cannot run %1. // // deno-lint-ignore camelcase export const ERROR_ITERATED_DATA_EXCEEDS_64k = 194; // // MessageId: ERROR_INVALID_MINALLOCSIZE // // MessageText: // // The operating system cannot run %1. // export const ERROR_INVALID_MINALLOCSIZE = 195; // // MessageId: ERROR_DYNLINK_FROM_INVALID_RING // // MessageText: // // The operating system cannot run this application program. // export const ERROR_DYNLINK_FROM_INVALID_RING = 196; // // MessageId: ERROR_IOPL_NOT_ENABLED // // MessageText: // // The operating system is not presently configured to run this application. // export const ERROR_IOPL_NOT_ENABLED = 197; // // MessageId: ERROR_INVALID_SEGDPL // // MessageText: // // The operating system cannot run %1. // export const ERROR_INVALID_SEGDPL = 198; // // MessageId: ERROR_AUTODATASEG_EXCEEDS_64k // // MessageText: // // The operating system cannot run this application program. // // deno-lint-ignore camelcase export const ERROR_AUTODATASEG_EXCEEDS_64k = 199; // // MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE // // MessageText: // // The code segment cannot be greater than or equal to 64K. // export const ERROR_RING2SEG_MUST_BE_MOVABLE = 200; // // MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM // // MessageText: // // The operating system cannot run %1. // export const ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201; // // MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN // // MessageText: // // The operating system cannot run %1. // export const ERROR_INFLOOP_IN_RELOC_CHAIN = 202; // // MessageId: ERROR_ENVVAR_NOT_FOUND // // MessageText: // // The system could not find the environment option that was entered. // export const ERROR_ENVVAR_NOT_FOUND = 203; // // MessageId: ERROR_NO_SIGNAL_SENT // // MessageText: // // No process in the command subtree has a signal handler. // export const ERROR_NO_SIGNAL_SENT = 205; // // MessageId: ERROR_FILENAME_EXCED_RANGE // // MessageText: // // The filename or extension is too long. // export const ERROR_FILENAME_EXCED_RANGE = 206; // // MessageId: ERROR_RING2_STACK_IN_USE // // MessageText: // // The ring 2 stack is in use. // export const ERROR_RING2_STACK_IN_USE = 207; // // MessageId: ERROR_META_EXPANSION_TOO_LONG // // MessageText: // // The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. // export const ERROR_META_EXPANSION_TOO_LONG = 208; // // MessageId: ERROR_INVALID_SIGNAL_NUMBER // // MessageText: // // The signal being posted is not correct. // export const ERROR_INVALID_SIGNAL_NUMBER = 209; // // MessageId: ERROR_THREAD_1_INACTIVE // // MessageText: // // The signal handler cannot be set. // export const ERROR_THREAD_1_INACTIVE = 210; // // MessageId: ERROR_LOCKED // // MessageText: // // The segment is locked and cannot be reallocated. // export const ERROR_LOCKED = 212; // // MessageId: ERROR_TOO_MANY_MODULES // // MessageText: // // Too many dynamic-link modules are attached to this program or dynamic-link module. // export const ERROR_TOO_MANY_MODULES = 214; // // MessageId: ERROR_NESTING_NOT_ALLOWED // // MessageText: // // Cannot nest calls to LoadModule. // export const ERROR_NESTING_NOT_ALLOWED = 215; // // MessageId: ERROR_EXE_MACHINE_TYPE_MISMATCH // // MessageText: // // The image file %1 is valid, but is for a machine type other than the current machine. // export const ERROR_EXE_MACHINE_TYPE_MISMATCH = 216; // // MessageId: ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY // // MessageText: // // The image file %1 is signed, unable to modify. // export const ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = 217; // // MessageId: ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY // // MessageText: // // The image file %1 is strong signed, unable to modify. // export const ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218; // // MessageId: ERROR_BAD_PIPE // // MessageText: // // The pipe state is invalid. // export const ERROR_BAD_PIPE = 230; // // MessageId: ERROR_PIPE_BUSY // // MessageText: // // All pipe instances are busy. // export const ERROR_PIPE_BUSY = 231; // // MessageId: ERROR_NO_DATA // // MessageText: // // The pipe is being closed. // export const ERROR_NO_DATA = 232; // // MessageId: ERROR_PIPE_NOT_CONNECTED // // MessageText: // // No process is on the other end of the pipe. // export const ERROR_PIPE_NOT_CONNECTED = 233; // // MessageId: ERROR_MORE_DATA // // MessageText: // // More data is available. // export const ERROR_MORE_DATA = 234; // dderror // // MessageId: ERROR_VC_DISCONNECTED // // MessageText: // // The session was canceled. // export const ERROR_VC_DISCONNECTED = 240; // // MessageId: ERROR_INVALID_EA_NAME // // MessageText: // // The specified extended attribute name was invalid. // export const ERROR_INVALID_EA_NAME = 254; // // MessageId: ERROR_EA_LIST_INCONSISTENT // // MessageText: // // The extended attributes are inconsistent. // export const ERROR_EA_LIST_INCONSISTENT = 255; // // MessageId: WAIT_TIMEOUT // // MessageText: // // The wait operation timed out. // export const WAIT_TIMEOUT = 258; // dderror // // MessageId: ERROR_NO_MORE_ITEMS // // MessageText: // // No more data is available. // export const ERROR_NO_MORE_ITEMS = 259; // // MessageId: ERROR_CANNOT_COPY // // MessageText: // // The copy functions cannot be used. // export const ERROR_CANNOT_COPY = 266; // // MessageId: ERROR_DIRECTORY // // MessageText: // // The directory name is invalid. // export const ERROR_DIRECTORY = 267; // // MessageId: ERROR_EAS_DIDNT_FIT // // MessageText: // // The extended attributes did not fit in the buffer. // export const ERROR_EAS_DIDNT_FIT = 275; // // MessageId: ERROR_EA_FILE_CORRUPT // // MessageText: // // The extended attribute file on the mounted file system is corrupt. // export const ERROR_EA_FILE_CORRUPT = 276; // // MessageId: ERROR_EA_TABLE_FULL // // MessageText: // // The extended attribute table file is full. // export const ERROR_EA_TABLE_FULL = 277; // // MessageId: ERROR_INVALID_EA_HANDLE // // MessageText: // // The specified extended attribute handle is invalid. // export const ERROR_INVALID_EA_HANDLE = 278; // // MessageId: ERROR_EAS_NOT_SUPPORTED // // MessageText: // // The mounted file system does not support extended attributes. // export const ERROR_EAS_NOT_SUPPORTED = 282; // // MessageId: ERROR_NOT_OWNER // // MessageText: // // Attempt to release mutex not owned by caller. // export const ERROR_NOT_OWNER = 288; // // MessageId: ERROR_TOO_MANY_POSTS // // MessageText: // // Too many posts were made to a semaphore. // export const ERROR_TOO_MANY_POSTS = 298; // // MessageId: ERROR_PARTIAL_COPY // // MessageText: // // Only part of a ReadProcessMemory or WriteProcessMemory request was completed. // export const ERROR_PARTIAL_COPY = 299; // // MessageId: ERROR_OPLOCK_NOT_GRANTED // // MessageText: // // The oplock request is denied. // export const ERROR_OPLOCK_NOT_GRANTED = 300; // // MessageId: ERROR_INVALID_OPLOCK_PROTOCOL // // MessageText: // // An invalid oplock acknowledgment was received by the system. // export const ERROR_INVALID_OPLOCK_PROTOCOL = 301; // // MessageId: ERROR_DISK_TOO_FRAGMENTED // // MessageText: // // The volume is too fragmented to complete this operation. // export const ERROR_DISK_TOO_FRAGMENTED = 302; // // MessageId: ERROR_DELETE_PENDING // // MessageText: // // The file cannot be opened because it is in the process of being deleted. // export const ERROR_DELETE_PENDING = 303; // // MessageId: ERROR_MR_MID_NOT_FOUND // // MessageText: // // The system cannot find message text for message number 0x%1 in the message file for %2. // export const ERROR_MR_MID_NOT_FOUND = 317; // // MessageId: ERROR_SCOPE_NOT_FOUND // // MessageText: // // The scope specified was not found. // export const ERROR_SCOPE_NOT_FOUND = 318; // // MessageId: ERROR_INVALID_ADDRESS // // MessageText: // // Attempt to access invalid address. // export const ERROR_INVALID_ADDRESS = 487; // // MessageId: ERROR_ARITHMETIC_OVERFLOW // // MessageText: // // Arithmetic result exceeded 32 bits. // export const ERROR_ARITHMETIC_OVERFLOW = 534; // // MessageId: ERROR_PIPE_CONNECTED // // MessageText: // // There is a process on other end of the pipe. // export const ERROR_PIPE_CONNECTED = 535; // // MessageId: ERROR_PIPE_LISTENING // // MessageText: // // Waiting for a process to open the other end of the pipe. // export const ERROR_PIPE_LISTENING = 536; // // MessageId: ERROR_EA_ACCESS_DENIED // // MessageText: // // Access to the extended attribute was denied. // export const ERROR_EA_ACCESS_DENIED = 994; // // MessageId: ERROR_OPERATION_ABORTED // // MessageText: // // The I/O operation has been aborted because of either a thread exit or an application request. // export const ERROR_OPERATION_ABORTED = 995; // // MessageId: ERROR_IO_INCOMPLETE // // MessageText: // // Overlapped I/O event is not in a signaled state. // export const ERROR_IO_INCOMPLETE = 996; // // MessageId: ERROR_IO_PENDING // // MessageText: // // Overlapped I/O operation is in progress. // export const ERROR_IO_PENDING = 997; // dderror // // MessageId: ERROR_NOACCESS // // MessageText: // // Invalid access to memory location. // export const ERROR_NOACCESS = 998; // // MessageId: ERROR_SWAPERROR // // MessageText: // // Error performing inpage operation. // export const ERROR_SWAPERROR = 999; // // MessageId: ERROR_STACK_OVERFLOW // // MessageText: // // Recursion too deep; the stack overflowed. // export const ERROR_STACK_OVERFLOW = 1001; // // MessageId: ERROR_INVALID_MESSAGE // // MessageText: // // The window cannot act on the sent message. // export const ERROR_INVALID_MESSAGE = 1002; // // MessageId: ERROR_CAN_NOT_COMPLETE // // MessageText: // // Cannot complete this function. // export const ERROR_CAN_NOT_COMPLETE = 1003; // // MessageId: ERROR_INVALID_FLAGS // // MessageText: // // Invalid flags. // export const ERROR_INVALID_FLAGS = 1004; // // MessageId: ERROR_UNRECOGNIZED_VOLUME // // MessageText: // // The volume does not contain a recognized file system. // Please make sure that all required file system drivers are loaded and that the volume is not corrupted. // export const ERROR_UNRECOGNIZED_VOLUME = 1005; // // MessageId: ERROR_FILE_INVALID // // MessageText: // // The volume for a file has been externally altered so that the opened file is no longer valid. // export const ERROR_FILE_INVALID = 1006; // // MessageId: ERROR_FULLSCREEN_MODE // // MessageText: // // The requested operation cannot be performed in full-screen mode. // export const ERROR_FULLSCREEN_MODE = 1007; // // MessageId: ERROR_NO_TOKEN // // MessageText: // // An attempt was made to reference a token that does not exist. // export const ERROR_NO_TOKEN = 1008; // // MessageId: ERROR_BADDB // // MessageText: // // The configuration registry database is corrupt. // export const ERROR_BADDB = 1009; // // MessageId: ERROR_BADKEY // // MessageText: // // The configuration registry key is invalid. // export const ERROR_BADKEY = 1010; // // MessageId: ERROR_CANTOPEN // // MessageText: // // The configuration registry key could not be opened. // export const ERROR_CANTOPEN = 1011; // // MessageId: ERROR_CANTREAD // // MessageText: // // The configuration registry key could not be read. // export const ERROR_CANTREAD = 1012; // // MessageId: ERROR_CANTWRITE // // MessageText: // // The configuration registry key could not be written. // export const ERROR_CANTWRITE = 1013; // // MessageId: ERROR_REGISTRY_RECOVERED // // MessageText: // // One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. // export const ERROR_REGISTRY_RECOVERED = 1014; // // MessageId: ERROR_REGISTRY_CORRUPT // // MessageText: // // The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted. // export const ERROR_REGISTRY_CORRUPT = 1015; // // MessageId: ERROR_REGISTRY_IO_FAILED // // MessageText: // // An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry. // export const ERROR_REGISTRY_IO_FAILED = 1016; // // MessageId: ERROR_NOT_REGISTRY_FILE // // MessageText: // // The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. // export const ERROR_NOT_REGISTRY_FILE = 1017; // // MessageId: ERROR_KEY_DELETED // // MessageText: // // Illegal operation attempted on a registry key that has been marked for deletion. // export const ERROR_KEY_DELETED = 1018; // // MessageId: ERROR_NO_LOG_SPACE // // MessageText: // // System could not allocate the required space in a registry log. // export const ERROR_NO_LOG_SPACE = 1019; // // MessageId: ERROR_KEY_HAS_CHILDREN // // MessageText: // // Cannot create a symbolic link in a registry key that already has subkeys or values. // export const ERROR_KEY_HAS_CHILDREN = 1020; // // MessageId: ERROR_CHILD_MUST_BE_VOLATILE // // MessageText: // // Cannot create a stable subkey under a volatile parent key. // export const ERROR_CHILD_MUST_BE_VOLATILE = 1021; // // MessageId: ERROR_NOTIFY_ENUM_DIR // // MessageText: // // A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes. // export const ERROR_NOTIFY_ENUM_DIR = 1022; // // MessageId: ERROR_DEPENDENT_SERVICES_RUNNING // // MessageText: // // A stop control has been sent to a service that other running services are dependent on. // export const ERROR_DEPENDENT_SERVICES_RUNNING = 1051; // // MessageId: ERROR_INVALID_SERVICE_CONTROL // // MessageText: // // The requested control is not valid for this service. // export const ERROR_INVALID_SERVICE_CONTROL = 1052; // // MessageId: ERROR_SERVICE_REQUEST_TIMEOUT // // MessageText: // // The service did not respond to the start or control request in a timely fashion. // export const ERROR_SERVICE_REQUEST_TIMEOUT = 1053; // // MessageId: ERROR_SERVICE_NO_THREAD // // MessageText: // // A thread could not be created for the service. // export const ERROR_SERVICE_NO_THREAD = 1054; // // MessageId: ERROR_SERVICE_DATABASE_LOCKED // // MessageText: // // The service database is locked. // export const ERROR_SERVICE_DATABASE_LOCKED = 1055; // // MessageId: ERROR_SERVICE_ALREADY_RUNNING // // MessageText: // // An instance of the service is already running. // export const ERROR_SERVICE_ALREADY_RUNNING = 1056; // // MessageId: ERROR_INVALID_SERVICE_ACCOUNT // // MessageText: // // The account name is invalid or does not exist, or the password is invalid for the account name specified. // export const ERROR_INVALID_SERVICE_ACCOUNT = 1057; // // MessageId: ERROR_SERVICE_DISABLED // // MessageText: // // The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. // export const ERROR_SERVICE_DISABLED = 1058; // // MessageId: ERROR_CIRCULAR_DEPENDENCY // // MessageText: // // Circular service dependency was specified. // export const ERROR_CIRCULAR_DEPENDENCY = 1059; // // MessageId: ERROR_SERVICE_DOES_NOT_EXIST // // MessageText: // // The specified service does not exist as an installed service. // export const ERROR_SERVICE_DOES_NOT_EXIST = 1060; // // MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL // // MessageText: // // The service cannot accept control messages at this time. // export const ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061; // // MessageId: ERROR_SERVICE_NOT_ACTIVE // // MessageText: // // The service has not been started. // export const ERROR_SERVICE_NOT_ACTIVE = 1062; // // MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT // // MessageText: // // The service process could not connect to the service controller. // export const ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063; // // MessageId: ERROR_EXCEPTION_IN_SERVICE // // MessageText: // // An exception occurred in the service when handling the control request. // export const ERROR_EXCEPTION_IN_SERVICE = 1064; // // MessageId: ERROR_DATABASE_DOES_NOT_EXIST // // MessageText: // // The database specified does not exist. // export const ERROR_DATABASE_DOES_NOT_EXIST = 1065; // // MessageId: ERROR_SERVICE_SPECIFIC_ERROR // // MessageText: // // The service has returned a service-specific error code. // export const ERROR_SERVICE_SPECIFIC_ERROR = 1066; // // MessageId: ERROR_PROCESS_ABORTED // // MessageText: // // The process terminated unexpectedly. // export const ERROR_PROCESS_ABORTED = 1067; // // MessageId: ERROR_SERVICE_DEPENDENCY_FAIL // // MessageText: // // The dependency service or group failed to start. // export const ERROR_SERVICE_DEPENDENCY_FAIL = 1068; // // MessageId: ERROR_SERVICE_LOGON_FAILED // // MessageText: // // The service did not start due to a logon failure. // export const ERROR_SERVICE_LOGON_FAILED = 1069; // // MessageId: ERROR_SERVICE_START_HANG // // MessageText: // // After starting, the service hung in a start-pending state. // export const ERROR_SERVICE_START_HANG = 1070; // // MessageId: ERROR_INVALID_SERVICE_LOCK // // MessageText: // // The specified service database lock is invalid. // export const ERROR_INVALID_SERVICE_LOCK = 1071; // // MessageId: ERROR_SERVICE_MARKED_FOR_DELETE // // MessageText: // // The specified service has been marked for deletion. // export const ERROR_SERVICE_MARKED_FOR_DELETE = 1072; // // MessageId: ERROR_SERVICE_EXISTS // // MessageText: // // The specified service already exists. // export const ERROR_SERVICE_EXISTS = 1073; // // MessageId: ERROR_ALREADY_RUNNING_LKG // // MessageText: // // The system is currently running with the last-known-good configuration. // export const ERROR_ALREADY_RUNNING_LKG = 1074; // // MessageId: ERROR_SERVICE_DEPENDENCY_DELETED // // MessageText: // // The dependency service does not exist or has been marked for deletion. // export const ERROR_SERVICE_DEPENDENCY_DELETED = 1075; // // MessageId: ERROR_BOOT_ALREADY_ACCEPTED // // MessageText: // // The current boot has already been accepted for use as the last-known-good control set. // export const ERROR_BOOT_ALREADY_ACCEPTED = 1076; // // MessageId: ERROR_SERVICE_NEVER_STARTED // // MessageText: // // No attempts to start the service have been made since the last boot. // export const ERROR_SERVICE_NEVER_STARTED = 1077; // // MessageId: ERROR_DUPLICATE_SERVICE_NAME // // MessageText: // // The name is already in use as either a service name or a service display name. // export const ERROR_DUPLICATE_SERVICE_NAME = 1078; // // MessageId: ERROR_DIFFERENT_SERVICE_ACCOUNT // // MessageText: // // The account specified for this service is different from the account specified for other services running in the same process. // export const ERROR_DIFFERENT_SERVICE_ACCOUNT = 1079; // // MessageId: ERROR_CANNOT_DETECT_DRIVER_FAILURE // // MessageText: // // Failure actions can only be set for Win32 services, not for drivers. // export const ERROR_CANNOT_DETECT_DRIVER_FAILURE = 1080; // // MessageId: ERROR_CANNOT_DETECT_PROCESS_ABORT // // MessageText: // // This service runs in the same process as the service control manager. // Therefore, the service control manager cannot take action if this service's process terminates unexpectedly. // export const ERROR_CANNOT_DETECT_PROCESS_ABORT = 1081; // // MessageId: ERROR_NO_RECOVERY_PROGRAM // // MessageText: // // No recovery program has been configured for this service. // export const ERROR_NO_RECOVERY_PROGRAM = 1082; // // MessageId: ERROR_SERVICE_NOT_IN_EXE // // MessageText: // // The executable program that this service is configured to run in does not implement the service. // export const ERROR_SERVICE_NOT_IN_EXE = 1083; // // MessageId: ERROR_NOT_SAFEBOOT_SERVICE // // MessageText: // // This service cannot be started in Safe Mode // export const ERROR_NOT_SAFEBOOT_SERVICE = 1084; // // MessageId: ERROR_END_OF_MEDIA // // MessageText: // // The physical end of the tape has been reached. // export const ERROR_END_OF_MEDIA = 1100; // // MessageId: ERROR_FILEMARK_DETECTED // // MessageText: // // A tape access reached a filemark. // export const ERROR_FILEMARK_DETECTED = 1101; // // MessageId: ERROR_BEGINNING_OF_MEDIA // // MessageText: // // The beginning of the tape or a partition was encountered. // export const ERROR_BEGINNING_OF_MEDIA = 1102; // // MessageId: ERROR_SETMARK_DETECTED // // MessageText: // // A tape access reached the end of a set of files. // export const ERROR_SETMARK_DETECTED = 1103; // // MessageId: ERROR_NO_DATA_DETECTED // // MessageText: // // No more data is on the tape. // export const ERROR_NO_DATA_DETECTED = 1104; // // MessageId: ERROR_PARTITION_FAILURE // // MessageText: // // Tape could not be partitioned. // export const ERROR_PARTITION_FAILURE = 1105; // // MessageId: ERROR_INVALID_BLOCK_LENGTH // // MessageText: // // When accessing a new tape of a multivolume partition, the current block size is incorrect. // export const ERROR_INVALID_BLOCK_LENGTH = 1106; // // MessageId: ERROR_DEVICE_NOT_PARTITIONED // // MessageText: // // Tape partition information could not be found when loading a tape. // export const ERROR_DEVICE_NOT_PARTITIONED = 1107; // // MessageId: ERROR_UNABLE_TO_LOCK_MEDIA // // MessageText: // // Unable to lock the media eject mechanism. // export const ERROR_UNABLE_TO_LOCK_MEDIA = 1108; // // MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA // // MessageText: // // Unable to unload the media. // export const ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109; // // MessageId: ERROR_MEDIA_CHANGED // // MessageText: // // The media in the drive may have changed. // export const ERROR_MEDIA_CHANGED = 1110; // // MessageId: ERROR_BUS_RESET // // MessageText: // // The I/O bus was reset. // export const ERROR_BUS_RESET = 1111; // // MessageId: ERROR_NO_MEDIA_IN_DRIVE // // MessageText: // // No media in drive. // export const ERROR_NO_MEDIA_IN_DRIVE = 1112; // // MessageId: ERROR_NO_UNICODE_TRANSLATION // // MessageText: // // No mapping for the Unicode character exists in the target multi-byte code page. // export const ERROR_NO_UNICODE_TRANSLATION = 1113; // // MessageId: ERROR_DLL_INIT_FAILED // // MessageText: // // A dynamic link library (DLL) initialization routine failed. // export const ERROR_DLL_INIT_FAILED = 1114; // // MessageId: ERROR_SHUTDOWN_IN_PROGRESS // // MessageText: // // A system shutdown is in progress. // export const ERROR_SHUTDOWN_IN_PROGRESS = 1115; // // MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS // // MessageText: // // Unable to abort the system shutdown because no shutdown was in progress. // export const ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116; // // MessageId: ERROR_IO_DEVICE // // MessageText: // // The request could not be performed because of an I/O device error. // export const ERROR_IO_DEVICE = 1117; // // MessageId: ERROR_SERIAL_NO_DEVICE // // MessageText: // // No serial device was successfully initialized. The serial driver will unload. // export const ERROR_SERIAL_NO_DEVICE = 1118; // // MessageId: ERROR_IRQ_BUSY // // MessageText: // // Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened. // export const ERROR_IRQ_BUSY = 1119; // // MessageId: ERROR_MORE_WRITES // // MessageText: // // A serial I/O operation was completed by another write to the serial port. // (The IOCTL_SERIAL_XOFF_COUNTER reached zero.) // export const ERROR_MORE_WRITES = 1120; // // MessageId: ERROR_COUNTER_TIMEOUT // // MessageText: // // A serial I/O operation completed because the timeout period expired. // (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) // export const ERROR_COUNTER_TIMEOUT = 1121; // // MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND // // MessageText: // // No ID address mark was found on the floppy disk. // export const ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122; // // MessageId: ERROR_FLOPPY_WRONG_CYLINDER // // MessageText: // // Mismatch between the floppy disk sector ID field and the floppy disk controller track address. // export const ERROR_FLOPPY_WRONG_CYLINDER = 1123; // // MessageId: ERROR_FLOPPY_UNKNOWN_ERROR // // MessageText: // // The floppy disk controller reported an error that is not recognized by the floppy disk driver. // export const ERROR_FLOPPY_UNKNOWN_ERROR = 1124; // // MessageId: ERROR_FLOPPY_BAD_REGISTERS // // MessageText: // // The floppy disk controller returned inconsistent results in its registers. // export const ERROR_FLOPPY_BAD_REGISTERS = 1125; // // MessageId: ERROR_DISK_RECALIBRATE_FAILED // // MessageText: // // While accessing the hard disk, a recalibrate operation failed, even after retries. // export const ERROR_DISK_RECALIBRATE_FAILED = 1126; // // MessageId: ERROR_DISK_OPERATION_FAILED // // MessageText: // // While accessing the hard disk, a disk operation failed even after retries. // export const ERROR_DISK_OPERATION_FAILED = 1127; // // MessageId: ERROR_DISK_RESET_FAILED // // MessageText: // // While accessing the hard disk, a disk controller reset was needed, but even that failed. // export const ERROR_DISK_RESET_FAILED = 1128; // // MessageId: ERROR_EOM_OVERFLOW // // MessageText: // // Physical end of tape encountered. // export const ERROR_EOM_OVERFLOW = 1129; // // MessageId: ERROR_NOT_ENOUGH_SERVER_MEMORY // // MessageText: // // Not enough server storage is available to process this command. // export const ERROR_NOT_ENOUGH_