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

unix.superglobalmegacorp.com

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