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
050b9ebf
Commit
050b9ebf
authored
Aug 15, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement ldap_result.
parent
a6f081e0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
misc.c
dlls/wldap32/misc.c
+15
-0
winldap_private.h
dlls/wldap32/winldap_private.h
+1
-0
wldap32.spec
dlls/wldap32/wldap32.spec
+1
-1
No files found.
dlls/wldap32/misc.c
View file @
050b9ebf
...
...
@@ -52,6 +52,21 @@ void ldap_memfreeW( PWCHAR block )
strfreeW
(
block
);
}
ULONG
WLDAP32_ldap_result
(
WLDAP32_LDAP
*
ld
,
ULONG
msgid
,
ULONG
all
,
struct
l_timeval
*
timeout
,
WLDAP32_LDAPMessage
**
res
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
TRACE
(
"(%p, 0x%08lx, 0x%08lx, %p, %p)
\n
"
,
ld
,
msgid
,
all
,
timeout
,
res
);
if
(
!
ld
||
!
res
)
return
~
0UL
;
ret
=
ldap_result
(
ld
,
msgid
,
all
,
(
struct
timeval
*
)
timeout
,
res
);
#endif
return
ret
;
}
ULONG
ldap_value_freeA
(
PCHAR
*
vals
)
{
TRACE
(
"(%p)
\n
"
,
vals
);
...
...
dlls/wldap32/winldap_private.h
View file @
050b9ebf
...
...
@@ -285,6 +285,7 @@ ULONG ldap_modify_sW(WLDAP32_LDAP*,PWCHAR,LDAPModW*[]);
WLDAP32_LDAP
*
ldap_openA
(
PCHAR
,
ULONG
);
WLDAP32_LDAP
*
ldap_openW
(
PWCHAR
,
ULONG
);
void
WLDAP32_ldap_perror
(
WLDAP32_LDAP
*
,
const
PCHAR
);
ULONG
WLDAP32_ldap_result
(
WLDAP32_LDAP
*
,
ULONG
,
ULONG
,
struct
l_timeval
*
,
WLDAP32_LDAPMessage
**
);
ULONG
WLDAP32_ldap_result2error
(
WLDAP32_LDAP
*
,
WLDAP32_LDAPMessage
*
,
ULONG
);
ULONG
ldap_sasl_bindA
(
WLDAP32_LDAP
*
,
const
PCHAR
,
const
PCHAR
,
const
BERVAL
*
,
PLDAPControlA
*
,
PLDAPControlA
*
,
int
*
);
ULONG
ldap_sasl_bindW
(
WLDAP32_LDAP
*
,
const
PWCHAR
,
const
PWCHAR
,
const
BERVAL
*
,
PLDAPControlW
*
,
PLDAPControlW
*
,
int
*
);
...
...
dlls/wldap32/wldap32.spec
View file @
050b9ebf
...
...
@@ -191,7 +191,7 @@
@ stub ldap_rename_ext_s
@ stub ldap_rename_ext_sA
@ stub ldap_rename_ext_sW
@
stub
ldap_result
@
cdecl ldap_result(ptr long long ptr ptr) WLDAP32_
ldap_result
@ cdecl ldap_result2error(ptr ptr long) WLDAP32_ldap_result2error
@ cdecl ldap_sasl_bindA(ptr str str ptr ptr ptr ptr)
@ cdecl ldap_sasl_bindW(ptr wstr wstr ptr ptr ptr ptr)
...
...
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