Release 9.9.
[wine.git] / include / winldap.h
blob4f2543a05aa25a31521c41ac2ab621f6c5cbf19c
1 /*
2 * Copyright 2005 Hans Leidekker
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_WINLDAP_H
20 #define __WINE_WINLDAP_H
22 #include <windef.h>
23 #include <schnlsp.h>
25 #ifndef LDAPAPI
26 #define LDAPAPI __cdecl
27 #endif
30 typedef enum {
31 LDAP_SUCCESS = 0x00,
32 LDAP_OPERATIONS_ERROR = 0x01,
33 LDAP_PROTOCOL_ERROR = 0x02,
34 LDAP_TIMELIMIT_EXCEEDED = 0x03,
35 LDAP_SIZELIMIT_EXCEEDED = 0x04,
36 LDAP_COMPARE_FALSE = 0x05,
37 LDAP_COMPARE_TRUE = 0x06,
38 LDAP_AUTH_METHOD_NOT_SUPPORTED = 0x07,
39 LDAP_STRONG_AUTH_REQUIRED = 0x08,
40 LDAP_REFERRAL_V2 = 0x09,
41 LDAP_PARTIAL_RESULTS = 0x09,
42 LDAP_REFERRAL = 0x0a,
43 LDAP_ADMIN_LIMIT_EXCEEDED = 0x0b,
44 LDAP_UNAVAILABLE_CRIT_EXTENSION = 0x0c,
45 LDAP_CONFIDENTIALITY_REQUIRED = 0x0d,
46 LDAP_SASL_BIND_IN_PROGRESS = 0x0e,
48 LDAP_NO_SUCH_ATTRIBUTE = 0x10,
49 LDAP_UNDEFINED_TYPE = 0x11,
50 LDAP_INAPPROPRIATE_MATCHING = 0x12,
51 LDAP_CONSTRAINT_VIOLATION = 0x13,
52 LDAP_ATTRIBUTE_OR_VALUE_EXISTS = 0x14,
53 LDAP_INVALID_SYNTAX = 0x15,
55 LDAP_NO_SUCH_OBJECT = 0x20,
56 LDAP_ALIAS_PROBLEM = 0x21,
57 LDAP_INVALID_DN_SYNTAX = 0x22,
58 LDAP_IS_LEAF = 0x23,
59 LDAP_ALIAS_DEREF_PROBLEM = 0x24,
61 LDAP_INAPPROPRIATE_AUTH = 0x30,
62 LDAP_INVALID_CREDENTIALS = 0x31,
63 LDAP_INSUFFICIENT_RIGHTS = 0x32,
64 LDAP_BUSY = 0x33,
65 LDAP_UNAVAILABLE = 0x34,
66 LDAP_UNWILLING_TO_PERFORM = 0x35,
67 LDAP_LOOP_DETECT = 0x36,
68 LDAP_SORT_CONTROL_MISSING = 0x3C,
69 LDAP_OFFSET_RANGE_ERROR = 0x3D,
71 LDAP_NAMING_VIOLATION = 0x40,
72 LDAP_OBJECT_CLASS_VIOLATION = 0x41,
73 LDAP_NOT_ALLOWED_ON_NONLEAF = 0x42,
74 LDAP_NOT_ALLOWED_ON_RDN = 0x43,
75 LDAP_ALREADY_EXISTS = 0x44,
76 LDAP_NO_OBJECT_CLASS_MODS = 0x45,
77 LDAP_RESULTS_TOO_LARGE = 0x46,
78 LDAP_AFFECTS_MULTIPLE_DSAS = 0x47,
80 LDAP_VIRTUAL_LIST_VIEW_ERROR = 0x4c,
82 LDAP_OTHER = 0x50,
83 LDAP_SERVER_DOWN = 0x51,
84 LDAP_LOCAL_ERROR = 0x52,
85 LDAP_ENCODING_ERROR = 0x53,
86 LDAP_DECODING_ERROR = 0x54,
87 LDAP_TIMEOUT = 0x55,
88 LDAP_AUTH_UNKNOWN = 0x56,
89 LDAP_FILTER_ERROR = 0x57,
90 LDAP_USER_CANCELLED = 0x58,
91 LDAP_PARAM_ERROR = 0x59,
92 LDAP_NO_MEMORY = 0x5a,
93 LDAP_CONNECT_ERROR = 0x5b,
94 LDAP_NOT_SUPPORTED = 0x5c,
95 LDAP_CONTROL_NOT_FOUND = 0x5d,
96 LDAP_NO_RESULTS_RETURNED = 0x5e,
97 LDAP_MORE_RESULTS_TO_RETURN = 0x5f,
99 LDAP_CLIENT_LOOP = 0x60,
100 LDAP_REFERRAL_LIMIT_EXCEEDED = 0x61
101 } LDAP_RETCODE;
103 #define LDAP_SCOPE_BASE 0x00
104 #define LDAP_SCOPE_ONELEVEL 0x01
105 #define LDAP_SCOPE_SUBTREE 0x02
107 #define LBER_USE_DER 0x01
109 typedef struct berelement
111 PCHAR opaque;
112 } BerElement;
114 #define LDAP_OPT_API_INFO 0x00
115 #define LDAP_OPT_DESC 0x01
116 #define LDAP_OPT_DEREF 0x02
117 #define LDAP_OPT_SIZELIMIT 0x03
118 #define LDAP_OPT_TIMELIMIT 0x04
119 #define LDAP_OPT_THREAD_FN_PTRS 0x05
120 #define LDAP_OPT_REBIND_FN 0x06
121 #define LDAP_OPT_REBIND_ARG 0x07
122 #define LDAP_OPT_REFERRALS 0x08
123 #define LDAP_OPT_RESTART 0x09
124 #define LDAP_OPT_SSL 0x0a
125 #define LDAP_OPT_IO_FN_PTRS 0x0b
126 #define LDAP_OPT_CACHE_FN_PTRS 0x0d
127 #define LDAP_OPT_CACHE_STRATEGY 0x0e
128 #define LDAP_OPT_CACHE_ENABLE 0x0f
129 #define LDAP_OPT_REFERRAL_HOP_LIMIT 0x10
130 #define LDAP_OPT_PROTOCOL_VERSION 0x11
131 #define LDAP_OPT_VERSION 0x11
132 #define LDAP_OPT_API_FEATURE_INFO 0x15
133 #define LDAP_OPT_HOST_NAME 0x30
134 #define LDAP_OPT_ERROR_NUMBER 0x31
135 #define LDAP_OPT_ERROR_STRING 0x32
136 #define LDAP_OPT_SERVER_ERROR 0x33
137 #define LDAP_OPT_SERVER_EXT_ERROR 0x34
138 #define LDAP_OPT_PING_KEEP_ALIVE 0x36
139 #define LDAP_OPT_PING_WAIT_TIME 0x37
140 #define LDAP_OPT_PING_LIMIT 0x38
141 #define LDAP_OPT_DNSDOMAIN_NAME 0x3b
142 #define LDAP_OPT_GETDSNAME_FLAGS 0x3d
143 #define LDAP_OPT_HOST_REACHABLE 0x3e
144 #define LDAP_OPT_PROMPT_CREDENTIALS 0x3f
145 #define LDAP_OPT_TCP_KEEPALIVE 0x40
146 #define LDAP_OPT_FAST_CONCURRENT_BIND 0x41
147 #define LDAP_OPT_SEND_TIMEOUT 0x42
148 #define LDAP_OPT_REFERRAL_CALLBACK 0x70
149 #define LDAP_OPT_CLIENT_CERTIFICATE 0x80
150 #define LDAP_OPT_SERVER_CERTIFICATE 0x81
151 #define LDAP_OPT_AUTO_RECONNECT 0x91
152 #define LDAP_OPT_SSPI_FLAGS 0x92
153 #define LDAP_OPT_SSL_INFO 0x93
154 #define LDAP_OPT_REF_DEREF_CONN_PER_MSG 0x94
155 #define LDAP_OPT_TLS LDAP_OPT_SSL
156 #define LDAP_OPT_TLS_INFO LDAP_OPT_SSL_INFO
157 #define LDAP_OPT_SIGN 0x95
158 #define LDAP_OPT_ENCRYPT 0x96
159 #define LDAP_OPT_SASL_METHOD 0x97
160 #define LDAP_OPT_AREC_EXCLUSIVE 0x98
161 #define LDAP_OPT_SECURITY_CONTEXT 0x99
162 #define LDAP_OPT_ROOTDSE_CACHE 0x9a
164 #define LDAP_OPT_ON ((void *)1)
165 #define LDAP_OPT_OFF ((void *)0)
167 #define LDAP_VERSION1 1
168 #define LDAP_VERSION2 2
169 #define LDAP_VERSION3 3
170 #define LDAP_VERSION LDAP_VERSION2
172 #define LDAP_MSG_ONE 0
173 #define LDAP_MSG_ALL 1
174 #define LDAP_MSG_RECEIVED 2
176 #define LDAP_RES_BIND 0x61
177 #define LDAP_RES_SEARCH_ENTRY 0x64
178 #define LDAP_RES_SEARCH_RESULT 0x65
179 #define LDAP_RES_MODIFY 0x67
180 #define LDAP_RES_ADD 0x69
181 #define LDAP_RES_DELETE 0x6b
182 #define LDAP_RES_MODRDN 0x6d
183 #define LDAP_RES_COMPARE 0x6f
184 #define LDAP_RES_SESSION 0x72
185 #define LDAP_RES_REFERRAL 0x73
186 #define LDAP_RES_EXTENDED 0x78
187 #define LDAP_RES_ANY (-1)
189 #define LDAP_AUTH_SIMPLE 0x80
190 #define LDAP_AUTH_SASL 0x83
191 #define LDAP_AUTH_OTHERKIND 0x86
193 #define LDAP_AUTH_EXTERNAL (LDAP_AUTH_OTHERKIND | 0x0020)
194 #define LDAP_AUTH_SICILY (LDAP_AUTH_OTHERKIND | 0x0200)
195 #define LDAP_AUTH_NEGOTIATE (LDAP_AUTH_OTHERKIND | 0x0400)
196 #define LDAP_AUTH_MSN (LDAP_AUTH_OTHERKIND | 0x0800)
197 #define LDAP_AUTH_NTLM (LDAP_AUTH_OTHERKIND | 0x1000)
198 #define LDAP_AUTH_DPA (LDAP_AUTH_OTHERKIND | 0x2000)
199 #define LDAP_AUTH_DIGEST (LDAP_AUTH_OTHERKIND | 0x4000)
201 typedef struct ldap
203 struct
205 UINT_PTR sb_sd;
206 UCHAR Reserved1[41];
207 ULONG_PTR sb_naddr;
208 UCHAR Reserved2[24];
209 } ld_sb;
211 PCHAR ld_host;
212 ULONG ld_version;
213 UCHAR ld_lberoptions;
214 ULONG ld_deref;
215 ULONG ld_timelimit;
216 ULONG ld_sizelimit;
217 ULONG ld_errno;
218 PCHAR ld_matched;
219 PCHAR ld_error;
220 ULONG ld_msgid;
221 UCHAR Reserved3[25];
222 ULONG ld_cldaptries;
223 ULONG ld_cldaptimeout;
224 ULONG ld_refhoplimit;
225 ULONG ld_options;
226 } LDAP, *PLDAP;
228 #define LDAP_MOD_ADD 0x00
229 #define LDAP_MOD_DELETE 0x01
230 #define LDAP_MOD_REPLACE 0x02
231 #define LDAP_MOD_BVALUES 0x80
233 typedef struct ldapmodA {
234 ULONG mod_op;
235 PCHAR mod_type;
236 union {
237 PCHAR *modv_strvals;
238 struct berval **modv_bvals;
239 } mod_vals;
240 } LDAPModA, *PLDAPModA;
242 typedef struct ldapmodW {
243 ULONG mod_op;
244 PWCHAR mod_type;
245 union {
246 PWCHAR *modv_strvals;
247 struct berval **modv_bvals;
248 } mod_vals;
249 } LDAPModW, *PLDAPModW;
251 DECL_WINELIB_TYPE_AW(LDAPMod)
252 DECL_WINELIB_TYPE_AW(PLDAPMod)
254 typedef struct l_timeval
256 LONG tv_sec;
257 LONG tv_usec;
258 } LDAP_TIMEVAL, *PLDAP_TIMEVAL;
260 typedef struct ldapmsg
262 ULONG lm_msgid;
263 ULONG lm_msgtype;
265 PVOID lm_ber;
267 struct ldapmsg *lm_chain;
268 struct ldapmsg *lm_next;
269 ULONG lm_time;
271 PLDAP Connection;
272 PVOID Request;
273 ULONG lm_returncode;
274 USHORT lm_referral;
275 BOOLEAN lm_chased;
276 BOOLEAN lm_eom;
277 BOOLEAN ConnectionReferenced;
278 } LDAPMessage, *PLDAPMessage;
280 #define LAPI_MAJOR_VER1 1
281 #define LAPI_MINOR_VER1 1
283 typedef struct ldap_version_info
285 ULONG lv_size;
286 ULONG lv_major;
287 ULONG lv_minor;
288 } LDAP_VERSION_INFO, *PLDAP_VERSION_INFO;
290 typedef struct berval
292 ULONG bv_len;
293 PCHAR bv_val;
294 } LDAP_BERVAL, *PLDAP_BERVAL, BERVAL, *PBERVAL, BerValue;
296 #define LDAP_PAGED_RESULT_OID_STRING "1.2.840.113556.1.4.319"
297 #define LDAP_SERVER_RESP_SORT_OID "1.2.840.113556.1.4.474"
298 #define LDAP_CONTROL_VLVRESPONSE "2.16.840.1.113730.3.4.10"
300 #define LDAP_PAGED_RESULT_OID_STRING_W L"1.2.840.113556.1.4.319"
301 #define LDAP_SERVER_RESP_SORT_OID_W L"1.2.840.113556.1.4.474"
302 #define LDAP_CONTROL_VLVRESPONSE_W L"2.16.840.1.113730.3.4.10"
304 typedef struct ldapcontrolA
306 PCHAR ldctl_oid;
307 struct berval ldctl_value;
308 BOOLEAN ldctl_iscritical;
309 } LDAPControlA, *PLDAPControlA;
311 typedef struct ldapcontrolW
313 PWCHAR ldctl_oid;
314 struct berval ldctl_value;
315 BOOLEAN ldctl_iscritical;
316 } LDAPControlW, *PLDAPControlW;
318 DECL_WINELIB_TYPE_AW(LDAPControl)
319 DECL_WINELIB_TYPE_AW(PLDAPControl)
321 typedef struct ldapvlvinfo
323 int ldvlv_version;
324 ULONG ldvlv_before_count;
325 ULONG ldvlv_after_count;
326 ULONG ldvlv_offset;
327 ULONG ldvlv_count;
328 PBERVAL ldvlv_attrvalue;
329 PBERVAL ldvlv_context;
330 VOID *ldvlv_extradata;
331 } LDAPVLVInfo, *PLDAPVLVInfo;
333 typedef struct ldapsearch LDAPSearch, *PLDAPSearch;
335 typedef struct ldapsortkeyA
337 PCHAR sk_attrtype;
338 PCHAR sk_matchruleoid;
339 BOOLEAN sk_reverseorder;
340 } LDAPSortKeyA, *PLDAPSortKeyA;
342 typedef struct ldapsortkeyW
344 PWCHAR sk_attrtype;
345 PWCHAR sk_matchruleoid;
346 BOOLEAN sk_reverseorder;
347 } LDAPSortKeyW, *PLDAPSortKeyW;
349 DECL_WINELIB_TYPE_AW(LDAPSortKey)
350 DECL_WINELIB_TYPE_AW(PLDAPSortKey)
352 #define LDAP_API_INFO_VERSION 1
354 typedef struct ldapapiinfoA
356 int ldapai_info_version;
357 int ldapai_api_version;
358 int ldapai_protocol_version;
359 char **ldapai_extensions;
360 char *ldapai_vendor_name;
361 int ldapai_vendor_version;
362 } LDAPAPIInfoA;
364 typedef struct ldapapiinfoW
366 int ldapai_info_version;
367 int ldapai_api_version;
368 int ldapai_protocol_version;
369 PWCHAR *ldapai_extensions;
370 PWCHAR ldapai_vendor_name;
371 int ldapai_vendor_version;
372 } LDAPAPIInfoW;
374 DECL_WINELIB_TYPE_AW(LDAPAPIInfo)
376 #define LDAP_FEATURE_INFO_VERSION 1
378 typedef struct ldap_apifeature_infoA
380 int ldapaif_info_version;
381 char *ldapaif_name;
382 int ldapaif_version;
383 } LDAPAPIFeatureInfoA;
385 typedef struct ldap_apifeature_infoW
387 int ldapaif_info_version;
388 PWCHAR ldapaif_name;
389 int ldapaif_version;
390 } LDAPAPIFeatureInfoW;
392 DECL_WINELIB_TYPE_AW(LDAPAPIFeatureInfo)
394 typedef BOOLEAN (CDECL QUERYCLIENTCERT)(LDAP*,SecPkgContext_IssuerListInfoEx*,const CERT_CONTEXT**);
395 typedef BOOLEAN (CDECL VERIFYSERVERCERT)(LDAP*,const CERT_CONTEXT**);
398 #ifdef __cplusplus
399 extern "C" {
400 #endif
402 void CDECL ldap_memfreeA(char*);
403 void CDECL ldap_memfreeW(WCHAR*);
404 #define ldap_memfree WINELIB_NAME_AW(ldap_memfree)
405 ULONG CDECL ldap_value_freeA(char**);
406 ULONG CDECL ldap_value_freeW(WCHAR**);
407 #define ldap_value_free WINELIB_NAME_AW(ldap_value_free)
408 ULONG CDECL ldap_value_free_len(struct berval**);
410 LDAP * CDECL cldap_openA(PCHAR,ULONG);
411 LDAP * CDECL cldap_openW(PWCHAR,ULONG);
412 #define cldap_open WINELIB_NAME_AW(cldap_open)
413 ULONG CDECL ldap_abandon(LDAP*,ULONG);
414 ULONG CDECL ldap_addA(LDAP*,PCHAR,LDAPModA*[]);
415 ULONG CDECL ldap_addW(LDAP*,PWCHAR,LDAPModW*[]);
416 #define ldap_add WINELIB_NAME_AW(ldap_add)
417 ULONG CDECL ldap_add_extA(LDAP*,PCHAR,LDAPModA*[],PLDAPControlA*,PLDAPControlA*,ULONG*);
418 ULONG CDECL ldap_add_extW(LDAP*,PWCHAR,LDAPModW*[],PLDAPControlW*,PLDAPControlW*,ULONG*);
419 #define ldap_add_ext WINELIB_NAME_AW(ldap_add_ext)
420 ULONG CDECL ldap_add_ext_sA(LDAP*,PCHAR,LDAPModA*[],PLDAPControlA*,PLDAPControlA*);
421 ULONG CDECL ldap_add_ext_sW(LDAP*,PWCHAR,LDAPModW*[],PLDAPControlW*,PLDAPControlW*);
422 #define ldap_add_ext_s WINELIB_NAME_AW(ldap_add_ext_s)
423 ULONG CDECL ldap_add_sA(LDAP*,PCHAR,LDAPModA*[]);
424 ULONG CDECL ldap_add_sW(LDAP*,PWCHAR,LDAPModW*[]);
425 #define ldap_add_s WINELIB_NAME_AW(ldap_add_s)
426 ULONG CDECL ldap_bindA(LDAP*,PCHAR,PCHAR,ULONG);
427 ULONG CDECL ldap_bindW(LDAP*,PWCHAR,PWCHAR,ULONG);
428 #define ldap_bind WINELIB_NAME_AW(ldap_bind)
429 ULONG CDECL ldap_bind_sA(LDAP*,PCHAR,PCHAR,ULONG);
430 ULONG CDECL ldap_bind_sW(LDAP*,PWCHAR,PWCHAR,ULONG);
431 #define ldap_bind_s WINELIB_NAME_AW(ldap_bind_s)
432 ULONG CDECL ldap_check_filterA(LDAP*,PCHAR);
433 ULONG CDECL ldap_check_filterW(LDAP*,PWCHAR);
434 #define ldap_check_filter WINELIB_NAME_AW(ldap_check_filter)
435 ULONG CDECL ldap_cleanup(HANDLE);
436 ULONG CDECL ldap_close_extended_op(LDAP*,ULONG);
437 LDAP* CDECL ldap_conn_from_msg(LDAP*,LDAPMessage*);
438 ULONG CDECL ldap_compareA(LDAP*,PCHAR,PCHAR,PCHAR);
439 ULONG CDECL ldap_compareW(LDAP*,PWCHAR,PWCHAR,PWCHAR);
440 #define ldap_compare WINELIB_NAME_AW(ldap_compare)
441 ULONG CDECL ldap_compare_extA(LDAP*,PCHAR,PCHAR,PCHAR,struct berval*,PLDAPControlA*,PLDAPControlA*,ULONG*);
442 ULONG CDECL ldap_compare_extW(LDAP*,PWCHAR,PWCHAR,PWCHAR,struct berval*,PLDAPControlW*,PLDAPControlW*,ULONG*);
443 #define ldap_compare_ext WINELIB_NAME_AW(ldap_compare_ext)
444 ULONG CDECL ldap_compare_ext_sA(LDAP*,PCHAR,PCHAR,PCHAR,struct berval*,PLDAPControlA*,PLDAPControlA*);
445 ULONG CDECL ldap_compare_ext_sW(LDAP*,PWCHAR,PWCHAR,PWCHAR,struct berval*,PLDAPControlW*,PLDAPControlW*);
446 #define ldap_compare_ext_s WINELIB_NAME_AW(ldap_compare_ext_s)
447 ULONG CDECL ldap_compare_sA(LDAP*,PCHAR,PCHAR,PCHAR);
448 ULONG CDECL ldap_compare_sW(LDAP*,PWCHAR,PWCHAR,PWCHAR);
449 #define ldap_compare_s WINELIB_NAME_AW(ldap_compare_s)
450 ULONG CDECL ldap_connect(LDAP*,struct l_timeval*);
451 ULONG CDECL ldap_control_freeA(LDAPControlA*);
452 ULONG CDECL ldap_control_freeW(LDAPControlW*);
453 #define ldap_control_free WINELIB_NAME_AW(ldap_control_free)
454 ULONG CDECL ldap_controls_freeA(LDAPControlA**);
455 ULONG CDECL ldap_controls_freeW(LDAPControlW**);
456 #define ldap_controls_free WINELIB_NAME_AW(ldap_controls_free)
457 ULONG CDECL ldap_count_entries(LDAP*,LDAPMessage*);
458 ULONG CDECL ldap_count_references(LDAP*,LDAPMessage*);
459 ULONG CDECL ldap_count_values_len(struct berval**);
460 ULONG CDECL ldap_count_valuesA(PCHAR*);
461 ULONG CDECL ldap_count_valuesW(PWCHAR*);
462 #define ldap_count_values WINELIB_NAME_AW(ldap_count_values)
463 ULONG CDECL ldap_create_page_controlA(PLDAP,ULONG,struct berval*,UCHAR,PLDAPControlA*);
464 ULONG CDECL ldap_create_page_controlW(PLDAP,ULONG,struct berval*,UCHAR,PLDAPControlW*);
465 #define ldap_create_page_control WINELIB_NAME_AW(ldap_create_page_control)
466 ULONG CDECL ldap_create_sort_controlA(PLDAP,PLDAPSortKeyA*,UCHAR,PLDAPControlA*);
467 ULONG CDECL ldap_create_sort_controlW(PLDAP,PLDAPSortKeyW*,UCHAR,PLDAPControlW*);
468 #define ldap_create_sort_control WINELIB_NAME_AW(ldap_create_sort_control)
469 INT CDECL ldap_create_vlv_controlA(PLDAP,PLDAPVLVInfo,UCHAR,PLDAPControlA*);
470 INT CDECL ldap_create_vlv_controlW(PLDAP,PLDAPVLVInfo,UCHAR,PLDAPControlW*);
471 #define ldap_create_vlv_control WINELIB_NAME_AW(ldap_create_vlv_control)
472 ULONG CDECL ldap_deleteA(LDAP*,PCHAR);
473 ULONG CDECL ldap_deleteW(LDAP*,PWCHAR);
474 #define ldap_delete WINELIB_NAME_AW(ldap_delete)
475 ULONG CDECL ldap_delete_extA(LDAP*,PCHAR,PLDAPControlA*,PLDAPControlA*,ULONG*);
476 ULONG CDECL ldap_delete_extW(LDAP*,PWCHAR,PLDAPControlW*,PLDAPControlW*,ULONG*);
477 #define ldap_delete_ext WINELIB_NAME_AW(ldap_delete_ext)
478 ULONG CDECL ldap_delete_ext_sA(LDAP*,PCHAR,PLDAPControlA*,PLDAPControlA*);
479 ULONG CDECL ldap_delete_ext_sW(LDAP*,PWCHAR,PLDAPControlW*,PLDAPControlW*);
480 #define ldap_delete_ext_s WINELIB_NAME_AW(ldap_delete_ext_s)
481 ULONG CDECL ldap_delete_sA(LDAP*,PCHAR);
482 ULONG CDECL ldap_delete_sW(LDAP*,PWCHAR);
483 #define ldap_delete_s WINELIB_NAME_AW(ldap_delete_s)
484 char* CDECL ldap_dn2ufnA(char*) __WINE_DEALLOC(ldap_memfreeA) __WINE_MALLOC;
485 WCHAR* CDECL ldap_dn2ufnW(WCHAR*) __WINE_DEALLOC(ldap_memfreeW) __WINE_MALLOC;
486 #define ldap_dn2ufn WINELIB_NAME_AW(ldap_dn2ufn)
487 ULONG CDECL ldap_encode_sort_controlA(PLDAP,PLDAPSortKeyA*,PLDAPControlA,BOOLEAN);
488 ULONG CDECL ldap_encode_sort_controlW(PLDAP,PLDAPSortKeyW*,PLDAPControlW,BOOLEAN);
489 #define ldap_encode_sort_control WINELIB_NAME_AW(ldap_encode_sort_control)
490 PCHAR CDECL ldap_err2stringA(ULONG);
491 PWCHAR CDECL ldap_err2stringW(ULONG);
492 #define ldap_err2string WINELIB_NAME_AW(ldap_err2string)
493 ULONG CDECL ldap_escape_filter_elementA(PCHAR,ULONG,PCHAR,ULONG);
494 ULONG CDECL ldap_escape_filter_elementW(PCHAR,ULONG,PWCHAR,ULONG);
495 #define ldap_escape_filter_element WINELIB_NAME_AW(ldap_escape_filter_element)
496 char** CDECL ldap_explode_dnA(char*,ULONG) __WINE_DEALLOC(ldap_value_freeA);
497 WCHAR** CDECL ldap_explode_dnW(WCHAR*,ULONG) __WINE_DEALLOC(ldap_value_freeW);
498 #define ldap_explode_dn WINELIB_NAME_AW(ldap_explode_dn)
499 ULONG CDECL ldap_extended_operationA(LDAP*,PCHAR,struct berval*,PLDAPControlA*,PLDAPControlA*,ULONG*);
500 ULONG CDECL ldap_extended_operationW(LDAP*,PWCHAR,struct berval*,PLDAPControlW*,PLDAPControlW*,ULONG*);
501 #define ldap_extended_operation WINELIB_NAME_AW(ldap_extended_operation)
502 ULONG CDECL ldap_extended_operation_sA(LDAP*,PCHAR,struct berval*,PLDAPControlA*,PLDAPControlA*,PCHAR*,struct berval**);
503 ULONG CDECL ldap_extended_operation_sW(LDAP*,PWCHAR,struct berval*,PLDAPControlW*,PLDAPControlW*,PWCHAR*,struct berval**);
504 #define ldap_extended_operation_s WINELIB_NAME_AW(ldap_extended_operation_s)
505 char* CDECL ldap_first_attributeA(LDAP*,LDAPMessage*,BerElement**)
506 __WINE_DEALLOC(ldap_memfreeA) __WINE_MALLOC;
507 WCHAR* CDECL ldap_first_attributeW(LDAP*,LDAPMessage*,BerElement**)
508 __WINE_DEALLOC(ldap_memfreeW) __WINE_MALLOC;
509 #define ldap_first_attribute WINELIB_NAME_AW(ldap_first_attribute)
510 LDAPMessage* CDECL ldap_first_entry(LDAP*,LDAPMessage*);
511 LDAPMessage* CDECL ldap_first_reference(LDAP*,LDAPMessage*);
512 ULONG CDECL ldap_free_controlsA(LDAPControlA**);
513 ULONG CDECL ldap_free_controlsW(LDAPControlW**);
514 #define ldap_free_controls WINELIB_NAME_AW(ldap_free_controls)
515 char* CDECL ldap_get_dnA(LDAP*,LDAPMessage*) __WINE_DEALLOC(ldap_memfreeA) __WINE_MALLOC;
516 WCHAR* CDECL ldap_get_dnW(LDAP*,LDAPMessage*) __WINE_DEALLOC(ldap_memfreeW) __WINE_MALLOC;
517 #define ldap_get_dn WINELIB_NAME_AW(ldap_get_dn)
518 ULONG CDECL ldap_get_next_page(PLDAP,PLDAPSearch,ULONG,ULONG*);
519 ULONG CDECL ldap_get_next_page_s(PLDAP,PLDAPSearch,struct l_timeval*,ULONG,ULONG*,LDAPMessage**);
520 ULONG CDECL ldap_get_optionA(LDAP*,int,void*);
521 ULONG CDECL ldap_get_optionW(LDAP*,int,void*);
522 #define ldap_get_option WINELIB_NAME_AW(ldap_get_option)
523 ULONG CDECL ldap_get_paged_count(LDAP*,PLDAPSearch,ULONG*,LDAPMessage*);
524 char** CDECL ldap_get_valuesA(LDAP*,LDAPMessage*,char*) __WINE_DEALLOC(ldap_value_freeA);
525 WCHAR** CDECL ldap_get_valuesW(LDAP*,LDAPMessage*,WCHAR*) __WINE_DEALLOC(ldap_value_freeW);
526 #define ldap_get_values WINELIB_NAME_AW(ldap_get_values)
527 struct berval ** CDECL ldap_get_values_lenA(LDAP*,LDAPMessage*,char*)
528 __WINE_DEALLOC(ldap_value_free_len);
529 struct berval ** CDECL ldap_get_values_lenW(LDAP*,LDAPMessage*,WCHAR*)
530 __WINE_DEALLOC(ldap_value_free_len);
531 #define ldap_get_values_len WINELIB_NAME_AW(ldap_get_values_len)
532 LDAP* CDECL ldap_initA(const PCHAR,ULONG);
533 LDAP* CDECL ldap_initW(const PWCHAR,ULONG);
534 #define ldap_init WINELIB_NAME_AW(ldap_init)
535 ULONG CDECL ldap_modifyA(LDAP*,PCHAR,LDAPModA*[]);
536 ULONG CDECL ldap_modifyW(LDAP*,PWCHAR,LDAPModW*[]);
537 #define ldap_modify WINELIB_NAME_AW(ldap_modify)
538 ULONG CDECL ldap_modify_extA(LDAP*,PCHAR,LDAPModA*[],PLDAPControlA*,PLDAPControlA*,ULONG*);
539 ULONG CDECL ldap_modify_extW(LDAP*,PWCHAR,LDAPModW*[],PLDAPControlW*,PLDAPControlW*,ULONG*);
540 #define ldap_modify_ext WINELIB_NAME_AW(ldap_modify_ext)
541 ULONG CDECL ldap_modify_ext_sA(LDAP*,PCHAR,LDAPModA*[],PLDAPControlA*,PLDAPControlA*);
542 ULONG CDECL ldap_modify_ext_sW(LDAP*,PWCHAR,LDAPModW*[],PLDAPControlW*,PLDAPControlW*);
543 #define ldap_modify_ext_s WINELIB_NAME_AW(ldap_modify_ext_s)
544 ULONG CDECL ldap_modify_sA(LDAP*,PCHAR,LDAPModA*[]);
545 ULONG CDECL ldap_modify_sW(LDAP*,PWCHAR,LDAPModW*[]);
546 #define ldap_modify_s WINELIB_NAME_AW(ldap_modify_s)
547 ULONG CDECL ldap_modrdnA(LDAP*,PCHAR,PCHAR);
548 ULONG CDECL ldap_modrdnW(LDAP*,PWCHAR,PWCHAR);
549 #define ldap_modrdn WINELIB_NAME_AW(ldap_modrdn)
550 ULONG CDECL ldap_modrdn2A(LDAP*,PCHAR,PCHAR,INT);
551 ULONG CDECL ldap_modrdn2W(LDAP*,PWCHAR,PWCHAR,INT);
552 #define ldap_modrdn2 WINELIB_NAME_AW(ldap_modrdn2)
553 ULONG CDECL ldap_modrdn2_sA(LDAP*,PCHAR,PCHAR,INT);
554 ULONG CDECL ldap_modrdn2_sW(LDAP*,PWCHAR,PWCHAR,INT);
555 #define ldap_modrdn2_s WINELIB_NAME_AW(ldap_modrdn2_s)
556 ULONG CDECL ldap_modrdn_sA(LDAP*,PCHAR,PCHAR);
557 ULONG CDECL ldap_modrdn_sW(LDAP*,PWCHAR,PWCHAR);
558 #define ldap_modrdn_s WINELIB_NAME_AW(ldap_modrdn_s)
559 ULONG CDECL ldap_msgfree(LDAPMessage*);
560 char* CDECL ldap_next_attributeA(LDAP*,LDAPMessage*,BerElement*)
561 __WINE_DEALLOC(ldap_memfreeA) __WINE_MALLOC;
562 WCHAR* CDECL ldap_next_attributeW(LDAP*,LDAPMessage*,BerElement*)
563 __WINE_DEALLOC(ldap_memfreeW) __WINE_MALLOC;
564 #define ldap_next_attribute WINELIB_NAME_AW(ldap_next_attribute)
565 LDAPMessage * CDECL ldap_next_entry(LDAP*,LDAPMessage*);
566 LDAP * CDECL ldap_openA(PCHAR,ULONG);
567 LDAP * CDECL ldap_openW(PWCHAR,ULONG);
568 #define ldap_open WINELIB_NAME_AW(ldap_open)
569 ULONG CDECL ldap_parse_extended_resultA(LDAP*,LDAPMessage*,PCHAR*,struct berval**,BOOLEAN);
570 ULONG CDECL ldap_parse_extended_resultW(LDAP*,LDAPMessage*,PWCHAR*,struct berval**,BOOLEAN);
571 #define ldap_parse_extended_result WINELIB_NAME_AW(ldap_parse_extended_result)
572 ULONG CDECL ldap_parse_page_controlA(LDAP*,PLDAPControlA*,ULONG*,struct berval**);
573 ULONG CDECL ldap_parse_page_controlW(LDAP*,PLDAPControlW*,ULONG*,struct berval**);
574 #define ldap_parse_page_control WINELIB_NAME_AW(ldap_parse_page_control)
575 ULONG CDECL ldap_parse_referenceA(LDAP*,LDAPMessage*,PCHAR**);
576 ULONG CDECL ldap_parse_referenceW(LDAP*,LDAPMessage*,PWCHAR**);
577 #define ldap_parse_reference WINELIB_NAME_AW(ldap_parse_reference)
578 ULONG CDECL ldap_result2error(LDAP*,LDAPMessage*,ULONG);
579 ULONG CDECL ldap_parse_resultA(LDAP*,LDAPMessage*,ULONG*,PCHAR*,PCHAR*,PCHAR**,PLDAPControlA**,BOOLEAN);
580 ULONG CDECL ldap_parse_resultW(LDAP*,LDAPMessage*,ULONG*,PWCHAR*,PWCHAR*,PWCHAR**,PLDAPControlW**,BOOLEAN);
581 #define ldap_parse_result WINELIB_NAME_AW(ldap_parse_result)
582 ULONG CDECL ldap_parse_sort_controlA(LDAP*,PLDAPControlA*,ULONG*,PCHAR*);
583 ULONG CDECL ldap_parse_sort_controlW(LDAP*,PLDAPControlW*,ULONG*,PWCHAR*);
584 #define ldap_parse_sort_control WINELIB_NAME_AW(ldap_parse_sort_control)
585 INT CDECL ldap_parse_vlv_controlA(PLDAP,PLDAPControlA*,PULONG,PULONG,PBERVAL*,PINT);
586 INT CDECL ldap_parse_vlv_controlW(PLDAP,PLDAPControlW*,PULONG,PULONG,PBERVAL*,PINT);
587 #define ldap_parse_vlv_control WINELIB_NAME_AW(ldap_parse_vlv_control)
588 void CDECL ldap_perror(LDAP*,const PCHAR);
589 ULONG CDECL ldap_rename_extA(LDAP*,PCHAR,PCHAR,PCHAR,INT,PLDAPControlA*,PLDAPControlA*,ULONG*);
590 ULONG CDECL ldap_rename_extW(LDAP*,PWCHAR,PWCHAR,PWCHAR,INT,PLDAPControlW*,PLDAPControlW*,ULONG*);
591 #define ldap_rename_ext WINELIB_NAME_AW(ldap_rename_ext)
592 ULONG CDECL ldap_rename_ext_sA(LDAP*,PCHAR,PCHAR,PCHAR,INT,PLDAPControlA*,PLDAPControlA*);
593 ULONG CDECL ldap_rename_ext_sW(LDAP*,PWCHAR,PWCHAR,PWCHAR,INT,PLDAPControlW*,PLDAPControlW*);
594 #define ldap_rename_ext_s WINELIB_NAME_AW(ldap_rename_ext_s)
595 ULONG CDECL ldap_result(LDAP*,ULONG,ULONG,struct l_timeval*,LDAPMessage**);
596 ULONG CDECL ldap_result2error(LDAP*,LDAPMessage*,ULONG);
597 ULONG CDECL ldap_sasl_bindA(LDAP*,const PCHAR,const PCHAR,const BERVAL*,PLDAPControlA*,PLDAPControlA*,int*);
598 ULONG CDECL ldap_sasl_bindW(LDAP*,const PWCHAR,const PWCHAR,const BERVAL*,PLDAPControlW*,PLDAPControlW*,int*);
599 #define ldap_sasl_bind WINELIB_NAME_AW(ldap_sasl_bind)
600 ULONG CDECL ldap_sasl_bind_sA(LDAP*,const PCHAR,const PCHAR,const BERVAL*,PLDAPControlA*,PLDAPControlA*,PBERVAL*);
601 ULONG CDECL ldap_sasl_bind_sW(LDAP*,const PWCHAR,const PWCHAR,const BERVAL*,PLDAPControlW*,PLDAPControlW*,PBERVAL*);
602 #define ldap_sasl_bind_s WINELIB_NAME_AW(ldap_sasl_bind_s)
603 ULONG CDECL ldap_simple_bindA(LDAP*,PCHAR,PCHAR);
604 ULONG CDECL ldap_simple_bindW(LDAP*,PWCHAR,PWCHAR);
605 #define ldap_simple_bind WINELIB_NAME_AW(ldap_simple_bind)
606 ULONG CDECL ldap_simple_bind_sA(LDAP*,PCHAR,PCHAR);
607 ULONG CDECL ldap_simple_bind_sW(LDAP*,PWCHAR,PWCHAR);
608 #define ldap_simple_bind_s WINELIB_NAME_AW(ldap_simple_bind_s)
609 ULONG CDECL ldap_search_abandon_page(PLDAP,PLDAPSearch);
610 ULONG CDECL ldap_searchA(LDAP*,PCHAR,ULONG,PCHAR,PCHAR[],ULONG);
611 ULONG CDECL ldap_searchW(LDAP*,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG);
612 #define ldap_search WINELIB_NAME_AW(ldap_search)
613 ULONG CDECL ldap_search_extA(LDAP*,PCHAR,ULONG,PCHAR,PCHAR[],ULONG,PLDAPControlA*,
614 PLDAPControlA*,ULONG,ULONG,ULONG*);
615 ULONG CDECL ldap_search_extW(LDAP*,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG,PLDAPControlW*,
616 PLDAPControlW*,ULONG,ULONG,ULONG*);
617 #define ldap_search_ext WINELIB_NAME_AW(ldap_search_ext)
618 ULONG CDECL ldap_search_ext_sA(LDAP*,PCHAR,ULONG,PCHAR,PCHAR[],ULONG,PLDAPControlA*,
619 PLDAPControlA*,struct l_timeval*,ULONG,LDAPMessage**);
620 ULONG CDECL ldap_search_ext_sW(LDAP*,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG,PLDAPControlW*,
621 PLDAPControlW*,struct l_timeval*,ULONG,LDAPMessage**);
622 #define ldap_search_ext_s WINELIB_NAME_AW(ldap_search_ext_s)
623 PLDAPSearch CDECL ldap_search_init_pageA(PLDAP,PCHAR,ULONG,PCHAR,PCHAR[],ULONG,PLDAPControlA*,
624 PLDAPControlA*,ULONG,ULONG,PLDAPSortKeyA*);
625 PLDAPSearch CDECL ldap_search_init_pageW(PLDAP,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG,PLDAPControlW*,
626 PLDAPControlW*,ULONG,ULONG, PLDAPSortKeyW*);
627 #define ldap_search_init_page WINELIB_NAME_AW(ldap_search_init_page)
628 ULONG CDECL ldap_search_sA(LDAP*,PCHAR,ULONG,PCHAR,PCHAR[],ULONG,LDAPMessage**);
629 ULONG CDECL ldap_search_sW(LDAP*,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG,LDAPMessage**);
630 #define ldap_search_s WINELIB_NAME_AW(ldap_search_s)
631 ULONG CDECL ldap_search_stA(LDAP*,const PCHAR,ULONG,const PCHAR,PCHAR[],ULONG,
632 struct l_timeval*,LDAPMessage**);
633 ULONG CDECL ldap_search_stW(LDAP*,const PWCHAR,ULONG,const PWCHAR,PWCHAR[],ULONG,
634 struct l_timeval*,LDAPMessage**);
635 #define ldap_search_st WINELIB_NAME_AW(ldap_search_st)
636 ULONG CDECL ldap_set_optionA(LDAP*,int,void*);
637 ULONG CDECL ldap_set_optionW(LDAP*,int,void*);
638 #define ldap_set_option WINELIB_NAME_AW(ldap_set_option)
639 LDAP * CDECL ldap_sslinitA(PCHAR,ULONG,int);
640 LDAP * CDECL ldap_sslinitW(PWCHAR,ULONG,int);
641 #define ldap_sslinit WINELIB_NAME_AW(ldap_sslinit)
642 ULONG CDECL ldap_start_tls_sA(LDAP*,PULONG,LDAPMessage**,PLDAPControlA*,PLDAPControlA*);
643 ULONG CDECL ldap_start_tls_sW(LDAP*,PULONG,LDAPMessage**,PLDAPControlW*,PLDAPControlW*);
644 #define ldap_start_tls_s WINELIB_NAME_AW(ldap_start_tls_s)
645 ULONG CDECL ldap_startup(PLDAP_VERSION_INFO,HANDLE*);
646 BOOLEAN CDECL ldap_stop_tls_s(LDAP*);
647 ULONG CDECL ldap_ufn2dnA(PCHAR,PCHAR*);
648 ULONG CDECL ldap_ufn2dnW(PWCHAR,PWCHAR*);
649 #define ldap_ufn2dn WINELIB_NAME_AW(ldap_ufn2dn)
650 ULONG CDECL ldap_unbind(LDAP*);
651 ULONG CDECL ldap_unbind_s(LDAP*);
653 void CDECL ber_bvfree(BERVAL*);
655 ULONG CDECL LdapGetLastError(void);
656 ULONG CDECL LdapMapErrorToWin32(ULONG);
657 int CDECL LdapUnicodeToUTF8(LPCWSTR,int,LPSTR,int);
658 int CDECL LdapUTF8ToUnicode(LPCSTR,int,LPWSTR,int);
660 #ifdef __cplusplus
662 #endif
664 #endif /* __WINE_WINLDAP_H */