Implement ldap_search* functions.
[wine/multimedia.git] / dlls / wldap32 / winldap_private.h
blob72c95e049befdd93e5e7b0c6a06e783d35fa7889
1 /*
2 * WLDAP32 - LDAP support for Wine
4 * Copyright 2005 Hans Leidekker
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * This is an internal version of winldap.h where constants, types and
21 * functions are prefixed with WLDAP32_ whenever they conflict with
22 * native headers.
25 typedef struct ldap
27 struct
29 UINT_PTR sb_sd;
30 UCHAR Reserved1[41];
31 ULONG_PTR sb_naddr;
32 UCHAR Reserved2[24];
33 } ld_sb;
35 PCHAR ld_host;
36 ULONG ld_version;
37 UCHAR ld_lberoptions;
38 ULONG ld_deref;
39 ULONG ld_timelimit;
40 ULONG ld_sizelimit;
41 ULONG ld_errno;
42 PCHAR ld_matched;
43 PCHAR ld_error;
44 ULONG ld_msgid;
45 UCHAR Reserved3[25];
46 ULONG ld_cldaptries;
47 ULONG ld_cldaptimeout;
48 ULONG ld_refhoplimit;
49 ULONG ld_options;
50 } WLDAP32_LDAP, *WLDAP32_PLDAP;
52 typedef struct l_timeval
54 LONG tv_sec;
55 LONG tv_usec;
56 } LDAP_TIMEVAL, *PLDAP_TIMEVAL;
58 typedef struct ldapmsg
60 ULONG lm_msgid;
61 ULONG lm_msgtype;
63 PVOID lm_ber;
65 struct ldapmsg *lm_chain;
66 struct ldapmsg *lm_next;
67 ULONG lm_time;
69 WLDAP32_PLDAP Connection;
70 PVOID Request;
71 ULONG lm_returncode;
72 USHORT lm_referral;
73 BOOLEAN lm_chased;
74 BOOLEAN lm_eom;
75 BOOLEAN ConnectionReferenced;
76 } WLDAP32_LDAPMessage, *WLDAP32_PLDAPMessage;
78 ULONG ldap_bindA(WLDAP32_LDAP*,PCHAR,PCHAR,ULONG);
79 ULONG ldap_bindW(WLDAP32_LDAP*,PWCHAR,PWCHAR,ULONG);
80 ULONG ldap_bind_sA(WLDAP32_LDAP*,PCHAR,PCHAR,ULONG);
81 ULONG ldap_bind_sW(WLDAP32_LDAP*,PWCHAR,PWCHAR,ULONG);
82 WLDAP32_LDAP *ldap_initA(const PCHAR,ULONG);
83 WLDAP32_LDAP *ldap_initW(const PWCHAR,ULONG);
84 WLDAP32_LDAP *ldap_openA(PCHAR,ULONG);
85 WLDAP32_LDAP *ldap_openW(PWCHAR,ULONG);
86 ULONG ldap_searchA(WLDAP32_LDAP*,PCHAR,ULONG,PCHAR,PCHAR[],ULONG);
87 ULONG ldap_searchW(WLDAP32_LDAP*,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG);
88 ULONG ldap_search_sA(WLDAP32_LDAP*,PCHAR,ULONG,PCHAR,PCHAR[],ULONG,WLDAP32_LDAPMessage**);
89 ULONG ldap_search_sW(WLDAP32_LDAP*,PWCHAR,ULONG,PWCHAR,PWCHAR[],ULONG,WLDAP32_LDAPMessage**);
90 ULONG ldap_search_stA(WLDAP32_LDAP*,const PCHAR,ULONG,const PCHAR,PCHAR[],ULONG,
91 struct l_timeval*,WLDAP32_LDAPMessage**);
92 ULONG ldap_search_stW(WLDAP32_LDAP*,const PWCHAR,ULONG,const PWCHAR,PWCHAR[],ULONG,
93 struct l_timeval*,WLDAP32_LDAPMessage**);
94 ULONG ldap_simple_bindA(WLDAP32_LDAP*,PCHAR,PCHAR);
95 ULONG ldap_simple_bindW(WLDAP32_LDAP*,PWCHAR,PWCHAR);
96 ULONG ldap_simple_bind_sA(WLDAP32_LDAP*,PCHAR,PCHAR);
97 ULONG ldap_simple_bind_sW(WLDAP32_LDAP*,PWCHAR,PWCHAR);
98 ULONG WLDAP32_ldap_unbind(WLDAP32_LDAP*);
99 ULONG WLDAP32_ldap_unbind_s(WLDAP32_LDAP*);
101 ULONG LdapGetLastError(void);
102 ULONG LdapMapErrorToWin32(ULONG);
103 int LdapUnicodeToUTF8(LPCWSTR,int,LPSTR,int);
104 int LdapUTF8ToUnicode(LPCSTR,int,LPWSTR,int);