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
d1472e2a
Commit
d1472e2a
authored
Oct 26, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Oct 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement ReleaseAccessor Proxy and Stub.
parent
18323f0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
4 deletions
+25
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+25
-4
No files found.
dlls/msdaps/usrmarshal.c
View file @
d1472e2a
...
...
@@ -569,13 +569,34 @@ HRESULT __RPC_STUB IAccessor_GetBindings_Stub(IAccessor* This, HACCESSOR hAccess
HRESULT
CALLBACK
IAccessor_ReleaseAccessor_Proxy
(
IAccessor
*
This
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
pcRefCount
)
{
FIXME
(
"(%p)->(%lx, %p): stub
\n
"
,
This
,
hAccessor
,
pcRefCount
);
return
E_NOTIMPL
;
HRESULT
hr
;
IErrorInfo
*
error
;
DBREFCOUNT
ref
;
TRACE
(
"(%p)->(%lx, %p)
\n
"
,
This
,
hAccessor
,
pcRefCount
);
hr
=
IAccessor_RemoteReleaseAccessor_Proxy
(
This
,
hAccessor
,
&
ref
,
&
error
);
if
(
pcRefCount
)
*
pcRefCount
=
ref
;
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
return
hr
;
}
HRESULT
__RPC_STUB
IAccessor_ReleaseAccessor_Stub
(
IAccessor
*
This
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
pcRefCount
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%lx, %p, %p): stub
\n
"
,
This
,
hAccessor
,
pcRefCount
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%p)->(%lx, %p, %p)
\n
"
,
This
,
hAccessor
,
pcRefCount
,
ppErrorInfoRem
);
*
ppErrorInfoRem
=
NULL
;
hr
=
IAccessor_ReleaseAccessor
(
This
,
hAccessor
,
pcRefCount
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
return
hr
;
}
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