MEMCTRS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2. Copyright (c) 1995-6  Microsoft Corporation
  3. Module Name:
  4.     memctrs.h
  5.        (derived from memctrs.mc by the message compiler  )
  6. Abstract:
  7.    Event message definititions used by routines in MEMCTRS.DLL
  8. Created:
  9.     24-Aug-1995        Bob Watson (a-robw)
  10. Revision History:
  11. --*/
  12. //
  13. #ifndef _MEMCTRS_H_
  14. #define _MEMCTRS_H_
  15. //
  16. //
  17. //     Perfutil messages
  18. //
  19. //
  20. //  Values are 32 bit values layed out as follows:
  21. //
  22. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  23. //   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
  24. //  +---+-+-+-----------------------+-------------------------------+
  25. //  |Sev|C|R|     Facility          |               Code            |
  26. //  +---+-+-+-----------------------+-------------------------------+
  27. //
  28. //  where
  29. //
  30. //      Sev - is the severity code
  31. //
  32. //          00 - Success
  33. //          01 - Informational
  34. //          10 - Warning
  35. //          11 - Error
  36. //
  37. //      C - is the Customer code flag
  38. //
  39. //      R - is a reserved bit
  40. //
  41. //      Facility - is the facility code
  42. //
  43. //      Code - is the facility's status code
  44. //
  45. //
  46. // Define the facility codes
  47. //
  48. //
  49. // Define the severity codes
  50. //
  51. //
  52. // MessageId: UTIL_LOG_OPEN
  53. //
  54. // MessageText:
  55. //
  56. //  An extensible counter has opened the Event Log for MEMCTRS.DLL
  57. //
  58. #define UTIL_LOG_OPEN                    ((DWORD)0x4000076CL)
  59. //
  60. //
  61. // MessageId: UTIL_CLOSING_LOG
  62. //
  63. // MessageText:
  64. //
  65. //  An extensible counter has closed the Event Log for MEMCTRS.DLL
  66. //
  67. #define UTIL_CLOSING_LOG                 ((DWORD)0x400007CFL)
  68. //
  69. //
  70. // MessageId: APPMEM_OPEN_FILE_MAPPING_ERROR
  71. //
  72. // MessageText:
  73. //
  74. //  Unable to open mapped file containing Application Memory performance data.
  75. //
  76. #define APPMEM_OPEN_FILE_MAPPING_ERROR   ((DWORD)0xC00007D0L)
  77. //
  78. //
  79. // MessageId: APPMEM_UNABLE_MAP_VIEW_OF_FILE
  80. //
  81. // MessageText:
  82. //
  83. //  Unable to map to shared memory file containing Application Memory performance data.
  84. //
  85. #define APPMEM_UNABLE_MAP_VIEW_OF_FILE   ((DWORD)0xC00007D1L)
  86. //
  87. //
  88. // MessageId: APPMEM_UNABLE_OPEN_DRIVER_KEY
  89. //
  90. // MessageText:
  91. //
  92. //  Unable open "Performance" key of Applicationa Memory Performace Driver in registy. Status code is returned in data.
  93. //
  94. #define APPMEM_UNABLE_OPEN_DRIVER_KEY    ((DWORD)0xC00007D2L)
  95. //
  96. //
  97. // MessageId: APPMEM_UNABLE_READ_FIRST_COUNTER
  98. //
  99. // MessageText:
  100. //
  101. //  Unable to read the "First Counter" value under the AppMemPerformance Key. Status codes retuened in data.
  102. //
  103. #define APPMEM_UNABLE_READ_FIRST_COUNTER ((DWORD)0xC00007D3L)
  104. //
  105. //
  106. // MessageId: APPMEM_UNABLE_READ_FIRST_HELP
  107. //
  108. // MessageText:
  109. //
  110. //  Unable to read the "First Help" value under the AppMemPerformance Key. Status codes retuened in data.
  111. //
  112. #define APPMEM_UNABLE_READ_FIRST_HELP    ((DWORD)0xC00007D4L)
  113. //
  114. #endif // _MEMCTRS_H_