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