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

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Active Directory 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: adserr.h, released June 2000. The original Pascal      }
  9. { code is: AdsErr.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 JwaAdsErr;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "adserr.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. //
  51. //  Values are 32 bit values layed out as follows:
  52. //
  53. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  54. //   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
  55. //  +---+-+-+-----------------------+-------------------------------+
  56. //  |Sev|C|R|     Facility          |               Code            |
  57. //  +---+-+-+-----------------------+-------------------------------+
  58. //
  59. //  where
  60. //
  61. //      Sev - is the severity code
  62. //
  63. //          00 - Success
  64. //          01 - Informational
  65. //          10 - Warning
  66. //          11 - Error
  67. //
  68. //      C - is the Customer code flag
  69. //
  70. //      R - is a reserved bit
  71. //
  72. //      Facility - is the facility code
  73. //
  74. //      Code - is the facility's status code
  75. //
  76. //
  77. // Define the facility codes
  78. //
  79. const
  80.   FACILITY_WINDOWS  = 8;
  81.   {$EXTERNALSYM FACILITY_WINDOWS}
  82.   FACILITY_STORAGE  = 3;
  83.   {$EXTERNALSYM FACILITY_STORAGE}
  84.   FACILITY_RPC      = 1;
  85.   {$EXTERNALSYM FACILITY_RPC}
  86.   FACILITY_SSPI     = 9;
  87.   {$EXTERNALSYM FACILITY_SSPI}
  88.   FACILITY_WIN32    = 7;
  89.   {$EXTERNALSYM FACILITY_WIN32}
  90.   FACILITY_CONTROL  = 10;
  91.   {$EXTERNALSYM FACILITY_CONTROL}
  92.   FACILITY_NULL     = 0;
  93.   {$EXTERNALSYM FACILITY_NULL}
  94.   FACILITY_ITF      = 4;
  95.   {$EXTERNALSYM FACILITY_ITF}
  96.   FACILITY_DISPATCH = 2;
  97.   {$EXTERNALSYM FACILITY_DISPATCH}
  98. //
  99. // Define the severity codes
  100. //
  101. //
  102. // MessageId: E_ADS_BAD_PATHNAME
  103. //
  104. // MessageText:
  105. //
  106. //  An invalid directory pathname was passed
  107. //
  108.   E_ADS_BAD_PATHNAME = HRESULT($80005000);
  109.   {$EXTERNALSYM E_ADS_BAD_PATHNAME}
  110. //
  111. // MessageId: E_ADS_INVALID_DOMAIN_OBJECT
  112. //
  113. // MessageText:
  114. //
  115. //  An unknown directory domain object was requested
  116. //
  117.   E_ADS_INVALID_DOMAIN_OBJECT = HRESULT($80005001);
  118.   {$EXTERNALSYM E_ADS_INVALID_DOMAIN_OBJECT}
  119. //
  120. // MessageId: E_ADS_INVALID_USER_OBJECT
  121. //
  122. // MessageText:
  123. //
  124. //  An unknown directory user object was requested
  125. //
  126.   E_ADS_INVALID_USER_OBJECT = HRESULT($80005002);
  127.   {$EXTERNALSYM E_ADS_INVALID_USER_OBJECT}
  128. //
  129. // MessageId: E_ADS_INVALID_COMPUTER_OBJECT
  130. //
  131. // MessageText:
  132. //
  133. //  An unknown directory computer object was requested
  134. //
  135.   E_ADS_INVALID_COMPUTER_OBJECT = HRESULT($80005003);
  136.   {$EXTERNALSYM E_ADS_INVALID_COMPUTER_OBJECT}
  137. //
  138. // MessageId: E_ADS_UNKNOWN_OBJECT
  139. //
  140. // MessageText:
  141. //
  142. //  An unknown directory object was requested
  143. //
  144.   E_ADS_UNKNOWN_OBJECT = HRESULT($80005004);
  145.   {$EXTERNALSYM E_ADS_UNKNOWN_OBJECT}
  146. //
  147. // MessageId: E_ADS_PROPERTY_NOT_SET
  148. //
  149. // MessageText:
  150. //
  151. //  The specified directory property was not set
  152. //
  153.   E_ADS_PROPERTY_NOT_SET = HRESULT($80005005);
  154.   {$EXTERNALSYM E_ADS_PROPERTY_NOT_SET}
  155. //
  156. // MessageId: E_ADS_PROPERTY_NOT_SUPPORTED
  157. //
  158. // MessageText:
  159. //
  160. //  The specified directory property is not supported
  161. //
  162.   E_ADS_PROPERTY_NOT_SUPPORTED = HRESULT($80005006);
  163.   {$EXTERNALSYM E_ADS_PROPERTY_NOT_SUPPORTED}
  164. //
  165. // MessageId: E_ADS_PROPERTY_INVALID
  166. //
  167. // MessageText:
  168. //
  169. //  The specified directory property is invalid
  170. //
  171.   E_ADS_PROPERTY_INVALID = HRESULT($80005007);
  172.   {$EXTERNALSYM E_ADS_PROPERTY_INVALID}
  173. //
  174. // MessageId: E_ADS_BAD_PARAMETER
  175. //
  176. // MessageText:
  177. //
  178. //  One or more input parameters are invalid
  179. //
  180.   E_ADS_BAD_PARAMETER = HRESULT($80005008);
  181.   {$EXTERNALSYM E_ADS_BAD_PARAMETER}
  182. //
  183. // MessageId: E_ADS_OBJECT_UNBOUND
  184. //
  185. // MessageText:
  186. //
  187. //  The specified directory object is not bound to a remote resource
  188. //
  189.   E_ADS_OBJECT_UNBOUND = HRESULT($80005009);
  190.   {$EXTERNALSYM E_ADS_OBJECT_UNBOUND}
  191. //
  192. // MessageId: E_ADS_PROPERTY_NOT_MODIFIED
  193. //
  194. // MessageText:
  195. //
  196. //  The specified directory object has not been modified
  197. //
  198.   E_ADS_PROPERTY_NOT_MODIFIED = HRESULT($8000500A);
  199.   {$EXTERNALSYM E_ADS_PROPERTY_NOT_MODIFIED}
  200. //
  201. // MessageId: E_ADS_PROPERTY_MODIFIED
  202. //
  203. // MessageText:
  204. //
  205. //  The specified directory object has been modified
  206. //
  207.   E_ADS_PROPERTY_MODIFIED = HRESULT($8000500B);
  208.   {$EXTERNALSYM E_ADS_PROPERTY_MODIFIED}
  209. //
  210. // MessageId: E_ADS_CANT_CONVERT_DATATYPE
  211. //
  212. // MessageText:
  213. //
  214. //  The directory datatype cannot be converted to/from a native DS datatype
  215. //
  216.   E_ADS_CANT_CONVERT_DATATYPE = HRESULT($8000500C);
  217.   {$EXTERNALSYM E_ADS_CANT_CONVERT_DATATYPE}
  218. //
  219. // MessageId: E_ADS_PROPERTY_NOT_FOUND
  220. //
  221. // MessageText:
  222. //
  223. //  The directory property cannot be found in the cache.
  224. //
  225.   E_ADS_PROPERTY_NOT_FOUND = HRESULT($8000500D);
  226.   {$EXTERNALSYM E_ADS_PROPERTY_NOT_FOUND}
  227. //
  228. // MessageId: E_ADS_OBJECT_EXISTS
  229. //
  230. // MessageText:
  231. //
  232. //  The directory object exists.
  233. //
  234.   E_ADS_OBJECT_EXISTS = HRESULT($8000500E);
  235.   {$EXTERNALSYM E_ADS_OBJECT_EXISTS}
  236. //
  237. // MessageId: E_ADS_SCHEMA_VIOLATION
  238. //
  239. // MessageText:
  240. //
  241. //  The attempted action violates the DS schema rules.
  242. //
  243.   E_ADS_SCHEMA_VIOLATION = HRESULT($8000500F);
  244.   {$EXTERNALSYM E_ADS_SCHEMA_VIOLATION}
  245. //
  246. // MessageId: E_ADS_COLUMN_NOT_SET
  247. //
  248. // MessageText:
  249. //
  250. //  The specified column in the directory was not set.
  251. //
  252.   E_ADS_COLUMN_NOT_SET = HRESULT($80005010);
  253.   {$EXTERNALSYM E_ADS_COLUMN_NOT_SET}
  254. //
  255. // MessageId: S_ADS_ERRORSOCCURRED
  256. //
  257. // MessageText:
  258. //
  259. //  One or more errors occurred
  260. //
  261.   S_ADS_ERRORSOCCURRED = HRESULT($00005011);
  262.   {$EXTERNALSYM S_ADS_ERRORSOCCURRED}
  263. //
  264. // MessageId: S_ADS_NOMORE_ROWS
  265. //
  266. // MessageText:
  267. //
  268. //  No more rows to be obatained by the search result.
  269. //
  270.   S_ADS_NOMORE_ROWS = HRESULT($00005012);
  271.   {$EXTERNALSYM S_ADS_NOMORE_ROWS}
  272. //
  273. // MessageId: S_ADS_NOMORE_COLUMNS
  274. //
  275. // MessageText:
  276. //
  277. //  No more columns to be obatained for the current row.
  278. //
  279.   S_ADS_NOMORE_COLUMNS = HRESULT($00005013);
  280.   {$EXTERNALSYM S_ADS_NOMORE_COLUMNS}
  281. //
  282. // MessageId: E_ADS_INVALID_FILTER
  283. //
  284. // MessageText:
  285. //
  286. //  The search filter specified is invalid
  287. //
  288.   E_ADS_INVALID_FILTER = HRESULT($80005014);
  289.   {$EXTERNALSYM E_ADS_INVALID_FILTER}
  290. implementation
  291. end.