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
502b9e9a
Commit
502b9e9a
authored
Sep 08, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 09, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Use the proper COM method wrappers.
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
01581bfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
row_server.c
dlls/msdaps/row_server.c
+9
-9
No files found.
dlls/msdaps/row_server.c
View file @
502b9e9a
...
...
@@ -757,19 +757,19 @@ static const IRowVtbl row_vtbl =
static
HRESULT
WINAPI
row_change_QueryInterface
(
IRowChange
*
iface
,
REFIID
iid
,
void
**
obj
)
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
return
I
Unknown_QueryInterface
((
IUnknown
*
)
This
,
iid
,
obj
);
return
I
Row_QueryInterface
(
&
This
->
IRow_iface
,
iid
,
obj
);
}
static
ULONG
WINAPI
row_change_AddRef
(
IRowChange
*
iface
)
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
return
I
Unknown_AddRef
((
IUnknown
*
)
This
);
return
I
Row_AddRef
(
&
This
->
IRow_iface
);
}
static
ULONG
WINAPI
row_change_Release
(
IRowChange
*
iface
)
{
row_proxy
*
This
=
impl_from_IRowChange
(
iface
);
return
I
Unknown_Release
((
IUnknown
*
)
This
);
return
I
Row_Release
(
&
This
->
IRow_iface
);
}
static
HRESULT
WINAPI
row_change_SetColumns
(
IRowChange
*
iface
,
DBORDINAL
cColumns
,
...
...
@@ -1110,19 +1110,19 @@ static const IRowsetLocateVtbl rowsetlocate_vtbl =
static
HRESULT
WINAPI
rowsetinfo_QueryInterface
(
IRowsetInfo
*
iface
,
REFIID
iid
,
void
**
obj
)
{
rowset_proxy
*
This
=
impl_from_IRowsetInfo
(
iface
);
return
I
Unknown_QueryInterface
((
IUnknown
*
)
This
,
iid
,
obj
);
return
I
RowsetLocate_QueryInterface
(
&
This
->
IRowsetLocate_iface
,
iid
,
obj
);
}
static
ULONG
WINAPI
rowsetinfo_AddRef
(
IRowsetInfo
*
iface
)
{
rowset_proxy
*
This
=
impl_from_IRowsetInfo
(
iface
);
return
I
Unknown_AddRef
((
IUnknown
*
)
This
);
return
I
RowsetLocate_AddRef
(
&
This
->
IRowsetLocate_iface
);
}
static
ULONG
WINAPI
rowsetinfo_Release
(
IRowsetInfo
*
iface
)
{
rowset_proxy
*
This
=
impl_from_IRowsetInfo
(
iface
);
return
I
Unknown_Release
((
IUnknown
*
)
This
);
return
I
RowsetLocate_Release
(
&
This
->
IRowsetLocate_iface
);
}
static
HRESULT
WINAPI
rowsetinfo_GetProperties
(
IRowsetInfo
*
iface
,
const
ULONG
cPropertyIDSets
,
...
...
@@ -1167,19 +1167,19 @@ static const IRowsetInfoVtbl rowsetinfo_vtbl =
static
HRESULT
WINAPI
accessor_QueryInterface
(
IAccessor
*
iface
,
REFIID
iid
,
void
**
obj
)
{
rowset_proxy
*
This
=
impl_from_IAccessor
(
iface
);
return
I
Unknown_QueryInterface
((
IUnknown
*
)
This
,
iid
,
obj
);
return
I
RowsetLocate_QueryInterface
(
&
This
->
IRowsetLocate_iface
,
iid
,
obj
);
}
static
ULONG
WINAPI
accessor_AddRef
(
IAccessor
*
iface
)
{
rowset_proxy
*
This
=
impl_from_IAccessor
(
iface
);
return
I
Unknown_AddRef
((
IUnknown
*
)
This
);
return
I
RowsetLocate_AddRef
(
&
This
->
IRowsetLocate_iface
);
}
static
ULONG
WINAPI
accessor_Release
(
IAccessor
*
iface
)
{
rowset_proxy
*
This
=
impl_from_IAccessor
(
iface
);
return
I
Unknown_Release
((
IUnknown
*
)
This
);
return
I
RowsetLocate_Release
(
&
This
->
IRowsetLocate_iface
);
}
static
HRESULT
WINAPI
accessor_AddRefAccessor
(
IAccessor
*
iface
,
HACCESSOR
hAccessor
,
DBREFCOUNT
*
pcRefCount
)
...
...
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