Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
98ac2c1d
Commit
98ac2c1d
authored
Jul 18, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement ber_* functions.
parent
b5e0222b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
106 additions
and
0 deletions
+106
-0
Makefile.in
dlls/wldap32/Makefile.in
+1
-0
ber.c
dlls/wldap32/ber.c
+92
-0
wldap32.spec
dlls/wldap32/wldap32.spec
+13
-0
No files found.
dlls/wldap32/Makefile.in
View file @
98ac2c1d
...
...
@@ -8,6 +8,7 @@ IMPORTS = kernel32
EXTRALIBS
=
@LDAPLIBS@
C_SRCS
=
\
ber.c
\
main.c
@MAKE_DLL_RULES@
...
...
dlls/wldap32/ber.c
0 → 100644
View file @
98ac2c1d
/*
* WLDAP32 - LDAP support for Wine
*
* Copyright 2005 Hans Leidekker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#ifndef HAVE_LDAP
#include "windef.h"
#include "winldap.h"
#define LBER_ERROR (~0UL)
BerElement
*
ber_alloc_t
(
INT
options
)
{
return
NULL
;
}
BERVAL
*
ber_bvdup
(
BERVAL
*
berval
)
{
return
NULL
;
}
void
ber_bvecfree
(
PBERVAL
*
berval
)
{
}
void
ber_bvfree
(
BERVAL
*
berval
)
{
}
ULONG
ber_first_element
(
BerElement
*
berelement
,
ULONG
*
len
,
CHAR
**
opaque
)
{
return
LBER_ERROR
;
}
INT
ber_flatten
(
BerElement
*
berelement
,
PBERVAL
*
berval
)
{
return
LBER_ERROR
;
}
void
ber_free
(
BerElement
*
berelement
,
INT
buf
)
{
}
BerElement
*
ber_init
(
BERVAL
*
berval
)
{
return
NULL
;
}
ULONG
ber_next_element
(
BerElement
*
berelement
,
ULONG
*
len
,
CHAR
*
opaque
)
{
return
LBER_ERROR
;
}
ULONG
ber_peek_tag
(
BerElement
*
berelement
,
ULONG
*
len
)
{
return
LBER_ERROR
;
}
INT
ber_printf
(
BerElement
*
berelement
,
PCHAR
fmt
,
...
)
{
return
LBER_ERROR
;
}
ULONG
ber_skip_tag
(
BerElement
*
berelement
,
ULONG
*
len
)
{
return
LBER_ERROR
;
}
INT
ber_scanf
(
BerElement
*
berelement
,
PCHAR
fmt
,
...
)
{
return
LBER_ERROR
;
}
#endif
/* HAVE_LDAP */
dlls/wldap32/wldap32.spec
View file @
98ac2c1d
@ stub LdapGetLastError
@ stub LdapMapErrorToWin32
@ cdecl ber_alloc_t(long)
@ cdecl ber_bvdup(ptr)
@ cdecl ber_bvecfree(ptr)
@ cdecl ber_bvfree(ptr)
@ cdecl ber_first_element(ptr ptr ptr)
@ cdecl ber_flatten(ptr ptr)
@ cdecl ber_free(ptr long)
@ cdecl ber_init(ptr)
@ cdecl ber_next_element(ptr ptr ptr)
@ cdecl ber_peek_tag(ptr ptr)
@ varargs ber_printf(ptr str)
@ varargs ber_scanf(ptr str)
@ cdecl ber_skip_tag(ptr ptr)
@ stub ldap_open
@ stub ldap_openA
@ stub ldap_openW
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment