home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / wpwizmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  3.3 KB  |  147 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: WPWIZ_ERROR_FIRST
  40. //
  41. // MessageText:
  42. //
  43. //  Web Publishing Wizard first error message.
  44. //
  45. #define WPWIZ_ERROR_FIRST                0x40042000L
  46.  
  47. //
  48. // MessageId: WPWIZ_ERROR_UNKNOWN
  49. //
  50. // MessageText:
  51. //
  52. //  An unknown error occurred in the Web Publishing Wizard.
  53. //
  54. #define WPWIZ_ERROR_UNKNOWN              0xC0042001L
  55.  
  56. //
  57. // MessageId: WPWIZ_ERROR_PROV_QI
  58. //
  59. // MessageText:
  60. //
  61. //  The Web Publishing Wizard was unable to determine the version number of your service provider.
  62. //
  63. #define WPWIZ_ERROR_PROV_QI              0xC0042002L
  64.  
  65. //
  66. // MessageId: WPWIZ_ERROR_INIT_FAILED
  67. //
  68. // MessageText:
  69. //
  70. //  An error occurred while attempting to start the Web Publishing Wizard.
  71. //
  72. #define WPWIZ_ERROR_INIT_FAILED          0xC0042003L
  73.  
  74. //
  75. // MessageId: WPWIZ_ERROR_COCREATE_WEBPOST
  76. //
  77. // MessageText:
  78. //
  79. //  The Web Publishing Wizard is not installed correctly. Please uninstall and then reinstall the wizard.
  80. //
  81. #define WPWIZ_ERROR_COCREATE_WEBPOST     0xC0042004L
  82.  
  83. //
  84. // MessageId: WPWIZ_ERROR_NO_PROVIDERS
  85. //
  86. // MessageText:
  87. //
  88. //  The Web Publishing Wizard could not run because there are no service providers installed.
  89. //
  90. #define WPWIZ_ERROR_NO_PROVIDERS         0xC0042005L
  91.  
  92. //
  93. // MessageId: WPWIZ_ERROR_STATE_PTR
  94. //
  95. // MessageText:
  96. //
  97. //  An internal error (0x2006) occurred in the Web Publishing Wizard.
  98. //
  99. #define WPWIZ_ERROR_STATE_PTR            0xC0042006L
  100.  
  101. //
  102. // MessageId: WPWIZ_ERROR_WEBPOST_PTR
  103. //
  104. // MessageText:
  105. //
  106. //  An internal error (0x2007) occurred in the Web Publishing Wizard.
  107. //
  108. #define WPWIZ_ERROR_WEBPOST_PTR          0xC0042007L
  109.  
  110. //
  111. // MessageId: WPWIZ_ERROR_FILE_NOT_FOUND
  112. //
  113. // MessageText:
  114. //
  115. //  The file(s) you selected to publish could not be found.
  116. //
  117. #define WPWIZ_ERROR_FILE_NOT_FOUND       0xC0042008L
  118.  
  119. //
  120. // MessageId: WPWIZ_ERROR_PROPSHEET_ERROR
  121. //
  122. // MessageText:
  123. //
  124. //  An error occurred in the user interface of the Web Publishing Wizard.
  125. //
  126. #define WPWIZ_ERROR_PROPSHEET_ERROR      0xC0042009L
  127.  
  128. //
  129. // MessageId: WPWIZ_ERROR_OUTOFMEMORY
  130. //
  131. // MessageText:
  132. //
  133. //  The Web Publishing Wizard has run out of memory. Please close other running applications before continuing.
  134. //
  135. #define WPWIZ_ERROR_OUTOFMEMORY          0xC004200AL
  136.  
  137. //
  138. // MessageId: WPWIZ_ERROR_LAST
  139. //
  140. // MessageText:
  141. //
  142. //  Web Publishing Wizard last error message.
  143. //
  144. #define WPWIZ_ERROR_LAST                 0x400420FFL
  145.  
  146. #pragma option pop /*P_O_Pop*/
  147.