messages.mc
上传用户:yuandong
上传日期:2022-08-08
资源大小:954k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

C++ Builder

  1. ;//
  2. ;//  Status values are 32 bit values layed out as follows:
  3. ;//
  4. ;//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  5. ;//   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
  6. ;//  +---+-+-------------------------+-------------------------------+
  7. ;//  |Sev|C|       Facility          |               Code            |
  8. ;//  +---+-+-------------------------+-------------------------------+
  9. ;//
  10. ;//  where
  11. ;//
  12. ;//      Sev - is the severity code
  13. ;//
  14. ;//          00 - Success
  15. ;//          01 - Informational
  16. ;//          10 - Warning
  17. ;//          11 - Error
  18. ;//
  19. ;//      C - is the Customer code flag
  20. ;//
  21. ;//      Facility - is the facility code
  22. ;//
  23. ;//      Code - is the facility's status code
  24. ;//
  25. ;
  26. MessageIdTypedef=NTSTATUS
  27. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  28.                Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  29.                Warning=0x2:STATUS_SEVERITY_WARNING
  30.                Error=0x3:STATUS_SEVERITY_ERROR
  31.               )
  32. FacilityNames=(System=0x0
  33.               )
  34. MessageId=0x002D Facility=System Severity=Error SymbolicName=MSG_DOCUMENT_FAILED
  35. Language=English
  36. Document failed to print due to %1.
  37. .