Annotation of ntddk/src/input/inport/inplog.mc, revision 1.1

1.1     ! root        1: ;/*++ BUILD Version: 0001    // Increment this if a change has global effects
        !             2: ;
        !             3: ;Copyright (c) 1992, 1993  Microsoft Corporation
        !             4: ;
        !             5: ;Module Name:
        !             6: ;
        !             7: ;    inplog.mc
        !             8: ;
        !             9: ;Abstract:
        !            10: ;
        !            11: ;    Constant definitions for the I/O error code log values.
        !            12: ;
        !            13: ;
        !            14: ;Revision History:
        !            15: ;
        !            16: ;--*/
        !            17: ;
        !            18: ;#ifndef _INPLOG_
        !            19: ;#define _INPLOG_
        !            20: ;
        !            21: ;//
        !            22: ;//  Status values are 32 bit values layed out as follows:
        !            23: ;//
        !            24: ;//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
        !            25: ;//   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
        !            26: ;//  +---+-+-------------------------+-------------------------------+
        !            27: ;//  |Sev|C|       Facility          |               Code            |
        !            28: ;//  +---+-+-------------------------+-------------------------------+
        !            29: ;//
        !            30: ;//  where
        !            31: ;//
        !            32: ;//      Sev - is the severity code
        !            33: ;//
        !            34: ;//          00 - Success
        !            35: ;//          01 - Informational
        !            36: ;//          10 - Warning
        !            37: ;//          11 - Error
        !            38: ;//
        !            39: ;//      C - is the Customer code flag
        !            40: ;//
        !            41: ;//      Facility - is the facility code
        !            42: ;//
        !            43: ;//      Code - is the facility's status code
        !            44: ;//
        !            45: ;
        !            46: MessageIdTypedef=NTSTATUS
        !            47: 
        !            48: SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
        !            49:                Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
        !            50:                Warning=0x2:STATUS_SEVERITY_WARNING
        !            51:                Error=0x3:STATUS_SEVERITY_ERROR
        !            52:               )
        !            53: 
        !            54: FacilityNames=(System=0x0
        !            55:                RpcRuntime=0x2:FACILITY_RPC_RUNTIME
        !            56:                RpcStubs=0x3:FACILITY_RPC_STUBS
        !            57:                Io=0x4:FACILITY_IO_ERROR_CODE
        !            58:                Inport=0x5:FACILITY_INPORT_ERROR_CODE
        !            59:               )
        !            60: 
        !            61: 
        !            62: 
        !            63: MessageId=0x0001 Facility=Inport Severity=Error SymbolicName=INPORT_INSUFFICIENT_RESOURCES
        !            64: Language=English
        !            65: Not enough memory was available to allocate internal storage needed for the device %1.
        !            66: .
        !            67: 
        !            68: MessageId=0x0002 Facility=Inport Severity=Error SymbolicName=INPORT_NO_BUFFER_ALLOCATED
        !            69: Language=English
        !            70: Not enough memory was available to allocate the ring buffer that holds incoming data for %1.
        !            71: .
        !            72: 
        !            73: MessageId=0x0003 Facility=Inport Severity=Error SymbolicName=INPORT_REGISTERS_NOT_MAPPED
        !            74: Language=English
        !            75: The hardware locations for %1 could not be translated to something the memory management system understands.
        !            76: .
        !            77: 
        !            78: MessageId=0x0004 Facility=Inport Severity=Error SymbolicName=INPORT_RESOURCE_CONFLICT
        !            79: Language=English
        !            80: The hardware resources for %1 are already in use by another device.
        !            81: .
        !            82: 
        !            83: MessageId=0x0005 Facility=Inport Severity=Informational SymbolicName=INPORT_NOT_ENOUGH_CONFIG_INFO
        !            84: Language=English
        !            85: Some firmware configuration information was incomplete, so defaults were used.
        !            86: .
        !            87: 
        !            88: MessageId=0x0006 Facility=Inport Severity=Informational SymbolicName=INPORT_USER_OVERRIDE
        !            89: Language=English
        !            90: User configuration data is overriding firmware configuration data.
        !            91: .
        !            92: 
        !            93: MessageId=0x0007 Facility=Inport Severity=Warning SymbolicName=INPORT_NO_DEVICEMAP_CREATED
        !            94: Language=English
        !            95: Unable to create the device map entry for %1.
        !            96: .
        !            97: 
        !            98: MessageId=0x0008 Facility=Inport Severity=Warning SymbolicName=INPORT_NO_DEVICEMAP_DELETED
        !            99: Language=English
        !           100: Unable to delete the device map entry for %1.
        !           101: .
        !           102: 
        !           103: MessageId=0x0009 Facility=Inport Severity=Error SymbolicName=INPORT_NO_INTERRUPT_CONNECTED
        !           104: Language=English
        !           105: Could not connect the interrupt for %1.
        !           106: .
        !           107: 
        !           108: MessageId=0x000A Facility=Inport Severity=Error SymbolicName=INPORT_INVALID_ISR_STATE
        !           109: Language=English
        !           110: The ISR has detected an internal state error in the driver for %1.
        !           111: .
        !           112: 
        !           113: MessageId=0x000C Facility=Inport Severity=Informational SymbolicName=INPORT_MOU_BUFFER_OVERFLOW
        !           114: Language=English
        !           115: The ring buffer that stores incoming mouse data has overflowed (buffer size is configurable via the registry).
        !           116: .
        !           117: 
        !           118: MessageId=0x000D Facility=Inport Severity=Error SymbolicName=INPORT_INVALID_STARTIO_REQUEST
        !           119: Language=English
        !           120: The Start I/O procedure has detected an internal error in the driver for %1.
        !           121: .
        !           122: 
        !           123: MessageId=0x000E Facility=Inport Severity=Error SymbolicName=INPORT_INVALID_INITIATE_STATE
        !           124: Language=English
        !           125: The Initiate I/O procedure has detected an internal state error in the driver for %1.
        !           126: .
        !           127: 
        !           128: MessageId=0x0010 Facility=Inport Severity=Error SymbolicName=INPORT_MOU_RESET_COMMAND_FAILED
        !           129: Language=English
        !           130: The mouse reset failed.
        !           131: .
        !           132: 
        !           133: MessageId=0x0012 Facility=Inport Severity=Warning SymbolicName=INPORT_MOU_RESET_RESPONSE_FAILED
        !           134: Language=English
        !           135: The device sent an incorrect response(s) following a mouse reset.
        !           136: .
        !           137: 
        !           138: MessageId=0x0016 Facility=Inport Severity=Error SymbolicName=INPORT_SET_SAMPLE_RATE_FAILED
        !           139: Language=English
        !           140: Could not set the mouse sample rate.
        !           141: .
        !           142: 
        !           143: MessageId=0x0017 Facility=Inport Severity=Error SymbolicName=INPORT_SET_RESOLUTION_FAILED
        !           144: Language=English
        !           145: Could not set the mouse resolution.
        !           146: .
        !           147: 
        !           148: MessageId=0x0018 Facility=Inport Severity=Error SymbolicName=INPORT_MOU_ENABLE_XMIT
        !           149: Language=English
        !           150: Could not enable transmissions from the mouse.
        !           151: .
        !           152: 
        !           153: MessageId=0x0019 Facility=Inport Severity=Warning SymbolicName=INPORT_NO_SYMLINK_CREATED
        !           154: Language=English
        !           155: Unable to create the symbolic link for %1.
        !           156: .
        !           157: 
        !           158: MessageId=0x001A Facility=Inport Severity=Warning SymbolicName=INPORT_NO_SUCH_DEVICE
        !           159: Language=English
        !           160: The Inport bus mouse does not exist or was not detected.
        !           161: .
        !           162: 
        !           163: ;#endif /* _INPLOG_ */

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.