home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / wpcrsmsg.h < prev    next >
Text File  |  1998-04-25  |  3KB  |  136 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: CRSWPP_ERROR_FIRST
  39. //
  40. // MessageText:
  41. //
  42. //  CRS WebPost provider's first error message.
  43. //
  44. #define CRSWPP_ERROR_FIRST               0x40042200L
  45.  
  46. //
  47. // MessageId: CRSWPP_INVALID_POSTINFO_FILE
  48. //
  49. // MessageText:
  50. //
  51. //  The PostInfo file is invalid on the server you selected.
  52. //
  53. #define CRSWPP_INVALID_POSTINFO_FILE     0xC0042201L
  54.  
  55. //
  56. // MessageId: CRSWPP_NO_MATCHING_MAPURL
  57. //
  58. // MessageText:
  59. //
  60. //  The CRS project you selected has no MAPURL.
  61. //
  62. #define CRSWPP_NO_MATCHING_MAPURL        0xC0042202L
  63.  
  64. //
  65. // MessageId: CRSWPP_SECURITY_PACKAGE
  66. //
  67. // MessageText:
  68. //
  69. //  The initialization of the security package failed.
  70. //
  71. #define CRSWPP_SECURITY_PACKAGE          0xC0042203L
  72.  
  73. //
  74. // MessageId: CRSWPP_SECURITY_PACKAGE_NOT_FOUND
  75. //
  76. // MessageText:
  77. //
  78. //  The security package(s) required by the server could not be found on your computer.
  79. //
  80. #define CRSWPP_SECURITY_PACKAGE_NOT_FOUND 0xC0042204L
  81.  
  82. //
  83. // MessageId: CRSWPP_PROJECT_BINDING_INCOMPLETE
  84. //
  85. // MessageText:
  86. //
  87. //  The CRS provider has not determined which CRS project on the server corresponds to the URL you selected.
  88. //
  89. #define CRSWPP_PROJECT_BINDING_INCOMPLETE 0xC0042205L
  90.  
  91. //
  92. // MessageId: CRSWPP_SERVER_BINDING_INCOMPLETE
  93. //
  94. // MessageText:
  95. //
  96. //  The CRS provider has not determined the name of the server that corresponds to the URL you selected.
  97. //
  98. #define CRSWPP_SERVER_BINDING_INCOMPLETE 0xC0042206L
  99.  
  100. //
  101. // MessageId: CRSWPP_SERVER_NOT_RESPONDING
  102. //
  103. // MessageText:
  104. //
  105. //  The CRS server is not responding.
  106. //
  107. #define CRSWPP_SERVER_NOT_RESPONDING     0xC0042207L
  108.  
  109. //
  110. // MessageId: CRSWPP_FAILED_AUTH
  111. //
  112. // MessageText:
  113. //
  114. //  You do not have the necessary access privileges to publish to this CRS server.
  115. //
  116. #define CRSWPP_FAILED_AUTH               0xC0042208L
  117.  
  118. //
  119. // MessageId: CRSWPP_POSTINFO_NEEDED
  120. //
  121. // MessageText:
  122. //
  123. //  The CRS provider could not retrieve all of the required information from the PostInfo file on the server.
  124. //
  125. #define CRSWPP_POSTINFO_NEEDED           0x40042209L
  126.  
  127. //
  128. // MessageId: CRSWPP_BIND_FAILED
  129. //
  130. // MessageText:
  131. //
  132. //  The CRS provider could not connect to the CRS server.
  133. //
  134. #define CRSWPP_BIND_FAILED               0xC004220AL
  135.  
  136.