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
17be7f3d
Commit
17be7f3d
authored
Mar 25, 2020
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adsldp: Implement IDirectorySearch::CloseSearchHandle().
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a083fdab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
adsldp.c
dlls/adsldp/adsldp.c
+9
-2
No files found.
dlls/adsldp/adsldp.c
View file @
17be7f3d
...
@@ -1234,8 +1234,15 @@ static HRESULT WINAPI search_FreeColumn(IDirectorySearch *iface, PADS_SEARCH_COL
...
@@ -1234,8 +1234,15 @@ static HRESULT WINAPI search_FreeColumn(IDirectorySearch *iface, PADS_SEARCH_COL
static
HRESULT
WINAPI
search_CloseSearchHandle
(
IDirectorySearch
*
iface
,
ADS_SEARCH_HANDLE
res
)
static
HRESULT
WINAPI
search_CloseSearchHandle
(
IDirectorySearch
*
iface
,
ADS_SEARCH_HANDLE
res
)
{
{
FIXME
(
"%p,%p: stub
\n
"
,
iface
,
res
);
struct
ldap_search_context
*
ldap_ctx
=
res
;
return
E_NOTIMPL
;
TRACE
(
"%p,%p
\n
"
,
iface
,
res
);
if
(
!
res
)
return
E_ADS_BAD_PARAMETER
;
ldap_msgfree
(
ldap_ctx
->
res
);
return
S_OK
;
}
}
static
const
IDirectorySearchVtbl
IDirectorySearch_vtbl
=
static
const
IDirectorySearchVtbl
IDirectorySearch_vtbl
=
...
...
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