Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
3.4 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1995 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; joylog.mc
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Joystick driver error message definitions.
  12. ;
  13. ;Author:
  14. ;
  15. ; edbriggs 12-25-1993
  16. ;
  17. ;Revision History:
  18. ;
  19. ;--*/
  20. ;
  21. ;#ifndef _JOYLOG_
  22. ;#define _JOYLOG_
  23. ;//
  24. ;// Status values are 32 bit values layed out as follows:
  25. ;//
  26. ;// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  27. ;// 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
  28. ;// +---+-+-------------------------+-------------------------------+
  29. ;// |Sev|C| Facility | Code |
  30. ;// +---+-+-------------------------+-------------------------------+
  31. ;//
  32. ;// where
  33. ;//
  34. ;// Sev - is the severity code
  35. ;//
  36. ;// 00 - Success
  37. ;// 01 - Informational
  38. ;// 10 - Warning
  39. ;// 11 - Error
  40. ;//
  41. ;// C - is the Customer code flag
  42. ;//
  43. ;// Facility - is the facility code
  44. ;//
  45. ;// Code - is the facility's status code
  46. ;//
  47. ;
  48. MessageIdTypedef=NTSTATUS
  49. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  50. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  51. Warning=0x2:STATUS_SEVERITY_WARNING
  52. Error=0x3:STATUS_SEVERITY_ERROR
  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. Joystick=0x7:FACILITY_JOYSTICK_ERROR_CODE
  59. )
  60. MessageId=0x0003 Facility=Joystick Severity=Error SymbolicName=JOY_INSUFFICIENT_RESOURCES
  61. Language=English
  62. Not enough memory was available to allocate internal storage needed for the device %1.
  63. .
  64. MessageId=0x0004 Facility=Joystick Severity=Error SymbolicName=JOY_REGISTERS_NOT_MAPPED
  65. Language=English
  66. The hardware locations for %1 could not be translated to something the memory management system could understand.
  67. .
  68. MessageId=0x0005 Facility=Joystick Severity=Error SymbolicName=JOY_ADDRESS_CONFLICT
  69. Language=English
  70. The hardware addresses for %1 are already in use by another device.
  71. .
  72. MessageId=0x0006 Facility=Joystick Severity=Error SymbolicName=JOY_NOT_ENOUGH_CONFIG_INFO
  73. Language=English
  74. Some registry configuration information was incomplete.
  75. .
  76. MessageId=0x0007 Facility=Joystick Severity=Error SymbolicName=JOY_INVALID_CONFIG_INFO
  77. Language=English
  78. The registry parameters are invalid for this device.
  79. .
  80. MessageId=0x000D Facility=Joystick Severity=Informational SymbolicName=JOY_USER_OVERRIDE
  81. Language=English
  82. User configuration data is overriding default configuration data.
  83. .
  84. MessageId=0x000E Facility=Joystick Severity=Error SymbolicName=JOY_DEVICE_TOO_HIGH
  85. Language=English
  86. The user specified port is too high in physical memory.
  87. .
  88. MessageId=0x000F Facility=Joystick Severity=Error SymbolicName=JOY_CONTROL_OVERLAP
  89. Language=English
  90. The control registers for the port overlaps with a previous ports control registers.
  91. .
  92. MessageId=0x0013 Facility=Joystick Severity=Informational SymbolicName=JOY_DISABLED_PORT
  93. Language=English
  94. Disabling port %1 as requested by the configuration data.
  95. .
  96. MessageId=0x0014 Facility=Joystick Severity=Error SymbolicName=JOY_DEVICE_DISCONNECTED
  97. Language=English
  98. No reponse within timeout suggests the device is unplugged %1.
  99. .
  100. ;
  101. ;#endif _JOYLOG_
  102. ;
  103.