JwaWPApiMsg.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:11k
源码类别:

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Web Publishing Error Codes API interface Unit for Object Pascal              }
  4. {                                                                       }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
  6. { Corporation. All Rights Reserved.                                            }
  7. {                 }
  8. { The original file is: wpapimsg.h, released June 2000. The original Pascal    }
  9. { code is: WPApiMsg.pas, released December 2000. The initial developer of the  }
  10. { Pascal code is Marcel van Brakel (brakelm@chello.nl).                        }
  11. {                                                                              }
  12. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
  13. { Marcel van Brakel. All Rights Reserved.                                      }
  14. {                 }
  15. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
  16. {                }
  17. { You may retrieve the latest version of this file at the Project JEDI home    }
  18. { page, located at http://delphi-jedi.org or my personal homepage located at   }
  19. { http://members.chello.nl/m.vanbrakel2                                        }
  20. {                }
  21. { The contents of this file are used with permission, subject to the Mozilla   }
  22. { Public License Version 1.1 (the "License"); you may not use this file except }
  23. { in compliance with the License. You may obtain a copy of the License at      }
  24. { http://www.mozilla.org/MPL/MPL-1.1.html                                      }
  25. {                                                                              }
  26. { Software distributed under the License is distributed on an "AS IS" basis,   }
  27. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  28. { the specific language governing rights and limitations under the License.    }
  29. {                                                                              }
  30. { Alternatively, the contents of this file may be used under the terms of the  }
  31. { GNU Lesser General Public License (the  "LGPL License"), in which case the   }
  32. { provisions of the LGPL License are applicable instead of those above.        }
  33. { If you wish to allow use of your version of this file only under the terms   }
  34. { of the LGPL License and not to allow others to use your version of this file }
  35. { under the MPL, indicate your decision by deleting  the provisions above and  }
  36. { replace  them with the notice and other provisions required by the LGPL      }
  37. { License.  If you do not delete the provisions above, a recipient may use     }
  38. { your version of this file under either the MPL or the LGPL License.          }
  39. {                 }
  40. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  41. {                 }
  42. {******************************************************************************}
  43. unit JwaWPApiMsg;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "wpapimsg.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. uses
  51.   JwaWinType;
  52. //
  53. //  Values are 32 bit values layed out as follows:
  54. //
  55. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  56. //   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
  57. //  +---+-+-+-----------------------+-------------------------------+
  58. //  |Sev|C|R|     Facility          |               Code            |
  59. //  +---+-+-+-----------------------+-------------------------------+
  60. //
  61. //  where
  62. //
  63. //      Sev - is the severity code
  64. //
  65. //          00 - Success
  66. //          01 - Informational
  67. //          10 - Warning
  68. //          11 - Error
  69. //
  70. //      C - is the Customer code flag
  71. //
  72. //      R - is a reserved bit
  73. //
  74. //      Facility - is the facility code
  75. //
  76. //      Code - is the facility's status code
  77. //
  78. //
  79. // Define the facility codes
  80. //
  81. //
  82. // Define the severity codes
  83. //
  84. //
  85. // MessageId: WEBPOST_ERROR_FIRST
  86. //
  87. // MessageText:
  88. //
  89. //  Web Publishing Wizard first error message.
  90. //
  91. const
  92.   WEBPOST_ERROR_FIRST = DWORD($40042100);
  93.   {$EXTERNALSYM WEBPOST_ERROR_FIRST}
  94. //
  95. // MessageId: WEBPOST_ERROR_UNKNOWN
  96. //
  97. // MessageText:
  98. //
  99. //  An unknown error occurred in the Web Publishing Wizard.
  100. //
  101.   WEBPOST_ERROR_UNKNOWN = DWORD($C0042101);
  102.   {$EXTERNALSYM WEBPOST_ERROR_UNKNOWN}
  103. //
  104. // MessageId: WEBPOST_ERROR_PROVCLSID_UNKNOWN
  105. //
  106. // MessageText:
  107. //
  108. //  The Web Publishing Wizard could not locate the service provider used to transfer files to your Web server.
  109. //
  110.   WEBPOST_ERROR_PROVCLSID_UNKNOWN = DWORD($C0042102);
  111.   {$EXTERNALSYM WEBPOST_ERROR_PROVCLSID_UNKNOWN}
  112. //
  113. // MessageId: WEBPOST_ERROR_SITE_CORRUPT
  114. //
  115. // MessageText:
  116. //
  117. //  The Web Publishing Wizard could not retrieve all of the required information about your Web server.
  118. //
  119.   WEBPOST_ERROR_SITE_CORRUPT = DWORD($C0042103);
  120.   {$EXTERNALSYM WEBPOST_ERROR_SITE_CORRUPT}
  121. //
  122. // MessageId: WEBPOST_ERROR_PROV_CORRUPT
  123. //
  124. // MessageText:
  125. //
  126. //  The Web Publishing Wizard could not retrieve all of the required information about this service provider.
  127. //
  128.   WEBPOST_ERROR_PROV_CORRUPT = DWORD($C0042104);
  129.   {$EXTERNALSYM WEBPOST_ERROR_PROV_CORRUPT}
  130. //
  131. // MessageId: WEBPOST_ERROR_PROV_DLL
  132. //
  133. // MessageText:
  134. //
  135. //  The Web Publishing Wizard could not locate the file(s) for the requested service provider.
  136. //
  137.   WEBPOST_ERROR_PROV_DLL = DWORD($C0042105);
  138.   {$EXTERNALSYM WEBPOST_ERROR_PROV_DLL}
  139. //
  140. // MessageId: WEBPOST_ERROR_PROV_EP
  141. //
  142. // MessageText:
  143. //
  144. //  The file(s) for the requested service provider are either corrupt or outdated.
  145. //
  146.   WEBPOST_ERROR_PROV_EP = DWORD($C0042106);
  147.   {$EXTERNALSYM WEBPOST_ERROR_PROV_EP}
  148. //
  149. // MessageId: WEBPOST_ERROR_INIT_FAILED
  150. //
  151. // MessageText:
  152. //
  153. //  An error occurred while attempting to start the Web Publishing Wizard.
  154. //
  155.   WEBPOST_ERROR_INIT_FAILED = DWORD($C0042107);
  156.   {$EXTERNALSYM WEBPOST_ERROR_INIT_FAILED}
  157. //
  158. // MessageId: WEBPOST_ERROR_LIST_SITES
  159. //
  160. // MessageText:
  161. //
  162. //  An error occurred while the Web Publishing Wizard was enumerating the Web servers to which you have previously published.
  163. //
  164.   WEBPOST_ERROR_LIST_SITES = DWORD($C0042108);
  165.   {$EXTERNALSYM WEBPOST_ERROR_LIST_SITES}
  166. //
  167. // MessageId: WEBPOST_ERROR_SITE_EXISTS
  168. //
  169. // MessageText:
  170. //
  171. //  The Web Publishing Wizard could not use the requested descriptive name for your Web server because another Web server already uses the name.
  172. //
  173.   WEBPOST_ERROR_SITE_EXISTS = DWORD($C0042109);
  174.   {$EXTERNALSYM WEBPOST_ERROR_SITE_EXISTS}
  175. //
  176. // MessageId: WEBPOST_ERROR_CREATE_SITE
  177. //
  178. // MessageText:
  179. //
  180. //  An error occurred while the Web Publishing Wizard was saving information about your Web server.
  181. //
  182.   WEBPOST_ERROR_CREATE_SITE = DWORD($C004210A);
  183.   {$EXTERNALSYM WEBPOST_ERROR_CREATE_SITE}
  184. //
  185. // MessageId: WEBPOST_ERROR_SITE_DOESNOTEXIST
  186. //
  187. // MessageText:
  188. //
  189. //  Your computer does not contain any information about the Web server you have selected.
  190. //
  191.   WEBPOST_ERROR_SITE_DOESNOTEXIST = DWORD($C004210B);
  192.   {$EXTERNALSYM WEBPOST_ERROR_SITE_DOESNOTEXIST}
  193. //
  194. // MessageId: WEBPOST_ERROR_DELETE_SITE
  195. //
  196. // MessageText:
  197. //
  198. //  An error occurred while the Web Publishing Wizard was deleting information about your Web server.
  199. //
  200.   WEBPOST_ERROR_DELETE_SITE = DWORD($C004210C);
  201.   {$EXTERNALSYM WEBPOST_ERROR_DELETE_SITE}
  202. //
  203. // MessageId: WEBPOST_ERROR_ENUM_PROVS
  204. //
  205. // MessageText:
  206. //
  207. //  An error occurred while the Web Publishing Wizard was enumerating the service providers on this system.
  208. //
  209.   WEBPOST_ERROR_ENUM_PROVS = DWORD($C004210D);
  210.   {$EXTERNALSYM WEBPOST_ERROR_ENUM_PROVS}
  211. //
  212. // MessageId: WEBPOST_ERROR_PROV_QI
  213. //
  214. // MessageText:
  215. //
  216. //  The Web Publishing Wizard was unable to determine the version number of your service provider.
  217. //
  218.   WEBPOST_ERROR_PROV_QI = DWORD($C004210E);
  219.   {$EXTERNALSYM WEBPOST_ERROR_PROV_QI}
  220. //
  221. // MessageId: WEBPOST_ERROR_POST_FILES
  222. //
  223. // MessageText:
  224. //
  225. //  An error occurred while the Web Publishing Wizard was attempting to publish your files.
  226. //
  227.   WEBPOST_ERROR_POST_FILES = DWORD($C004210F);
  228.   {$EXTERNALSYM WEBPOST_ERROR_POST_FILES}
  229. //
  230. // MessageId: WEBPOST_ERROR_COCREATE_WIZARD
  231. //
  232. // MessageText:
  233. //
  234. //  The Web Publishing Wizard is not installed correctly. Please uninstall and then reinstall the wizard.
  235. //
  236.   WEBPOST_ERROR_COCREATE_WIZARD = DWORD($C0042110);
  237.   {$EXTERNALSYM WEBPOST_ERROR_COCREATE_WIZARD}
  238. //
  239. // MessageId: WEBPOST_ERROR_POSTINFO_REQUIRED
  240. //
  241. // MessageText:
  242. //
  243. //  Your service provider requires that a PostInfo file be located on the server. No PostInfo file could be located.
  244. //
  245.   WEBPOST_ERROR_POSTINFO_REQUIRED = DWORD($C0042111);
  246.   {$EXTERNALSYM WEBPOST_ERROR_POSTINFO_REQUIRED}
  247. //
  248. // MessageId: WEBPOST_ERROR_AUTOBIND_FAILED
  249. //
  250. // MessageText:
  251. //
  252. //  The service provider could not be automatically selected for your Web server.
  253. //
  254.   WEBPOST_ERROR_AUTOBIND_FAILED = DWORD($C0042112);
  255.   {$EXTERNALSYM WEBPOST_ERROR_AUTOBIND_FAILED}
  256. //
  257. // MessageId: WEBPOST_ERROR_BAD_PROV_PTR
  258. //
  259. // MessageText:
  260. //
  261. //  The Web Publishing Wizard was not able to obtain a valid pointer to the requested service provider.
  262. //
  263.   WEBPOST_ERROR_BAD_PROV_PTR = DWORD($C0042113);
  264.   {$EXTERNALSYM WEBPOST_ERROR_BAD_PROV_PTR}
  265. //
  266. // MessageId: WEBPOST_ERROR_PROV_NOT_IN_POSTINFO
  267. //
  268. // MessageText:
  269. //
  270. //  The Web server you selected does not indicate support for the service provider you selected.
  271. //
  272.   WEBPOST_ERROR_PROV_NOT_IN_POSTINFO = DWORD($80042114);
  273.   {$EXTERNALSYM WEBPOST_ERROR_PROV_NOT_IN_POSTINFO}
  274. //
  275. // MessageId: WEBPOST_ERROR_EXTENDED_ERROR
  276. //
  277. // MessageText:
  278. //
  279. //  Web Publishing Wizard extended error.
  280. //
  281.   WEBPOST_ERROR_EXTENDED_ERROR = DWORD($C0042116);
  282.   {$EXTERNALSYM WEBPOST_ERROR_EXTENDED_ERROR}
  283. //
  284. // MessageId: WEBPOST_ERROR_NO_EXT_ERR_INFO
  285. //
  286. // MessageText:
  287. //
  288. //  An extended error occurred in the Web Publishing Wizard, but the error message could not be retrieved.
  289. //
  290.   WEBPOST_ERROR_NO_EXT_ERR_INFO = DWORD($C0042117);
  291.   {$EXTERNALSYM WEBPOST_ERROR_NO_EXT_ERR_INFO}
  292. //
  293. // MessageId: WEBPOST_ERROR_INVALID_POSTINFO
  294. //
  295. // MessageText:
  296. //
  297. //  The PostInfo file on the server is invalid.
  298. //
  299.   WEBPOST_ERROR_INVALID_POSTINFO = DWORD($40042118);
  300.   {$EXTERNALSYM WEBPOST_ERROR_INVALID_POSTINFO}
  301. //
  302. // MessageId: WEBPOST_ERROR_NO_POSTINFO
  303. //
  304. // MessageText:
  305. //
  306. //  There is no PostInfo file on the server.
  307. //
  308.   WEBPOST_ERROR_NO_POSTINFO = DWORD($40042119);
  309.   {$EXTERNALSYM WEBPOST_ERROR_NO_POSTINFO}
  310. //
  311. // MessageId: WEBPOST_ERROR_HTTP_GET_FAILED
  312. //
  313. // MessageText:
  314. //
  315. //  The Web Publishing Wizard was not able to retrieve the first file published using an HTTP connection.
  316. //
  317.   WEBPOST_ERROR_HTTP_GET_FAILED = DWORD($4004211A);
  318.   {$EXTERNALSYM WEBPOST_ERROR_HTTP_GET_FAILED}
  319. //
  320. // MessageId: WEBPOST_ERROR_LAST
  321. //
  322. // MessageText:
  323. //
  324. //  Web Publishing Wizard last error message.
  325. //
  326.   WEBPOST_ERROR_LAST = DWORD($400421FF);
  327.   {$EXTERNALSYM WEBPOST_ERROR_LAST}
  328. implementation
  329. end.