WPCrsMsg.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:3k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //
  2. //  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|R|     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. //      R - is a reserved bit
  22. //
  23. //      Facility - is the facility code
  24. //
  25. //      Code - is the facility's status code
  26. //
  27. //
  28. // Define the facility codes
  29. //
  30. //
  31. // Define the severity codes
  32. //
  33. //
  34. // MessageId: CRSWPP_ERROR_FIRST
  35. //
  36. // MessageText:
  37. //
  38. //  CRS WebPost provider's first error message.
  39. //
  40. #define CRSWPP_ERROR_FIRST               0x40042200L
  41. //
  42. // MessageId: CRSWPP_INVALID_POSTINFO_FILE
  43. //
  44. // MessageText:
  45. //
  46. //  The PostInfo file is invalid on the server you selected.
  47. //
  48. #define CRSWPP_INVALID_POSTINFO_FILE     0xC0042201L
  49. //
  50. // MessageId: CRSWPP_NO_MATCHING_MAPURL
  51. //
  52. // MessageText:
  53. //
  54. //  The CRS project you selected has no MAPURL.
  55. //
  56. #define CRSWPP_NO_MATCHING_MAPURL        0xC0042202L
  57. //
  58. // MessageId: CRSWPP_SECURITY_PACKAGE
  59. //
  60. // MessageText:
  61. //
  62. //  The initialization of the security package failed.
  63. //
  64. #define CRSWPP_SECURITY_PACKAGE          0xC0042203L
  65. //
  66. // MessageId: CRSWPP_SECURITY_PACKAGE_NOT_FOUND
  67. //
  68. // MessageText:
  69. //
  70. //  The security package(s) required by the server could not be found on your computer.
  71. //
  72. #define CRSWPP_SECURITY_PACKAGE_NOT_FOUND 0xC0042204L
  73. //
  74. // MessageId: CRSWPP_PROJECT_BINDING_INCOMPLETE
  75. //
  76. // MessageText:
  77. //
  78. //  The CRS provider has not determined which CRS project on the server corresponds to the URL you selected.
  79. //
  80. #define CRSWPP_PROJECT_BINDING_INCOMPLETE 0xC0042205L
  81. //
  82. // MessageId: CRSWPP_SERVER_BINDING_INCOMPLETE
  83. //
  84. // MessageText:
  85. //
  86. //  The CRS provider has not determined the name of the server that corresponds to the URL you selected.
  87. //
  88. #define CRSWPP_SERVER_BINDING_INCOMPLETE 0xC0042206L
  89. //
  90. // MessageId: CRSWPP_SERVER_NOT_RESPONDING
  91. //
  92. // MessageText:
  93. //
  94. //  The CRS server is not responding.
  95. //
  96. #define CRSWPP_SERVER_NOT_RESPONDING     0xC0042207L
  97. //
  98. // MessageId: CRSWPP_FAILED_AUTH
  99. //
  100. // MessageText:
  101. //
  102. //  You do not have the necessary access privileges to publish to this CRS server.
  103. //
  104. #define CRSWPP_FAILED_AUTH               0xC0042208L
  105. //
  106. // MessageId: CRSWPP_POSTINFO_NEEDED
  107. //
  108. // MessageText:
  109. //
  110. //  The CRS provider could not retrieve all of the required information from the PostInfo file on the server.
  111. //
  112. #define CRSWPP_POSTINFO_NEEDED           0x40042209L
  113. //
  114. // MessageId: CRSWPP_BIND_FAILED
  115. //
  116. // MessageText:
  117. //
  118. //  The CRS provider could not connect to the CRS server.
  119. //
  120. #define CRSWPP_BIND_FAILED               0xC004220AL