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
4653468c
Commit
4653468c
authored
Dec 01, 2005
by
Steven Edwards
Committed by
Alexandre Julliard
Dec 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stubs for ldap_search_init_page[A/W].
parent
75123e17
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
3 deletions
+27
-3
search.c
dlls/wldap32/search.c
+24
-0
wldap32.spec
dlls/wldap32/wldap32.spec
+3
-3
No files found.
dlls/wldap32/search.c
View file @
4653468c
...
...
@@ -495,3 +495,27 @@ exit:
#endif
return
ret
;
}
PLDAPSearch
ldap_search_init_pageA
(
WLDAP32_LDAP
*
ld
,
const
PCHAR
name
,
ULONG
scope
,
const
PCHAR
filter
,
PCHAR
attrs
[],
ULONG
attrsonly
,
PLDAPControlA
*
srvcontrols
,
PLDAPControlA
*
clntcontrols
,
ULONG
timelimit
,
ULONG
sizelimit
,
PLDAPSortKeyA
*
keys
)
{
FIXME
(
"(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, 0x%08lx, 0x%08lx, %p)
\n
"
,
ld
,
debugstr_a
(
name
),
scope
,
debugstr_a
(
filter
),
attrs
,
attrsonly
,
srvcontrols
,
clntcontrols
,
timelimit
,
sizelimit
,
keys
);
return
NULL
;
}
PLDAPSearch
ldap_search_init_pageW
(
WLDAP32_LDAP
*
ld
,
const
PWCHAR
name
,
ULONG
scope
,
const
PWCHAR
filter
,
PWCHAR
attrs
[],
ULONG
attrsonly
,
PLDAPControlW
*
srvcontrols
,
PLDAPControlW
*
clntcontrols
,
ULONG
timelimit
,
ULONG
sizelimit
,
PLDAPSortKeyW
*
keys
)
{
FIXME
(
"(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, 0x%08lx, 0x%08lx, %p)
\n
"
,
ld
,
debugstr_w
(
name
),
scope
,
debugstr_w
(
filter
),
attrs
,
attrsonly
,
srvcontrols
,
clntcontrols
,
timelimit
,
sizelimit
,
keys
);
return
NULL
;
}
dlls/wldap32/wldap32.spec
View file @
4653468c
...
...
@@ -191,9 +191,9 @@
201 cdecl ldap_startup(ptr ptr)
202 cdecl ldap_cleanup(long)
203 cdecl ldap_search_ext_sW(ptr wstr long wstr ptr long ptr ptr ptr long ptr)
204
stub ldap_search_init_page
205
stub ldap_search_init_pageA
206
stub ldap_search_init_pageW
204
cdecl ldap_search_init_page(ptr str long str ptr long ptr ptr ptr long ptr) ldap_search_init_pageA
205
cdecl ldap_search_init_pageA(ptr str long str ptr long ptr ptr ptr long ptr)
206
cdecl ldap_search_init_pageW(ptr wstr long wstr ptr long ptr ptr ptr long ptr)
207 cdecl ldap_search_sA(ptr str long str ptr long ptr)
208 cdecl ldap_search_sW(ptr wstr long wstr ptr long ptr)
209 cdecl ldap_search_stA(ptr str long str ptr long 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