Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7a264997
Commit
7a264997
authored
Aug 01, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement ldap_compare* functions.
parent
0cb33a9d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
0 deletions
+21
-0
Makefile.in
dlls/wldap32/Makefile.in
+1
-0
compare.c
dlls/wldap32/compare.c
+0
-0
winldap_private.h
dlls/wldap32/winldap_private.h
+8
-0
wldap32.spec
dlls/wldap32/wldap32.spec
+12
-0
No files found.
dlls/wldap32/Makefile.in
View file @
7a264997
...
...
@@ -10,6 +10,7 @@ EXTRALIBS = @LDAPLIBS@
C_SRCS
=
\
ber.c
\
bind.c
\
compare.c
\
error.c
\
init.c
\
main.c
\
...
...
dlls/wldap32/compare.c
0 → 100644
View file @
7a264997
This diff is collapsed.
Click to expand it.
dlls/wldap32/winldap_private.h
View file @
7a264997
...
...
@@ -120,6 +120,14 @@ ULONG ldap_bindA(WLDAP32_LDAP*,PCHAR,PCHAR,ULONG);
ULONG
ldap_bindW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
ULONG
);
ULONG
ldap_bind_sA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
ULONG
);
ULONG
ldap_bind_sW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
ULONG
);
ULONG
ldap_compareA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
);
ULONG
ldap_compareW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
PWCHAR
);
ULONG
ldap_compare_extA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
,
struct
berval
*
,
PLDAPControlA
*
,
PLDAPControlA
*
,
ULONG
*
);
ULONG
ldap_compare_extW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
PWCHAR
,
struct
berval
*
,
PLDAPControlW
*
,
PLDAPControlW
*
,
ULONG
*
);
ULONG
ldap_compare_ext_sA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
,
struct
berval
*
,
PLDAPControlA
*
,
PLDAPControlA
*
);
ULONG
ldap_compare_ext_sW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
PWCHAR
,
struct
berval
*
,
PLDAPControlW
*
,
PLDAPControlW
*
);
ULONG
ldap_compare_sA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
);
ULONG
ldap_compare_sW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
PWCHAR
);
PCHAR
ldap_err2stringA
(
ULONG
);
PWCHAR
ldap_err2stringW
(
ULONG
);
WLDAP32_LDAP
*
ldap_initA
(
const
PCHAR
,
ULONG
);
...
...
dlls/wldap32/wldap32.spec
View file @
7a264997
...
...
@@ -19,6 +19,18 @@
@ cdecl ldap_bind_s(ptr str str long) ldap_bind_sA
@ cdecl ldap_bind_sA(ptr str str long)
@ cdecl ldap_bind_sW(ptr wstr wstr long)
@ cdecl ldap_compare(ptr str str str) ldap_compareA
@ cdecl ldap_compareA(ptr str str str)
@ cdecl ldap_compareW(ptr wstr wstr wstr)
@ cdecl ldap_compare_ext(ptr str str str ptr ptr ptr ptr) ldap_compare_extA
@ cdecl ldap_compare_extA(ptr str str str ptr ptr ptr ptr)
@ cdecl ldap_compare_extW(ptr wstr wstr wstr ptr ptr ptr ptr)
@ cdecl ldap_compare_ext_s(ptr str str str ptr ptr ptr) ldap_compare_ext_sA
@ cdecl ldap_compare_ext_sA(ptr str str str ptr ptr ptr)
@ cdecl ldap_compare_ext_sW(ptr wstr wstr wstr ptr ptr ptr)
@ cdecl ldap_compare_s(ptr str str str) ldap_compare_sA
@ cdecl ldap_compare_sA(ptr str str str)
@ cdecl ldap_compare_sW(ptr wstr wstr wstr)
@ cdecl ldap_err2string(long) ldap_err2stringA
@ cdecl ldap_err2stringA(long)
@ cdecl ldap_err2stringW(long)
...
...
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