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
1dcf2ae5
Commit
1dcf2ae5
authored
Aug 27, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Added AddRefAccessor() proxy/stub.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8f055794
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
5 deletions
+28
-5
usrmarshal.c
dlls/msdaps/usrmarshal.c
+28
-5
No files found.
dlls/msdaps/usrmarshal.c
View file @
1dcf2ae5
...
...
@@ -645,17 +645,40 @@ HRESULT __RPC_STUB ICreateRow_CreateRow_Stub(ICreateRow* This, IUnknown *pUnkOut
return
hr
;
}
HRESULT
CALLBACK
IAccessor_AddRefAccessor_Proxy
(
IAccessor
*
This
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
pcRefC
ount
)
HRESULT
CALLBACK
IAccessor_AddRefAccessor_Proxy
(
IAccessor
*
This
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
refc
ount
)
{
FIXME
(
"(%p)->(%08lx, %p): stub
\n
"
,
This
,
hAccessor
,
pcRefCount
);
return
E_NOTIMPL
;
IErrorInfo
*
errorinfo
;
DBREFCOUNT
ref
;
HRESULT
hr
;
TRACE
(
"(%p)->(%08lx, %p)
\n
"
,
This
,
hAccessor
,
refcount
);
if
(
!
refcount
)
refcount
=
&
ref
;
errorinfo
=
NULL
;
hr
=
IAccessor_RemoteAddRefAccessor_Proxy
(
This
,
hAccessor
,
refcount
,
&
errorinfo
);
if
(
errorinfo
)
{
SetErrorInfo
(
0
,
errorinfo
);
IErrorInfo_Release
(
errorinfo
);
}
return
hr
;
}
HRESULT
__RPC_STUB
IAccessor_AddRefAccessor_Stub
(
IAccessor
*
This
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
pcRefCount
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%08lx, %p, %p): stub
\n
"
,
This
,
hAccessor
,
pcRefCount
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%p)->(%08lx, %p, %p)
\n
"
,
This
,
hAccessor
,
pcRefCount
,
ppErrorInfoRem
);
hr
=
IAccessor_AddRefAccessor
(
This
,
hAccessor
,
pcRefCount
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
return
hr
;
}
HRESULT
CALLBACK
IAccessor_CreateAccessor_Proxy
(
IAccessor
*
This
,
DBACCESSORFLAGS
dwAccessorFlags
,
DBCOUNTITEM
cBindings
,
...
...
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