home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / wppstmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.8 KB  |  84 lines

  1. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  2. //
  3. //  Values are 32 bit values layed out as follows:
  4. //
  5. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  6. //   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
  7. //  +---+-+-+-----------------------+-------------------------------+
  8. //  |Sev|C|R|     Facility          |               Code            |
  9. //  +---+-+-+-----------------------+-------------------------------+
  10. //
  11. //  where
  12. //
  13. //      Sev - is the severity code
  14. //
  15. //          00 - Success
  16. //          01 - Informational
  17. //          10 - Warning
  18. //          11 - Error
  19. //
  20. //      C - is the Customer code flag
  21. //
  22. //      R - is a reserved bit
  23. //
  24. //      Facility - is the facility code
  25. //
  26. //      Code - is the facility's status code
  27. //
  28. //
  29. // Define the facility codes
  30. //
  31.  
  32.  
  33. //
  34. // Define the severity codes
  35. //
  36.  
  37.  
  38. //
  39. // MessageId: WPP_ERROR_FIRST
  40. //
  41. // MessageText:
  42. //
  43. //  WebPost Provider first error message.
  44. //
  45. #define WPP_ERROR_FIRST                  0x40042380L
  46.  
  47. //
  48. // MessageId: WPP_POST_POSTING_URL_ERROR
  49. //
  50. // MessageText:
  51. //
  52. //  The URL you selected, %1, is invalid.
  53. //
  54. #define WPP_POST_POSTING_URL_ERROR       0xC0042381L
  55.  
  56. //
  57. // MessageId: WPP_POST_POSTING_SERVER_ERROR
  58. //
  59. // MessageText:
  60. //
  61. //  The Web server returned the following error: %1.
  62. //
  63. #define WPP_POST_POSTING_SERVER_ERROR    0xC0042382L
  64.  
  65. //
  66. // MessageId: WPP_POST_POSTING_NO_RESPONSE_ERROR
  67. //
  68. // MessageText:
  69. //
  70. //  The Web server either is not responding or returned an unrecognized response.
  71. //
  72. #define WPP_POST_POSTING_NO_RESPONSE_ERROR 0xC0042383L
  73.  
  74. //
  75. // MessageId: WPP_ERROR_LAST
  76. //
  77. // MessageText:
  78. //
  79. //  WebPost Provider last error message.
  80. //
  81. #define WPP_ERROR_LAST                   0x400423FFL
  82.  
  83. #pragma option pop /*P_O_Pop*/
  84.