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.

91 lines
2.3 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1996 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; diskmsg.h
  8. ; (generated from diskmsg.mc)
  9. ;
  10. ;Abstract:
  11. ;
  12. ; Event message definititions used by routines in PerfOS Perf DLL
  13. ;
  14. ;Created:
  15. ;
  16. ; 23-Oct-96 Bob Watson
  17. ;
  18. ;Revision History:
  19. ;
  20. ;--*/
  21. ;#ifndef _DISKMSG_MC_H_
  22. ;#define _DISKMSG_MC_H_
  23. ;
  24. MessageIdTypedef=DWORD
  25. ;//
  26. ;// Perflib ERRORS
  27. ;//
  28. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  29. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  30. Warning=0x2:STATUS_SEVERITY_WARNING
  31. Error=0x3:STATUS_SEVERITY_ERROR
  32. )
  33. ;//
  34. ;// Common messages
  35. ;//
  36. MessageId=1000
  37. Severity=Warning
  38. Facility=Application
  39. SymbolicName=PERFDISK_UNABLE_OPEN
  40. Language=English
  41. Unable to open the Disk performance object. The status code returned is
  42. in the first DWORD in the Data section.
  43. .
  44. MessageId=1001
  45. Severity=Error
  46. Facility=Application
  47. SymbolicName=PERFDISK_NOT_OPEN
  48. Language=English
  49. The attempt to collect Disk Performance data failed beause the DLL did
  50. not open successfully.
  51. .
  52. MessageId=1002
  53. Severity=Error
  54. Facility=Application
  55. SymbolicName=PERFDISK_UNABLE_ALLOC_BUFFER
  56. Language=English
  57. Unable to allocate a dynamic memory buffer
  58. .
  59. MessageId=1003
  60. Severity=Error
  61. Facility=Application
  62. SymbolicName=PERFDISK_BUSY
  63. Language=English
  64. The Disk Performance data collection function was called by one
  65. thread while in use by another. No will be returned to the 2nd caller.
  66. .
  67. ;//
  68. ;// Module specific messages
  69. ;//
  70. MessageId=2000
  71. Severity=Warning
  72. Facility=Application
  73. SymbolicName=PERFDISK_UNABLE_QUERY_VOLUME_INFO
  74. Language=English
  75. Unable to read the Logical Volume information from the system.
  76. The status code returned is in the first DWORD in the Data section.
  77. .
  78. MessageId=2001
  79. Severity=Warning
  80. Facility=Application
  81. SymbolicName=PERFDISK_UNABLE_QUERY_DISKPERF_INFO
  82. Language=English
  83. Unable to read the disk performance information from the system.
  84. Disk performance counters must be enabled for at least one
  85. physical disk or logical volume in order for these counters to appear.
  86. Disk performance counters can be enabled by using the Hardware Device Manager property pages.
  87. The status code returned is in the first DWORD in the Data section.
  88. .
  89. ;//
  90. ;#endif //_DISKMSG_MC_H_