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