Implement ldap_init* and ldap_open* functions.
[wine/wine-kai.git] / dlls / wldap32 / init.c
blob360daeaa9be14965b5f3b54df637233363586add
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
21 #include "config.h"
23 #include "wine/port.h"
24 #include "wine/debug.h"
26 #include <stdarg.h>
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winnls.h"
32 #ifdef HAVE_LDAP
33 #include <ldap.h>
34 #else
35 #define LDAP_SUCCESS 0x00
36 #define LDAP_NOT_SUPPORTED 0x5c
37 #endif
39 #include "winldap_private.h"
40 #include "wldap32.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
44 WLDAP32_LDAP *ldap_initA( PCHAR hostname, ULONG portnumber )
46 #ifdef HAVE_LDAP
47 WLDAP32_LDAP *ld;
48 WCHAR *hostnameW;
50 TRACE( "(%s, %ld)\n", debugstr_a(hostname), portnumber );
52 hostnameW = strAtoW( hostname );
53 if (!hostnameW) return NULL;
55 ld = ldap_initW( hostnameW, portnumber );
57 strfreeW( hostnameW );
58 return ld;
60 #endif
61 return NULL;
64 WLDAP32_LDAP *ldap_initW( PWCHAR hostname, ULONG portnumber )
66 #ifdef HAVE_LDAP
67 LDAP *ld;
68 char *hostnameU;
70 TRACE( "(%s, %ld)\n", debugstr_w(hostname), portnumber );
72 hostnameU = strWtoU( hostname );
73 if (!hostnameU) return NULL;
75 ld = ldap_init( hostnameU, portnumber );
77 strfreeU( hostnameU );
78 return ld;
80 #endif
81 return NULL;
84 WLDAP32_LDAP *ldap_openA( PCHAR hostname, ULONG portnumber )
86 #ifdef HAVE_LDAP
87 WLDAP32_LDAP *ld;
88 WCHAR *hostnameW;
90 TRACE( "(%s, %ld)\n", debugstr_a(hostname), portnumber );
92 hostnameW = strAtoW( hostname );
93 if (!hostnameW) return NULL;
95 ld = ldap_openW( hostnameW, portnumber );
97 strfreeW( hostnameW );
98 return ld;
100 #endif
101 return NULL;
104 WLDAP32_LDAP *ldap_openW( PWCHAR hostname, ULONG portnumber )
106 #ifdef HAVE_LDAP
107 LDAP *ld;
108 char *hostnameU;
110 TRACE( "(%s, %ld)\n", debugstr_w(hostname), portnumber );
112 hostnameU = strWtoU( hostname );
113 if (!hostnameU) return NULL;
115 ld = ldap_open( hostnameU, portnumber );
117 strfreeU( hostnameU );
118 return ld;
120 #endif
121 return NULL;