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
5a19e3b7
Commit
5a19e3b7
authored
Mar 03, 2007
by
Chris Robinson
Committed by
Alexandre Julliard
Mar 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Use the right vtable offset for the IMediaFilter functions.
parent
9f92437e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
filtergraph.c
dlls/quartz/filtergraph.c
+3
-3
No files found.
dlls/quartz/filtergraph.c
View file @
5a19e3b7
...
@@ -4167,21 +4167,21 @@ static const IMediaEventExVtbl IMediaEventEx_VTable =
...
@@ -4167,21 +4167,21 @@ static const IMediaEventExVtbl IMediaEventEx_VTable =
static
HRESULT
WINAPI
MediaFilter_QueryInterface
(
IMediaFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
static
HRESULT
WINAPI
MediaFilter_QueryInterface
(
IMediaFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
{
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMedia
EventEx
_vtbl
,
iface
);
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMedia
Filter
_vtbl
,
iface
);
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppv
);
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppv
);
}
}
static
ULONG
WINAPI
MediaFilter_AddRef
(
IMediaFilter
*
iface
)
static
ULONG
WINAPI
MediaFilter_AddRef
(
IMediaFilter
*
iface
)
{
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMedia
EventEx
_vtbl
,
iface
);
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMedia
Filter
_vtbl
,
iface
);
return
Filtergraph_AddRef
(
This
);
return
Filtergraph_AddRef
(
This
);
}
}
static
ULONG
WINAPI
MediaFilter_Release
(
IMediaFilter
*
iface
)
static
ULONG
WINAPI
MediaFilter_Release
(
IMediaFilter
*
iface
)
{
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMedia
EventEx
_vtbl
,
iface
);
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMedia
Filter
_vtbl
,
iface
);
return
Filtergraph_Release
(
This
);
return
Filtergraph_Release
(
This
);
}
}
...
...
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