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

模拟服务器

开发平台:

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: WPP_ERROR_FIRST
  35. //
  36. // MessageText:
  37. //
  38. //  WebPost Provider first error message.
  39. //
  40. #define WPP_ERROR_FIRST                  0x40042380L
  41. //
  42. // MessageId: WPP_POST_POSTING_URL_ERROR
  43. //
  44. // MessageText:
  45. //
  46. //  The URL you selected, %1, is invalid.
  47. //
  48. #define WPP_POST_POSTING_URL_ERROR       0xC0042381L
  49. //
  50. // MessageId: WPP_POST_POSTING_SERVER_ERROR
  51. //
  52. // MessageText:
  53. //
  54. //  The Web server returned the following error: %1.
  55. //
  56. #define WPP_POST_POSTING_SERVER_ERROR    0xC0042382L
  57. //
  58. // MessageId: WPP_POST_POSTING_NO_RESPONSE_ERROR
  59. //
  60. // MessageText:
  61. //
  62. //  The Web server either is not responding or returned an unrecognized response.
  63. //
  64. #define WPP_POST_POSTING_NO_RESPONSE_ERROR 0xC0042383L
  65. //
  66. // MessageId: WPP_ERROR_LAST
  67. //
  68. // MessageText:
  69. //
  70. //  WebPost Provider last error message.
  71. //
  72. #define WPP_ERROR_LAST                   0x400423FFL