112 lines
3.1 KiB
MonkeyC
112 lines
3.1 KiB
MonkeyC
;/*++ BUILD Version: 0001 // Increment this if a change has global effects
|
|
;
|
|
;Copyright (C) 1992, 1993 Microsoft Corporation
|
|
;
|
|
;Module Name:
|
|
;
|
|
; ntiologc.h
|
|
;
|
|
;Abstract:
|
|
;
|
|
; Constant definitions for the I/O error code log values.
|
|
;
|
|
;Author:
|
|
;
|
|
; Tony Ercolano (Tonye) 12-23-1992
|
|
;
|
|
;Revision History:
|
|
;
|
|
;--*/
|
|
;
|
|
;#ifndef _PARLOG_
|
|
;#define _PARLOG_
|
|
;
|
|
;//
|
|
;// Status values are 32 bit values layed out as follows:
|
|
;//
|
|
;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
|
|
;// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
|
;// +---+-+-------------------------+-------------------------------+
|
|
;// |Sev|C| Facility | Code |
|
|
;// +---+-+-------------------------+-------------------------------+
|
|
;//
|
|
;// where
|
|
;//
|
|
;// Sev - is the severity code
|
|
;//
|
|
;// 00 - Success
|
|
;// 01 - Informational
|
|
;// 10 - Warning
|
|
;// 11 - Error
|
|
;//
|
|
;// C - is the Customer code flag
|
|
;//
|
|
;// Facility - is the facility code
|
|
;//
|
|
;// Code - is the facility's status code
|
|
;//
|
|
;
|
|
MessageIdTypedef=NTSTATUS
|
|
|
|
SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
|
|
Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
|
|
Warning=0x2:STATUS_SEVERITY_WARNING
|
|
Error=0x3:STATUS_SEVERITY_ERROR
|
|
)
|
|
|
|
FacilityNames=(System=0x0
|
|
RpcRuntime=0x2:FACILITY_RPC_RUNTIME
|
|
RpcStubs=0x3:FACILITY_RPC_STUBS
|
|
Io=0x4:FACILITY_IO_ERROR_CODE
|
|
Parallel=0x7:FACILITY_PARALLEL_ERROR_CODE
|
|
)
|
|
|
|
|
|
|
|
MessageId=0x0003 Facility=Parallel Severity=Error SymbolicName=PAR_INSUFFICIENT_RESOURCES
|
|
Language=English
|
|
Not enough memory was available to allocate internal storage needed for the device %1.
|
|
.
|
|
|
|
MessageId=0x0004 Facility=Parallel Severity=Error SymbolicName=PAR_REGISTERS_NOT_MAPPED
|
|
Language=English
|
|
The hardware locations for %1 could not be translated to something the memory management system could understand.
|
|
.
|
|
|
|
MessageId=0x0005 Facility=Parallel Severity=Error SymbolicName=PAR_ADDRESS_CONFLICT
|
|
Language=English
|
|
The hardware addresses for %1 are already in use by another device.
|
|
.
|
|
|
|
MessageId=0x0006 Facility=Parallel Severity=Error SymbolicName=PAR_NOT_ENOUGH_CONFIG_INFO
|
|
Language=English
|
|
Some firmware configuration information was incomplete.
|
|
.
|
|
|
|
MessageId=0x000D Facility=Parallel Severity=Informational SymbolicName=PAR_USER_OVERRIDE
|
|
Language=English
|
|
User configuration data is overriding firmware configuration data.
|
|
.
|
|
|
|
MessageId=0x000E Facility=Parallel Severity=Error SymbolicName=PAR_DEVICE_TOO_HIGH
|
|
Language=English
|
|
The user specified port is way too high in physical memory.
|
|
.
|
|
|
|
MessageId=0x000F Facility=Parallel Severity=Error SymbolicName=PAR_CONTROL_OVERLAP
|
|
Language=English
|
|
The control registers for the port overlaps with a previous ports control registers.
|
|
.
|
|
|
|
MessageId=0x0013 Facility=Parallel Severity=Informational SymbolicName=PAR_DISABLED_PORT
|
|
Language=English
|
|
Disabling port %1 as requested by the configuration data.
|
|
.
|
|
|
|
MessageId=0x0014 Facility=Parallel Severity=Warning SymbolicName=PAR_INTERRUPT_CONFLICT
|
|
Language=English
|
|
Interrupt conflict detected for %1.
|
|
.
|
|
|
|
;#endif /* _NTIOLOGC_ */
|