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.

76 lines
1.8 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1991-1992 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; errormsg.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; This file contains the error code definitions and message for the
  12. ; PFMON program.
  13. ;
  14. ;Author:
  15. ;
  16. ; Steve Wood (stevewo) 09-Aug-1994
  17. ;
  18. ;--*/
  19. ;
  20. ;#ifndef _PFMON_ERRORMSG_
  21. ;#define _PFMON_ERRORMSG_
  22. ;
  23. ;
  24. SeverityNames=(Success=0x0:APP_SEVERITY_SUCCESS
  25. Informational=0x1:APP_SEVERITY_INFORMATIONAL
  26. Warning=0x2:APP_SEVERITY_WARNING
  27. Error=0x3:APP_SEVERITY_ERROR
  28. )
  29. FacilityNames=(Pfmon=0x100:FACILITY_APPLICATION)
  30. ;#define FACILITY_NT 0x0FFF0000
  31. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_CANT_DEBUG_PROGRAM
  32. Language=English
  33. Unable to debug '%1'
  34. .
  35. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_CANT_DEBUG_ACTIVE_PROGRAM
  36. Language=English
  37. Unable to attach to PID (%1!x!)
  38. .
  39. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_CONTDEBUGEVENT_FAILED
  40. Language=English
  41. Unable to continue debug event.
  42. .
  43. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_WAITDEBUGEVENT_FAILED
  44. Language=English
  45. Unable to wait for debug event.
  46. .
  47. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_DUPLICATE_PROCESS_ID
  48. Language=English
  49. Duplicate Process Id (%1!x!).
  50. .
  51. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_MISSING_PROCESS_ID
  52. Language=English
  53. Missing Process Id (%1!x!).
  54. .
  55. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_DUPLICATE_THREAD_ID
  56. Language=English
  57. Duplicate Thread Id (%1!x!) for Process Id (%2!x!)
  58. .
  59. MessageId= Severity=Error Facility=Pfmon SymbolicName=PFMON_MISSING_THREAD_ID
  60. Language=English
  61. Missing Thread Id (%1!x!) for Process Id (%2!x!)
  62. .
  63. ;#endif // _PFMON_ERRORMSG_