Source code of Windows XP (NT5)
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.

117 lines
2.5 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1992 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; rasctrs.h
  8. ; (derived from rasctrs.mc by the message compiler )
  9. ;
  10. ;Abstract:
  11. ;
  12. ; Event message definititions used by routines in RASCTRS.DLL
  13. ;
  14. ;Created:
  15. ;
  16. ; 15-Oct-1992 Bob Watson (a-robw)
  17. ;
  18. ;Revision History:
  19. ;
  20. ;--*/
  21. ;//
  22. ;#ifndef _RASCTRS_H_
  23. ;#define _RASCTRS_H_
  24. ;//
  25. MessageIdTypedef=DWORD
  26. ;//
  27. ;// Perfutil messages
  28. ;//
  29. MessageId=1900
  30. Severity=Informational
  31. Facility=Application
  32. SymbolicName=UTIL_LOG_OPEN
  33. Language=English
  34. An extensible counter has opened the Event Log for RASCTRS.DLL
  35. .
  36. ;//
  37. MessageId=1999
  38. Severity=Informational
  39. Facility=Application
  40. SymbolicName=UTIL_CLOSING_LOG
  41. Language=English
  42. An extensible counter has closed the Event Log for RASCTRS.DLL
  43. .
  44. ;//
  45. MessageId=2000
  46. Severity=Error
  47. Facility=Application
  48. SymbolicName=RASPERF_OPEN_FILE_DRIVER_ERROR
  49. Language=English
  50. Unable to open device driver containing RAS performance data.
  51. .
  52. ;//
  53. MessageId=+1
  54. Severity=Error
  55. Facility=Application
  56. SymbolicName=RASPERF_UNABLE_DO_IOCTL
  57. Language=English
  58. Unable to perform ioctl to device driver containing RAS performance data.
  59. .
  60. ;//
  61. MessageId=+1
  62. Severity=Error
  63. Facility=Application
  64. SymbolicName=RASPERF_UNABLE_OPEN_DRIVER_KEY
  65. Language=English
  66. Unable open "Performance" key of RAS driver in registy. Status code is returned in data.
  67. .
  68. ;//
  69. MessageId=+1
  70. Severity=Error
  71. Facility=Application
  72. SymbolicName=RASPERF_UNABLE_READ_FIRST_COUNTER
  73. Language=English
  74. Unable to read the "First Counter" value under the Remote Access\Performance Key. Status codes retuened in data.
  75. .
  76. ;//
  77. MessageId=+1
  78. Severity=Error
  79. Facility=Application
  80. SymbolicName=RASPERF_UNABLE_READ_FIRST_HELP
  81. Language=English
  82. Unable to read the "First Help" value under the Remote Access\Performance Key. Status codes retuened in data.
  83. .
  84. ;//
  85. MessageId=+1
  86. Severity=Error
  87. Facility=Application
  88. SymbolicName=RASPERF_UNABLE_CREATE_PORT_TABLE
  89. Language=English
  90. Unable to create port information table. Status codes returned in data.
  91. .
  92. ;//
  93. MessageId=+1
  94. Severity=Error
  95. Facility=Application
  96. SymbolicName=RASPERF_NOT_ENOUGH_MEMORY
  97. Language=English
  98. Unable to allocate enough memory. Status codes returned in data.
  99. .
  100. ;//
  101. MessageId=+1
  102. Severity=Error
  103. Facility=Application
  104. SymbolicName=RASPERF_CANNOT_GET_RAS_STATISTICS
  105. Language=English
  106. Unable to obtain Ras Statistics
  107. .
  108. ;//
  109. MessageId=+1
  110. Severity=Error
  111. Facility=Application
  112. SymbolicName=RASPERF_RASPORTENUM_FAILED
  113. Language=English
  114. RasPortEnum failed.
  115. .
  116. ;//
  117. ;#endif // _RASCTRS_H_