WPWizMsg.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. // Define the severity codes
  32. //
  33. //
  34. // MessageId: WPWIZ_ERROR_FIRST
  35. //
  36. // MessageText:
  37. //
  38. // Web Publishing Wizard first error message.
  39. //
  40. #define WPWIZ_ERROR_FIRST 0x40042000L
  41. //
  42. // MessageId: WPWIZ_ERROR_UNKNOWN
  43. //
  44. // MessageText:
  45. //
  46. // An unknown error occurred in the Web Publishing Wizard.
  47. //
  48. #define WPWIZ_ERROR_UNKNOWN 0xC0042001L
  49. //
  50. // MessageId: WPWIZ_ERROR_PROV_QI
  51. //
  52. // MessageText:
  53. //
  54. // The Web Publishing Wizard was unable to determine the version number of your service provider.
  55. //
  56. #define WPWIZ_ERROR_PROV_QI 0xC0042002L
  57. //
  58. // MessageId: WPWIZ_ERROR_INIT_FAILED
  59. //
  60. // MessageText:
  61. //
  62. // An error occurred while attempting to start the Web Publishing Wizard.
  63. //
  64. #define WPWIZ_ERROR_INIT_FAILED 0xC0042003L
  65. //
  66. // MessageId: WPWIZ_ERROR_COCREATE_WEBPOST
  67. //
  68. // MessageText:
  69. //
  70. // The Web Publishing Wizard is not installed correctly. Please uninstall and then reinstall the wizard.
  71. //
  72. #define WPWIZ_ERROR_COCREATE_WEBPOST 0xC0042004L
  73. //
  74. // MessageId: WPWIZ_ERROR_NO_PROVIDERS
  75. //
  76. // MessageText:
  77. //
  78. // The Web Publishing Wizard could not run because there are no service providers installed.
  79. //
  80. #define WPWIZ_ERROR_NO_PROVIDERS 0xC0042005L
  81. //
  82. // MessageId: WPWIZ_ERROR_STATE_PTR
  83. //
  84. // MessageText:
  85. //
  86. // An internal error (0x2006) occurred in the Web Publishing Wizard.
  87. //
  88. #define WPWIZ_ERROR_STATE_PTR 0xC0042006L
  89. //
  90. // MessageId: WPWIZ_ERROR_WEBPOST_PTR
  91. //
  92. // MessageText:
  93. //
  94. // An internal error (0x2007) occurred in the Web Publishing Wizard.
  95. //
  96. #define WPWIZ_ERROR_WEBPOST_PTR 0xC0042007L
  97. //
  98. // MessageId: WPWIZ_ERROR_FILE_NOT_FOUND
  99. //
  100. // MessageText:
  101. //
  102. // The file(s) you selected to publish could not be found.
  103. //
  104. #define WPWIZ_ERROR_FILE_NOT_FOUND 0xC0042008L
  105. //
  106. // MessageId: WPWIZ_ERROR_PROPSHEET_ERROR
  107. //
  108. // MessageText:
  109. //
  110. // An error occurred in the user interface of the Web Publishing Wizard.
  111. //
  112. #define WPWIZ_ERROR_PROPSHEET_ERROR 0xC0042009L
  113. //
  114. // MessageId: WPWIZ_ERROR_OUTOFMEMORY
  115. //
  116. // MessageText:
  117. //
  118. // The Web Publishing Wizard has run out of memory. Please close other running applications before continuing.
  119. //
  120. #define WPWIZ_ERROR_OUTOFMEMORY 0xC004200AL
  121. //
  122. // MessageId: WPWIZ_ERROR_LAST
  123. //
  124. // MessageText:
  125. //
  126. // Web Publishing Wizard last error message.
  127. //
  128. #define WPWIZ_ERROR_LAST 0x400420FFL