KLDAP Library
22#ifndef W32_LDAP_HELP_H
23#define W32_LDAP_HELP_H
42typedef ULONG ber_len_t;
45#define timeval l_timeval
51#define ldap_init(a,b) win_ldap_init(a,b)
52#define ldap_sasl_bind(a, b, c, d, e, f, g) \
53 win_ldap_sasl_bind(a, b, c, d, e, f, g)
54#define ldap_sasl_bind_s(a, b, c, d, e, f, g) \
55 win_ldap_sasl_bind_s(a, b, c, d, e, f, g)
56#define ldap_parse_sasl_bind_result ( a, b, c, d, e ) \
57 win_ldap_parse_sasl_bind_result((a), (b), (c), (d), (e))
58#define ldap_get_dn(a, b) win_ldap_get_dn(a,b)
59#define ldap_memfree(a) win_ldap_memfree(a)
60#define ldap_mods_free(a, b) win_ldap_mods_free(a, b)
61#define ldap_first_attribute(a, b, c) \
62 win_ldap_first_attribute(a, b, c)
63#define ldap_get_values_len(a, b, c) \
64 win_ldap_get_values_len(a, b, c)
65#define ldap_next_attribute(a, b, c ) \
66 win_ldap_next_attribute(a, b, c)
67#define ldap_parse_result(a, b, c, d, e, f, g, h) \
68 win_ldap_parse_result(a, b, c, d, e, f, g, h)
69#define ldap_parse_extended_result(a, b, c, d, e) \
70 win_ldap_parse_extended_result(a, b, c, d, e)
71#define ldap_add_ext(a, b, c, d, e, f) \
72 win_ldap_add_ext((a), (b), (c), (d), (e), (f))
73#define ldap_add_ext_s(a, b, c, d, e) \
74 win_ldap_add_ext_s((a), (b), (c), (d), (e))
75# define ldap_compare_ext_s(a, b, c, d, e, f) \
76 win_ldap_compare_ext_s((a), (b), (c), (d), (e), (f))
77# define ldap_compare_ext(a, b, c, d, e, f, g) \
78 win_ldap_compare_ext((a), (b), (c), (d), (e), (f), (g))
79# define ldap_modify_ext_s(a, b, c, d, e ) \
80 win_ldap_modify_ext_s((a), (b), (c), (d), (e))
81# define ldap_search_ext(a, b, c, d, e, f, g, h, i, j, k) \
82 win_ldap_search_ext((a), (b), (c), (d), (e), (f), (g), (h), (i), (j), (k))
83#define ldap_rename_ext( a, b, c, d, e, f, g, h ) \
84 win_ldap_rename_ext((a), (b), (c), (d), (e), (f), (g), (h) )
85#define ldap_rename( a, b, c, d, e, f, g, h ) \
86 ldap_rename_ext((a), (b), (c), (d), (e), (f), (g), (h) )
87#define ldap_delete_ext(a, b, c, d, e ) \
88 win_ldap_delete_ext((a), (b), (c), (d), (e) )
89#define ldap_modify_ext(a, b, c, d, e, f ) \
90 win_ldap_modify_ext( (a), (b), (c), (d), (e), (f))
91#define ldap_abandon_ext(a, b, c, d) \
92 win_ldap_abandon_ext((a), (b), (c), (d))
93#define ldap_controls_free(a) win_ldap_controls_free(a)
100# define LDAPControl LDAPControlA
101# define LDAPMod LDAPModA
102# define win_ldap_init(a,b) ldap_initA ((a), (b))
103# define win_ldap_simple_bind_s(a,b,c) ldap_simple_bind_sA ((a), (b), (c))
104# define win_ldap_sasl_bind(a, b, c, d, e, f, g) \
105 ldap_sasl_bindA(a, b, c, d, e, f, g)
106# define win_ldap_sasl_bind_s(a, b, c, d, e, f, g) \
107 ldap_sasl_bind_sA(a, b, c, d, e, f, g)
108# define win_ldap_search_st(a,b,c,d,e,f,g,h) \
109 ldap_search_stA ((a), (b), (c), (d), (e), (f), (g), (h))
110# define win_ldap_search_ext(a, b, c, d, e, f, g, h, i, j, k) \
111 my_win_ldap_search_ext((a), (b), (c), (d), (e), (f), (g), (h), (i), (j), (k))
112# define win_ldap_get_dn(a, b) ldap_get_dnA((a), (b))
113# define win_ldap_first_attribute(a,b,c) ldap_first_attributeA ((a), (b), (c))
114# define win_ldap_next_attribute(a,b,c) ldap_next_attributeA ((a), (b), (c))
115# define win_ldap_get_values_len(a,b,c) ldap_get_values_lenA ((a), (b), (c))
116# define win_ldap_memfree(a) ldap_memfreeA ((a))
117# define win_ldap_err2string(a) ldap_err2stringA((a))
118# define win_ldap_controls_free(a) ldap_controls_freeA((a))
119# define win_ldap_mods_free(a, b) ldap_mods_freeA((a), (b))
120# define win_ldap_add_ext(a, b, c, d, e, f) \
121 ldap_add_extA((a), (b), (c), (d), (e), ((ulong*)f))
122# define win_ldap_add_ext_s(a, b, c, d, e) \
123 ldap_add_ext_sA((a), (b), (c), (d), (e))
124# define win_ldap_parse_extended_result(a, b, c, d, e ) \
125 ldap_parse_extended_resultA((*a), (b), (c), (d), (e))
126# define win_ldap_parse_result(a, b, c, d, e, f, g, h ) \
127 ldap_parse_resultA((a), (b), ((ulong *)c), (d), (e), (f), (g), (h))
128# define win_ldap_modify_ext_s(a, b, c, d, e ) \
129 ldap_modify_ext_sW((a), (b), (c), (d), (e))
130# define win_ldap_compare_ext_s(a, b, c, d, e, f ) \
131 ldap_compare_ext_sA((a), (b), (c), (d), (e), (f))
This file is part of the KDE documentation.
Documentation copyright © 1996-2022 The KDE developers.
Generated on Thu Jul 21 2022 00:00:00 by
doxygen 1.9.5 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.