home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / wppstmsg.h < prev    next >
Text File  |  1998-04-25  |  2KB  |  82 lines

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