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
bfbba1a6
Commit
bfbba1a6
authored
Sep 25, 2005
by
Christian Costa
Committed by
Alexandre Julliard
Sep 25, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix function names.
parent
c86fef88
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
332 additions
and
332 deletions
+332
-332
filtergraph.c
dlls/quartz/filtergraph.c
+332
-332
No files found.
dlls/quartz/filtergraph.c
View file @
bfbba1a6
...
...
@@ -275,7 +275,7 @@ static ULONG Filtergraph_Release(IFilterGraphImpl *This) {
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Graph
b
uilder_QueryInterface
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_QueryInterface
(
IGraphBuilder
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -284,7 +284,7 @@ static HRESULT WINAPI Graphbuilder_QueryInterface(IGraphBuilder *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Graph
b
uilder_AddRef
(
IGraphBuilder
*
iface
)
{
static
ULONG
WINAPI
Graph
B
uilder_AddRef
(
IGraphBuilder
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
TRACE
(
"(%p/%p)->() calling FilterGraph AddRef
\n
"
,
This
,
iface
);
...
...
@@ -292,7 +292,7 @@ static ULONG WINAPI Graphbuilder_AddRef(IGraphBuilder *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Graph
b
uilder_Release
(
IGraphBuilder
*
iface
)
{
static
ULONG
WINAPI
Graph
B
uilder_Release
(
IGraphBuilder
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
TRACE
(
"(%p/%p)->() calling FilterGraph Release
\n
"
,
This
,
iface
);
...
...
@@ -301,7 +301,7 @@ static ULONG WINAPI Graphbuilder_Release(IGraphBuilder *iface) {
}
/*** IFilterGraph methods ***/
static
HRESULT
WINAPI
Graph
b
uilder_AddFilter
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_AddFilter
(
IGraphBuilder
*
iface
,
IBaseFilter
*
pFilter
,
LPCWSTR
pName
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -396,7 +396,7 @@ static HRESULT WINAPI Graphbuilder_AddFilter(IGraphBuilder *iface,
return
hr
;
}
static
HRESULT
WINAPI
Graph
b
uilder_RemoveFilter
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_RemoveFilter
(
IGraphBuilder
*
iface
,
IBaseFilter
*
pFilter
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
int
i
;
...
...
@@ -436,7 +436,7 @@ static HRESULT WINAPI Graphbuilder_RemoveFilter(IGraphBuilder *iface,
return
hr
;
/* FIXME: check this error code */
}
static
HRESULT
WINAPI
Graph
b
uilder_EnumFilters
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_EnumFilters
(
IGraphBuilder
*
iface
,
IEnumFilters
**
ppEnum
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -445,7 +445,7 @@ static HRESULT WINAPI Graphbuilder_EnumFilters(IGraphBuilder *iface,
return
IEnumFiltersImpl_Construct
(
This
->
ppFiltersInGraph
,
This
->
nFilters
,
ppEnum
);
}
static
HRESULT
WINAPI
Graph
b
uilder_FindFilterByName
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_FindFilterByName
(
IGraphBuilder
*
iface
,
LPCWSTR
pName
,
IBaseFilter
**
ppFilter
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -470,7 +470,7 @@ static HRESULT WINAPI Graphbuilder_FindFilterByName(IGraphBuilder *iface,
/* NOTE: despite the implication, it doesn't matter which
* way round you put in the input and output pins */
static
HRESULT
WINAPI
Graph
b
uilder_ConnectDirect
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_ConnectDirect
(
IGraphBuilder
*
iface
,
IPin
*
ppinIn
,
IPin
*
ppinOut
,
const
AM_MEDIA_TYPE
*
pmt
)
{
...
...
@@ -514,7 +514,7 @@ static HRESULT WINAPI Graphbuilder_ConnectDirect(IGraphBuilder *iface,
return
hr
;
}
static
HRESULT
WINAPI
Graph
b
uilder_Reconnect
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_Reconnect
(
IGraphBuilder
*
iface
,
IPin
*
ppin
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
IPin
*
pConnectedTo
=
NULL
;
...
...
@@ -540,7 +540,7 @@ static HRESULT WINAPI Graphbuilder_Reconnect(IGraphBuilder *iface,
return
hr
;
}
static
HRESULT
WINAPI
Graph
b
uilder_Disconnect
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_Disconnect
(
IGraphBuilder
*
iface
,
IPin
*
ppin
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -549,7 +549,7 @@ static HRESULT WINAPI Graphbuilder_Disconnect(IGraphBuilder *iface,
return
IPin_Disconnect
(
ppin
);
}
static
HRESULT
WINAPI
Graph
b
uilder_SetDefaultSyncSource
(
IGraphBuilder
*
iface
)
{
static
HRESULT
WINAPI
Graph
B
uilder_SetDefaultSyncSource
(
IGraphBuilder
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
TRACE
(
"(%p/%p)->(): stub !!!
\n
"
,
iface
,
This
);
...
...
@@ -650,7 +650,7 @@ static HRESULT GetInternalConnections(IBaseFilter* pfilter, IPin* pinputpin, IPi
}
/*** IGraphBuilder methods ***/
static
HRESULT
WINAPI
Graph
b
uilder_Connect
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_Connect
(
IGraphBuilder
*
iface
,
IPin
*
ppinOut
,
IPin
*
ppinIn
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -827,7 +827,7 @@ error:
return
S_OK
;
}
static
HRESULT
WINAPI
Graph
b
uilder_Render
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_Render
(
IGraphBuilder
*
iface
,
IPin
*
ppinOut
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
IEnumMediaTypes
*
penummt
;
...
...
@@ -950,7 +950,7 @@ error:
return
S_OK
;
}
static
HRESULT
WINAPI
Graph
b
uilder_RenderFile
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_RenderFile
(
IGraphBuilder
*
iface
,
LPCWSTR
lpcwstrFile
,
LPCWSTR
lpcwstrPlayList
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -1090,7 +1090,7 @@ static HRESULT WINAPI Graphbuilder_RenderFile(IGraphBuilder *iface,
return
hr
;
}
static
HRESULT
WINAPI
Graph
b
uilder_AddSourceFilter
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_AddSourceFilter
(
IGraphBuilder
*
iface
,
LPCWSTR
lpcwstrFileName
,
LPCWSTR
lpcwstrFilterName
,
IBaseFilter
**
ppFilter
)
{
...
...
@@ -1153,7 +1153,7 @@ error:
return
hr
;
}
static
HRESULT
WINAPI
Graph
b
uilder_SetLogFile
(
IGraphBuilder
*
iface
,
static
HRESULT
WINAPI
Graph
B
uilder_SetLogFile
(
IGraphBuilder
*
iface
,
DWORD_PTR
hFile
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
...
...
@@ -1162,7 +1162,7 @@ static HRESULT WINAPI Graphbuilder_SetLogFile(IGraphBuilder *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Graph
b
uilder_Abort
(
IGraphBuilder
*
iface
)
{
static
HRESULT
WINAPI
Graph
B
uilder_Abort
(
IGraphBuilder
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
TRACE
(
"(%p/%p)->(): stub !!!
\n
"
,
This
,
iface
);
...
...
@@ -1170,7 +1170,7 @@ static HRESULT WINAPI Graphbuilder_Abort(IGraphBuilder *iface) {
return
S_OK
;
}
static
HRESULT
WINAPI
Graph
b
uilder_ShouldOperationContinue
(
IGraphBuilder
*
iface
)
{
static
HRESULT
WINAPI
Graph
B
uilder_ShouldOperationContinue
(
IGraphBuilder
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IGraphBuilder_vtbl
,
iface
);
TRACE
(
"(%p/%p)->(): stub !!!
\n
"
,
This
,
iface
);
...
...
@@ -1181,28 +1181,28 @@ static HRESULT WINAPI Graphbuilder_ShouldOperationContinue(IGraphBuilder *iface)
static
const
IGraphBuilderVtbl
IGraphBuilder_VTable
=
{
Graph
b
uilder_QueryInterface
,
Graph
b
uilder_AddRef
,
Graph
b
uilder_Release
,
Graph
b
uilder_AddFilter
,
Graph
b
uilder_RemoveFilter
,
Graph
b
uilder_EnumFilters
,
Graph
b
uilder_FindFilterByName
,
Graph
b
uilder_ConnectDirect
,
Graph
b
uilder_Reconnect
,
Graph
b
uilder_Disconnect
,
Graph
b
uilder_SetDefaultSyncSource
,
Graph
b
uilder_Connect
,
Graph
b
uilder_Render
,
Graph
b
uilder_RenderFile
,
Graph
b
uilder_AddSourceFilter
,
Graph
b
uilder_SetLogFile
,
Graph
b
uilder_Abort
,
Graph
b
uilder_ShouldOperationContinue
Graph
B
uilder_QueryInterface
,
Graph
B
uilder_AddRef
,
Graph
B
uilder_Release
,
Graph
B
uilder_AddFilter
,
Graph
B
uilder_RemoveFilter
,
Graph
B
uilder_EnumFilters
,
Graph
B
uilder_FindFilterByName
,
Graph
B
uilder_ConnectDirect
,
Graph
B
uilder_Reconnect
,
Graph
B
uilder_Disconnect
,
Graph
B
uilder_SetDefaultSyncSource
,
Graph
B
uilder_Connect
,
Graph
B
uilder_Render
,
Graph
B
uilder_RenderFile
,
Graph
B
uilder_AddSourceFilter
,
Graph
B
uilder_SetLogFile
,
Graph
B
uilder_Abort
,
Graph
B
uilder_ShouldOperationContinue
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Media
c
ontrol_QueryInterface
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_QueryInterface
(
IMediaControl
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1212,7 +1212,7 @@ static HRESULT WINAPI Mediacontrol_QueryInterface(IMediaControl *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Media
c
ontrol_AddRef
(
IMediaControl
*
iface
)
{
static
ULONG
WINAPI
Media
C
ontrol_AddRef
(
IMediaControl
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1220,7 +1220,7 @@ static ULONG WINAPI Mediacontrol_AddRef(IMediaControl *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Media
c
ontrol_Release
(
IMediaControl
*
iface
)
{
static
ULONG
WINAPI
Media
C
ontrol_Release
(
IMediaControl
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1230,7 +1230,7 @@ static ULONG WINAPI Mediacontrol_Release(IMediaControl *iface) {
}
/*** IDispatch methods ***/
static
HRESULT
WINAPI
Media
c
ontrol_GetTypeInfoCount
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_GetTypeInfoCount
(
IMediaControl
*
iface
,
UINT
*
pctinfo
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1239,7 +1239,7 @@ static HRESULT WINAPI Mediacontrol_GetTypeInfoCount(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_GetTypeInfo
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_GetTypeInfo
(
IMediaControl
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
...
...
@@ -1250,7 +1250,7 @@ static HRESULT WINAPI Mediacontrol_GetTypeInfo(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_GetIDsOfNames
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_GetIDsOfNames
(
IMediaControl
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
...
...
@@ -1263,7 +1263,7 @@ static HRESULT WINAPI Mediacontrol_GetIDsOfNames(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_Invoke
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_Invoke
(
IMediaControl
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
...
...
@@ -1398,7 +1398,7 @@ static HRESULT SendFilterMessage(IMediaControl *iface, fnFoundFilter FoundFilter
}
/*** IMediaControl methods ***/
static
HRESULT
WINAPI
Media
c
ontrol_Run
(
IMediaControl
*
iface
)
{
static
HRESULT
WINAPI
Media
C
ontrol_Run
(
IMediaControl
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1411,7 +1411,7 @@ static HRESULT WINAPI Mediacontrol_Run(IMediaControl *iface) {
return
S_FALSE
;
}
static
HRESULT
WINAPI
Media
c
ontrol_Pause
(
IMediaControl
*
iface
)
{
static
HRESULT
WINAPI
Media
C
ontrol_Pause
(
IMediaControl
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1424,7 +1424,7 @@ static HRESULT WINAPI Mediacontrol_Pause(IMediaControl *iface) {
return
S_FALSE
;
}
static
HRESULT
WINAPI
Media
c
ontrol_Stop
(
IMediaControl
*
iface
)
{
static
HRESULT
WINAPI
Media
C
ontrol_Stop
(
IMediaControl
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1438,7 +1438,7 @@ static HRESULT WINAPI Mediacontrol_Stop(IMediaControl *iface) {
return
S_FALSE
;
}
static
HRESULT
WINAPI
Media
c
ontrol_GetState
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_GetState
(
IMediaControl
*
iface
,
LONG
msTimeout
,
OAFilterState
*
pfs
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1454,7 +1454,7 @@ static HRESULT WINAPI Mediacontrol_GetState(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_RenderFile
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_RenderFile
(
IMediaControl
*
iface
,
BSTR
strFilename
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1463,7 +1463,7 @@ static HRESULT WINAPI Mediacontrol_RenderFile(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_AddSourceFilter
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_AddSourceFilter
(
IMediaControl
*
iface
,
BSTR
strFilename
,
IDispatch
**
ppUnk
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1473,7 +1473,7 @@ static HRESULT WINAPI Mediacontrol_AddSourceFilter(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_get_FilterCollection
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_get_FilterCollection
(
IMediaControl
*
iface
,
IDispatch
**
ppUnk
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1482,7 +1482,7 @@ static HRESULT WINAPI Mediacontrol_get_FilterCollection(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_get_RegFilterCollection
(
IMediaControl
*
iface
,
static
HRESULT
WINAPI
Media
C
ontrol_get_RegFilterCollection
(
IMediaControl
*
iface
,
IDispatch
**
ppUnk
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
...
...
@@ -1491,7 +1491,7 @@ static HRESULT WINAPI Mediacontrol_get_RegFilterCollection(IMediaControl *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
c
ontrol_StopWhenReady
(
IMediaControl
*
iface
)
{
static
HRESULT
WINAPI
Media
C
ontrol_StopWhenReady
(
IMediaControl
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaControl_vtbl
,
iface
);
TRACE
(
"(%p/%p)->(): stub !!!
\n
"
,
This
,
iface
);
...
...
@@ -1502,27 +1502,27 @@ static HRESULT WINAPI Mediacontrol_StopWhenReady(IMediaControl *iface) {
static
const
IMediaControlVtbl
IMediaControl_VTable
=
{
Media
c
ontrol_QueryInterface
,
Media
c
ontrol_AddRef
,
Media
c
ontrol_Release
,
Media
c
ontrol_GetTypeInfoCount
,
Media
c
ontrol_GetTypeInfo
,
Media
c
ontrol_GetIDsOfNames
,
Media
c
ontrol_Invoke
,
Media
c
ontrol_Run
,
Media
c
ontrol_Pause
,
Media
c
ontrol_Stop
,
Media
c
ontrol_GetState
,
Media
c
ontrol_RenderFile
,
Media
c
ontrol_AddSourceFilter
,
Media
c
ontrol_get_FilterCollection
,
Media
c
ontrol_get_RegFilterCollection
,
Media
c
ontrol_StopWhenReady
Media
C
ontrol_QueryInterface
,
Media
C
ontrol_AddRef
,
Media
C
ontrol_Release
,
Media
C
ontrol_GetTypeInfoCount
,
Media
C
ontrol_GetTypeInfo
,
Media
C
ontrol_GetIDsOfNames
,
Media
C
ontrol_Invoke
,
Media
C
ontrol_Run
,
Media
C
ontrol_Pause
,
Media
C
ontrol_Stop
,
Media
C
ontrol_GetState
,
Media
C
ontrol_RenderFile
,
Media
C
ontrol_AddSourceFilter
,
Media
C
ontrol_get_FilterCollection
,
Media
C
ontrol_get_RegFilterCollection
,
Media
C
ontrol_StopWhenReady
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Media
s
eeking_QueryInterface
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_QueryInterface
(
IMediaSeeking
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1532,7 +1532,7 @@ static HRESULT WINAPI Mediaseeking_QueryInterface(IMediaSeeking *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Media
s
eeking_AddRef
(
IMediaSeeking
*
iface
)
{
static
ULONG
WINAPI
Media
S
eeking_AddRef
(
IMediaSeeking
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1540,7 +1540,7 @@ static ULONG WINAPI Mediaseeking_AddRef(IMediaSeeking *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Media
s
eeking_Release
(
IMediaSeeking
*
iface
)
{
static
ULONG
WINAPI
Media
S
eeking_Release
(
IMediaSeeking
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1549,7 +1549,7 @@ static ULONG WINAPI Mediaseeking_Release(IMediaSeeking *iface) {
}
/*** IMediaSeeking methods ***/
static
HRESULT
WINAPI
Media
s
eeking_GetCapabilities
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetCapabilities
(
IMediaSeeking
*
iface
,
DWORD
*
pCapabilities
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1558,7 +1558,7 @@ static HRESULT WINAPI Mediaseeking_GetCapabilities(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_CheckCapabilities
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_CheckCapabilities
(
IMediaSeeking
*
iface
,
DWORD
*
pCapabilities
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1567,7 +1567,7 @@ static HRESULT WINAPI Mediaseeking_CheckCapabilities(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_IsFormatSupported
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_IsFormatSupported
(
IMediaSeeking
*
iface
,
const
GUID
*
pFormat
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1576,7 +1576,7 @@ static HRESULT WINAPI Mediaseeking_IsFormatSupported(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_QueryPreferredFormat
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_QueryPreferredFormat
(
IMediaSeeking
*
iface
,
GUID
*
pFormat
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1585,7 +1585,7 @@ static HRESULT WINAPI Mediaseeking_QueryPreferredFormat(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetTimeFormat
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetTimeFormat
(
IMediaSeeking
*
iface
,
GUID
*
pFormat
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1594,7 +1594,7 @@ static HRESULT WINAPI Mediaseeking_GetTimeFormat(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_IsUsingTimeFormat
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_IsUsingTimeFormat
(
IMediaSeeking
*
iface
,
const
GUID
*
pFormat
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1603,7 +1603,7 @@ static HRESULT WINAPI Mediaseeking_IsUsingTimeFormat(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_SetTimeFormat
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_SetTimeFormat
(
IMediaSeeking
*
iface
,
const
GUID
*
pFormat
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1612,7 +1612,7 @@ static HRESULT WINAPI Mediaseeking_SetTimeFormat(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetDuration
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetDuration
(
IMediaSeeking
*
iface
,
LONGLONG
*
pDuration
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1621,7 +1621,7 @@ static HRESULT WINAPI Mediaseeking_GetDuration(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetStopPosition
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetStopPosition
(
IMediaSeeking
*
iface
,
LONGLONG
*
pStop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1630,7 +1630,7 @@ static HRESULT WINAPI Mediaseeking_GetStopPosition(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetCurrentPosition
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetCurrentPosition
(
IMediaSeeking
*
iface
,
LONGLONG
*
pCurrent
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1639,7 +1639,7 @@ static HRESULT WINAPI Mediaseeking_GetCurrentPosition(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_ConvertTimeFormat
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_ConvertTimeFormat
(
IMediaSeeking
*
iface
,
LONGLONG
*
pTarget
,
const
GUID
*
pTargetFormat
,
LONGLONG
Source
,
...
...
@@ -1651,7 +1651,7 @@ static HRESULT WINAPI Mediaseeking_ConvertTimeFormat(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_SetPositions
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_SetPositions
(
IMediaSeeking
*
iface
,
LONGLONG
*
pCurrent
,
DWORD
dwCurrentFlags
,
LONGLONG
*
pStop
,
...
...
@@ -1663,7 +1663,7 @@ static HRESULT WINAPI Mediaseeking_SetPositions(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetPositions
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetPositions
(
IMediaSeeking
*
iface
,
LONGLONG
*
pCurrent
,
LONGLONG
*
pStop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1673,7 +1673,7 @@ static HRESULT WINAPI Mediaseeking_GetPositions(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetAvailable
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetAvailable
(
IMediaSeeking
*
iface
,
LONGLONG
*
pEarliest
,
LONGLONG
*
pLatest
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1683,7 +1683,7 @@ static HRESULT WINAPI Mediaseeking_GetAvailable(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_SetRate
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_SetRate
(
IMediaSeeking
*
iface
,
double
dRate
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1692,7 +1692,7 @@ static HRESULT WINAPI Mediaseeking_SetRate(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetRate
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetRate
(
IMediaSeeking
*
iface
,
double
*
pdRate
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1701,7 +1701,7 @@ static HRESULT WINAPI Mediaseeking_GetRate(IMediaSeeking *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
s
eeking_GetPreroll
(
IMediaSeeking
*
iface
,
static
HRESULT
WINAPI
Media
S
eeking_GetPreroll
(
IMediaSeeking
*
iface
,
LONGLONG
*
pllPreroll
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaSeeking_vtbl
,
iface
);
...
...
@@ -1713,26 +1713,26 @@ static HRESULT WINAPI Mediaseeking_GetPreroll(IMediaSeeking *iface,
static
const
IMediaSeekingVtbl
IMediaSeeking_VTable
=
{
Media
s
eeking_QueryInterface
,
Media
s
eeking_AddRef
,
Media
s
eeking_Release
,
Media
s
eeking_GetCapabilities
,
Media
s
eeking_CheckCapabilities
,
Media
s
eeking_IsFormatSupported
,
Media
s
eeking_QueryPreferredFormat
,
Media
s
eeking_GetTimeFormat
,
Media
s
eeking_IsUsingTimeFormat
,
Media
s
eeking_SetTimeFormat
,
Media
s
eeking_GetDuration
,
Media
s
eeking_GetStopPosition
,
Media
s
eeking_GetCurrentPosition
,
Media
s
eeking_ConvertTimeFormat
,
Media
s
eeking_SetPositions
,
Media
s
eeking_GetPositions
,
Media
s
eeking_GetAvailable
,
Media
s
eeking_SetRate
,
Media
s
eeking_GetRate
,
Media
s
eeking_GetPreroll
Media
S
eeking_QueryInterface
,
Media
S
eeking_AddRef
,
Media
S
eeking_Release
,
Media
S
eeking_GetCapabilities
,
Media
S
eeking_CheckCapabilities
,
Media
S
eeking_IsFormatSupported
,
Media
S
eeking_QueryPreferredFormat
,
Media
S
eeking_GetTimeFormat
,
Media
S
eeking_IsUsingTimeFormat
,
Media
S
eeking_SetTimeFormat
,
Media
S
eeking_GetDuration
,
Media
S
eeking_GetStopPosition
,
Media
S
eeking_GetCurrentPosition
,
Media
S
eeking_ConvertTimeFormat
,
Media
S
eeking_SetPositions
,
Media
S
eeking_GetPositions
,
Media
S
eeking_GetAvailable
,
Media
S
eeking_SetRate
,
Media
S
eeking_GetRate
,
Media
S
eeking_GetPreroll
};
static
HRESULT
GetTargetInterface
(
IFilterGraphImpl
*
pGraph
,
REFIID
riid
,
LPVOID
*
ppvObj
)
...
...
@@ -1781,7 +1781,7 @@ static HRESULT GetTargetInterface(IFilterGraphImpl* pGraph, REFIID riid, LPVOID*
}
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Basic
a
udio_QueryInterface
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_QueryInterface
(
IBasicAudio
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
...
...
@@ -1791,7 +1791,7 @@ static HRESULT WINAPI Basicaudio_QueryInterface(IBasicAudio *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Basic
a
udio_AddRef
(
IBasicAudio
*
iface
)
{
static
ULONG
WINAPI
Basic
A
udio_AddRef
(
IBasicAudio
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1799,7 +1799,7 @@ static ULONG WINAPI Basicaudio_AddRef(IBasicAudio *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Basic
a
udio_Release
(
IBasicAudio
*
iface
)
{
static
ULONG
WINAPI
Basic
A
udio_Release
(
IBasicAudio
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -1808,7 +1808,7 @@ static ULONG WINAPI Basicaudio_Release(IBasicAudio *iface) {
}
/*** IDispatch methods ***/
static
HRESULT
WINAPI
Basic
a
udio_GetTypeInfoCount
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_GetTypeInfoCount
(
IBasicAudio
*
iface
,
UINT
*
pctinfo
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
IBasicAudio
*
pBasicAudio
;
...
...
@@ -1828,7 +1828,7 @@ static HRESULT WINAPI Basicaudio_GetTypeInfoCount(IBasicAudio *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
a
udio_GetTypeInfo
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_GetTypeInfo
(
IBasicAudio
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
...
...
@@ -1850,7 +1850,7 @@ static HRESULT WINAPI Basicaudio_GetTypeInfo(IBasicAudio *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
a
udio_GetIDsOfNames
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_GetIDsOfNames
(
IBasicAudio
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
...
...
@@ -1874,7 +1874,7 @@ static HRESULT WINAPI Basicaudio_GetIDsOfNames(IBasicAudio *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
a
udio_Invoke
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_Invoke
(
IBasicAudio
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
...
...
@@ -1902,7 +1902,7 @@ static HRESULT WINAPI Basicaudio_Invoke(IBasicAudio *iface,
}
/*** IBasicAudio methods ***/
static
HRESULT
WINAPI
Basic
a
udio_put_Volume
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_put_Volume
(
IBasicAudio
*
iface
,
long
lVolume
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
IBasicAudio
*
pBasicAudio
;
...
...
@@ -1922,7 +1922,7 @@ static HRESULT WINAPI Basicaudio_put_Volume(IBasicAudio *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
a
udio_get_Volume
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_get_Volume
(
IBasicAudio
*
iface
,
long
*
plVolume
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
IBasicAudio
*
pBasicAudio
;
...
...
@@ -1942,7 +1942,7 @@ static HRESULT WINAPI Basicaudio_get_Volume(IBasicAudio *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
a
udio_put_Balance
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_put_Balance
(
IBasicAudio
*
iface
,
long
lBalance
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
IBasicAudio
*
pBasicAudio
;
...
...
@@ -1962,7 +1962,7 @@ static HRESULT WINAPI Basicaudio_put_Balance(IBasicAudio *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
a
udio_get_Balance
(
IBasicAudio
*
iface
,
static
HRESULT
WINAPI
Basic
A
udio_get_Balance
(
IBasicAudio
*
iface
,
long
*
plBalance
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicAudio_vtbl
,
iface
);
IBasicAudio
*
pBasicAudio
;
...
...
@@ -1984,21 +1984,21 @@ static HRESULT WINAPI Basicaudio_get_Balance(IBasicAudio *iface,
static
const
IBasicAudioVtbl
IBasicAudio_VTable
=
{
Basic
a
udio_QueryInterface
,
Basic
a
udio_AddRef
,
Basic
a
udio_Release
,
Basic
a
udio_GetTypeInfoCount
,
Basic
a
udio_GetTypeInfo
,
Basic
a
udio_GetIDsOfNames
,
Basic
a
udio_Invoke
,
Basic
a
udio_put_Volume
,
Basic
a
udio_get_Volume
,
Basic
a
udio_put_Balance
,
Basic
a
udio_get_Balance
Basic
A
udio_QueryInterface
,
Basic
A
udio_AddRef
,
Basic
A
udio_Release
,
Basic
A
udio_GetTypeInfoCount
,
Basic
A
udio_GetTypeInfo
,
Basic
A
udio_GetIDsOfNames
,
Basic
A
udio_Invoke
,
Basic
A
udio_put_Volume
,
Basic
A
udio_get_Volume
,
Basic
A
udio_put_Balance
,
Basic
A
udio_get_Balance
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Basic
v
ideo_QueryInterface
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_QueryInterface
(
IBasicVideo
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
...
...
@@ -2008,7 +2008,7 @@ static HRESULT WINAPI Basicvideo_QueryInterface(IBasicVideo *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Basic
v
ideo_AddRef
(
IBasicVideo
*
iface
)
{
static
ULONG
WINAPI
Basic
V
ideo_AddRef
(
IBasicVideo
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -2016,7 +2016,7 @@ static ULONG WINAPI Basicvideo_AddRef(IBasicVideo *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Basic
v
ideo_Release
(
IBasicVideo
*
iface
)
{
static
ULONG
WINAPI
Basic
V
ideo_Release
(
IBasicVideo
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -2025,7 +2025,7 @@ static ULONG WINAPI Basicvideo_Release(IBasicVideo *iface) {
}
/*** IDispatch methods ***/
static
HRESULT
WINAPI
Basic
v
ideo_GetTypeInfoCount
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetTypeInfoCount
(
IBasicVideo
*
iface
,
UINT
*
pctinfo
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2045,7 +2045,7 @@ static HRESULT WINAPI Basicvideo_GetTypeInfoCount(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetTypeInfo
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetTypeInfo
(
IBasicVideo
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
...
...
@@ -2067,7 +2067,7 @@ static HRESULT WINAPI Basicvideo_GetTypeInfo(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetIDsOfNames
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetIDsOfNames
(
IBasicVideo
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
...
...
@@ -2091,7 +2091,7 @@ static HRESULT WINAPI Basicvideo_GetIDsOfNames(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_Invoke
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_Invoke
(
IBasicVideo
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
...
...
@@ -2119,7 +2119,7 @@ static HRESULT WINAPI Basicvideo_Invoke(IBasicVideo *iface,
}
/*** IBasicVideo methods ***/
static
HRESULT
WINAPI
Basic
v
ideo_get_AvgTimePerFrame
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_AvgTimePerFrame
(
IBasicVideo
*
iface
,
REFTIME
*
pAvgTimePerFrame
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2139,7 +2139,7 @@ static HRESULT WINAPI Basicvideo_get_AvgTimePerFrame(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_BitRate
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_BitRate
(
IBasicVideo
*
iface
,
long
*
pBitRate
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2159,7 +2159,7 @@ static HRESULT WINAPI Basicvideo_get_BitRate(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_BitErrorRate
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_BitErrorRate
(
IBasicVideo
*
iface
,
long
*
pBitErrorRate
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2179,7 +2179,7 @@ static HRESULT WINAPI Basicvideo_get_BitErrorRate(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_VideoWidth
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_VideoWidth
(
IBasicVideo
*
iface
,
long
*
pVideoWidth
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2199,7 +2199,7 @@ static HRESULT WINAPI Basicvideo_get_VideoWidth(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_VideoHeight
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_VideoHeight
(
IBasicVideo
*
iface
,
long
*
pVideoHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2219,7 +2219,7 @@ static HRESULT WINAPI Basicvideo_get_VideoHeight(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_SourceLeft
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_SourceLeft
(
IBasicVideo
*
iface
,
long
SourceLeft
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2239,7 +2239,7 @@ static HRESULT WINAPI Basicvideo_put_SourceLeft(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_SourceLeft
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_SourceLeft
(
IBasicVideo
*
iface
,
long
*
pSourceLeft
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2259,7 +2259,7 @@ static HRESULT WINAPI Basicvideo_get_SourceLeft(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_SourceWidth
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_SourceWidth
(
IBasicVideo
*
iface
,
long
SourceWidth
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2279,7 +2279,7 @@ static HRESULT WINAPI Basicvideo_put_SourceWidth(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_SourceWidth
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_SourceWidth
(
IBasicVideo
*
iface
,
long
*
pSourceWidth
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2299,7 +2299,7 @@ static HRESULT WINAPI Basicvideo_get_SourceWidth(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_SourceTop
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_SourceTop
(
IBasicVideo
*
iface
,
long
SourceTop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2319,7 +2319,7 @@ static HRESULT WINAPI Basicvideo_put_SourceTop(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_SourceTop
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_SourceTop
(
IBasicVideo
*
iface
,
long
*
pSourceTop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2339,7 +2339,7 @@ static HRESULT WINAPI Basicvideo_get_SourceTop(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_SourceHeight
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_SourceHeight
(
IBasicVideo
*
iface
,
long
SourceHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2359,7 +2359,7 @@ static HRESULT WINAPI Basicvideo_put_SourceHeight(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_SourceHeight
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_SourceHeight
(
IBasicVideo
*
iface
,
long
*
pSourceHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2379,7 +2379,7 @@ static HRESULT WINAPI Basicvideo_get_SourceHeight(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_DestinationLeft
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_DestinationLeft
(
IBasicVideo
*
iface
,
long
DestinationLeft
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2399,7 +2399,7 @@ static HRESULT WINAPI Basicvideo_put_DestinationLeft(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_DestinationLeft
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_DestinationLeft
(
IBasicVideo
*
iface
,
long
*
pDestinationLeft
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2419,7 +2419,7 @@ static HRESULT WINAPI Basicvideo_get_DestinationLeft(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_DestinationWidth
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_DestinationWidth
(
IBasicVideo
*
iface
,
long
DestinationWidth
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2439,7 +2439,7 @@ static HRESULT WINAPI Basicvideo_put_DestinationWidth(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_DestinationWidth
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_DestinationWidth
(
IBasicVideo
*
iface
,
long
*
pDestinationWidth
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2459,7 +2459,7 @@ static HRESULT WINAPI Basicvideo_get_DestinationWidth(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_DestinationTop
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_DestinationTop
(
IBasicVideo
*
iface
,
long
DestinationTop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2479,7 +2479,7 @@ static HRESULT WINAPI Basicvideo_put_DestinationTop(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_DestinationTop
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_DestinationTop
(
IBasicVideo
*
iface
,
long
*
pDestinationTop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2499,7 +2499,7 @@ static HRESULT WINAPI Basicvideo_get_DestinationTop(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_put_DestinationHeight
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_put_DestinationHeight
(
IBasicVideo
*
iface
,
long
DestinationHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2519,7 +2519,7 @@ static HRESULT WINAPI Basicvideo_put_DestinationHeight(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_get_DestinationHeight
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_get_DestinationHeight
(
IBasicVideo
*
iface
,
long
*
pDestinationHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
...
...
@@ -2539,7 +2539,7 @@ static HRESULT WINAPI Basicvideo_get_DestinationHeight(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_SetSourcePosition
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_SetSourcePosition
(
IBasicVideo
*
iface
,
long
Left
,
long
Top
,
long
Width
,
...
...
@@ -2562,7 +2562,7 @@ static HRESULT WINAPI Basicvideo_SetSourcePosition(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetSourcePosition
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetSourcePosition
(
IBasicVideo
*
iface
,
long
*
pLeft
,
long
*
pTop
,
long
*
pWidth
,
...
...
@@ -2585,7 +2585,7 @@ static HRESULT WINAPI Basicvideo_GetSourcePosition(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_SetDefaultSourcePosition
(
IBasicVideo
*
iface
)
{
static
HRESULT
WINAPI
Basic
V
ideo_SetDefaultSourcePosition
(
IBasicVideo
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
HRESULT
hr
;
...
...
@@ -2604,7 +2604,7 @@ static HRESULT WINAPI Basicvideo_SetDefaultSourcePosition(IBasicVideo *iface) {
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_SetDestinationPosition
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_SetDestinationPosition
(
IBasicVideo
*
iface
,
long
Left
,
long
Top
,
long
Width
,
...
...
@@ -2627,7 +2627,7 @@ static HRESULT WINAPI Basicvideo_SetDestinationPosition(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetDestinationPosition
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetDestinationPosition
(
IBasicVideo
*
iface
,
long
*
pLeft
,
long
*
pTop
,
long
*
pWidth
,
...
...
@@ -2650,7 +2650,7 @@ static HRESULT WINAPI Basicvideo_GetDestinationPosition(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_SetDefaultDestinationPosition
(
IBasicVideo
*
iface
)
{
static
HRESULT
WINAPI
Basic
V
ideo_SetDefaultDestinationPosition
(
IBasicVideo
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
HRESULT
hr
;
...
...
@@ -2669,7 +2669,7 @@ static HRESULT WINAPI Basicvideo_SetDefaultDestinationPosition(IBasicVideo *ifac
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetVideoSize
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetVideoSize
(
IBasicVideo
*
iface
,
long
*
pWidth
,
long
*
pHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
...
...
@@ -2690,7 +2690,7 @@ static HRESULT WINAPI Basicvideo_GetVideoSize(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetVideoPaletteEntries
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetVideoPaletteEntries
(
IBasicVideo
*
iface
,
long
StartIndex
,
long
Entries
,
long
*
pRetrieved
,
...
...
@@ -2713,7 +2713,7 @@ static HRESULT WINAPI Basicvideo_GetVideoPaletteEntries(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_GetCurrentImage
(
IBasicVideo
*
iface
,
static
HRESULT
WINAPI
Basic
V
ideo_GetCurrentImage
(
IBasicVideo
*
iface
,
long
*
pBufferSize
,
long
*
pDIBImage
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
...
...
@@ -2734,7 +2734,7 @@ static HRESULT WINAPI Basicvideo_GetCurrentImage(IBasicVideo *iface,
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_IsUsingDefaultSource
(
IBasicVideo
*
iface
)
{
static
HRESULT
WINAPI
Basic
V
ideo_IsUsingDefaultSource
(
IBasicVideo
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
HRESULT
hr
;
...
...
@@ -2753,7 +2753,7 @@ static HRESULT WINAPI Basicvideo_IsUsingDefaultSource(IBasicVideo *iface) {
return
hr
;
}
static
HRESULT
WINAPI
Basic
v
ideo_IsUsingDefaultDestination
(
IBasicVideo
*
iface
)
{
static
HRESULT
WINAPI
Basic
V
ideo_IsUsingDefaultDestination
(
IBasicVideo
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IBasicVideo_vtbl
,
iface
);
IBasicVideo
*
pBasicVideo
;
HRESULT
hr
;
...
...
@@ -2775,50 +2775,50 @@ static HRESULT WINAPI Basicvideo_IsUsingDefaultDestination(IBasicVideo *iface) {
static
const
IBasicVideoVtbl
IBasicVideo_VTable
=
{
Basic
v
ideo_QueryInterface
,
Basic
v
ideo_AddRef
,
Basic
v
ideo_Release
,
Basic
v
ideo_GetTypeInfoCount
,
Basic
v
ideo_GetTypeInfo
,
Basic
v
ideo_GetIDsOfNames
,
Basic
v
ideo_Invoke
,
Basic
v
ideo_get_AvgTimePerFrame
,
Basic
v
ideo_get_BitRate
,
Basic
v
ideo_get_BitErrorRate
,
Basic
v
ideo_get_VideoWidth
,
Basic
v
ideo_get_VideoHeight
,
Basic
v
ideo_put_SourceLeft
,
Basic
v
ideo_get_SourceLeft
,
Basic
v
ideo_put_SourceWidth
,
Basic
v
ideo_get_SourceWidth
,
Basic
v
ideo_put_SourceTop
,
Basic
v
ideo_get_SourceTop
,
Basic
v
ideo_put_SourceHeight
,
Basic
v
ideo_get_SourceHeight
,
Basic
v
ideo_put_DestinationLeft
,
Basic
v
ideo_get_DestinationLeft
,
Basic
v
ideo_put_DestinationWidth
,
Basic
v
ideo_get_DestinationWidth
,
Basic
v
ideo_put_DestinationTop
,
Basic
v
ideo_get_DestinationTop
,
Basic
v
ideo_put_DestinationHeight
,
Basic
v
ideo_get_DestinationHeight
,
Basic
v
ideo_SetSourcePosition
,
Basic
v
ideo_GetSourcePosition
,
Basic
v
ideo_SetDefaultSourcePosition
,
Basic
v
ideo_SetDestinationPosition
,
Basic
v
ideo_GetDestinationPosition
,
Basic
v
ideo_SetDefaultDestinationPosition
,
Basic
v
ideo_GetVideoSize
,
Basic
v
ideo_GetVideoPaletteEntries
,
Basic
v
ideo_GetCurrentImage
,
Basic
v
ideo_IsUsingDefaultSource
,
Basic
v
ideo_IsUsingDefaultDestination
Basic
V
ideo_QueryInterface
,
Basic
V
ideo_AddRef
,
Basic
V
ideo_Release
,
Basic
V
ideo_GetTypeInfoCount
,
Basic
V
ideo_GetTypeInfo
,
Basic
V
ideo_GetIDsOfNames
,
Basic
V
ideo_Invoke
,
Basic
V
ideo_get_AvgTimePerFrame
,
Basic
V
ideo_get_BitRate
,
Basic
V
ideo_get_BitErrorRate
,
Basic
V
ideo_get_VideoWidth
,
Basic
V
ideo_get_VideoHeight
,
Basic
V
ideo_put_SourceLeft
,
Basic
V
ideo_get_SourceLeft
,
Basic
V
ideo_put_SourceWidth
,
Basic
V
ideo_get_SourceWidth
,
Basic
V
ideo_put_SourceTop
,
Basic
V
ideo_get_SourceTop
,
Basic
V
ideo_put_SourceHeight
,
Basic
V
ideo_get_SourceHeight
,
Basic
V
ideo_put_DestinationLeft
,
Basic
V
ideo_get_DestinationLeft
,
Basic
V
ideo_put_DestinationWidth
,
Basic
V
ideo_get_DestinationWidth
,
Basic
V
ideo_put_DestinationTop
,
Basic
V
ideo_get_DestinationTop
,
Basic
V
ideo_put_DestinationHeight
,
Basic
V
ideo_get_DestinationHeight
,
Basic
V
ideo_SetSourcePosition
,
Basic
V
ideo_GetSourcePosition
,
Basic
V
ideo_SetDefaultSourcePosition
,
Basic
V
ideo_SetDestinationPosition
,
Basic
V
ideo_GetDestinationPosition
,
Basic
V
ideo_SetDefaultDestinationPosition
,
Basic
V
ideo_GetVideoSize
,
Basic
V
ideo_GetVideoPaletteEntries
,
Basic
V
ideo_GetCurrentImage
,
Basic
V
ideo_IsUsingDefaultSource
,
Basic
V
ideo_IsUsingDefaultDestination
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Video
w
indow_QueryInterface
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_QueryInterface
(
IVideoWindow
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
...
...
@@ -2828,7 +2828,7 @@ static HRESULT WINAPI Videowindow_QueryInterface(IVideoWindow *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Video
w
indow_AddRef
(
IVideoWindow
*
iface
)
{
static
ULONG
WINAPI
Video
W
indow_AddRef
(
IVideoWindow
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -2836,7 +2836,7 @@ static ULONG WINAPI Videowindow_AddRef(IVideoWindow *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Video
w
indow_Release
(
IVideoWindow
*
iface
)
{
static
ULONG
WINAPI
Video
W
indow_Release
(
IVideoWindow
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -2845,7 +2845,7 @@ static ULONG WINAPI Videowindow_Release(IVideoWindow *iface) {
}
/*** IDispatch methods ***/
static
HRESULT
WINAPI
Video
w
indow_GetTypeInfoCount
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetTypeInfoCount
(
IVideoWindow
*
iface
,
UINT
*
pctinfo
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -2865,7 +2865,7 @@ static HRESULT WINAPI Videowindow_GetTypeInfoCount(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_GetTypeInfo
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetTypeInfo
(
IVideoWindow
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
...
...
@@ -2887,7 +2887,7 @@ static HRESULT WINAPI Videowindow_GetTypeInfo(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_GetIDsOfNames
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetIDsOfNames
(
IVideoWindow
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
...
...
@@ -2911,7 +2911,7 @@ static HRESULT WINAPI Videowindow_GetIDsOfNames(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_Invoke
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_Invoke
(
IVideoWindow
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
...
...
@@ -2940,7 +2940,7 @@ static HRESULT WINAPI Videowindow_Invoke(IVideoWindow *iface,
/*** IVideoWindow methods ***/
static
HRESULT
WINAPI
Video
w
indow_put_Caption
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Caption
(
IVideoWindow
*
iface
,
BSTR
strCaption
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -2960,7 +2960,7 @@ static HRESULT WINAPI Videowindow_put_Caption(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Caption
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Caption
(
IVideoWindow
*
iface
,
BSTR
*
strCaption
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -2980,7 +2980,7 @@ static HRESULT WINAPI Videowindow_get_Caption(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_WindowStyle
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_WindowStyle
(
IVideoWindow
*
iface
,
long
WindowStyle
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3000,7 +3000,7 @@ static HRESULT WINAPI Videowindow_put_WindowStyle(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_WindowStyle
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_WindowStyle
(
IVideoWindow
*
iface
,
long
*
WindowStyle
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3020,7 +3020,7 @@ static HRESULT WINAPI Videowindow_get_WindowStyle(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_WindowStyleEx
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_WindowStyleEx
(
IVideoWindow
*
iface
,
long
WindowStyleEx
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3040,7 +3040,7 @@ static HRESULT WINAPI Videowindow_put_WindowStyleEx(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_WindowStyleEx
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_WindowStyleEx
(
IVideoWindow
*
iface
,
long
*
WindowStyleEx
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3060,7 +3060,7 @@ static HRESULT WINAPI Videowindow_get_WindowStyleEx(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_AutoShow
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_AutoShow
(
IVideoWindow
*
iface
,
long
AutoShow
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3080,7 +3080,7 @@ static HRESULT WINAPI Videowindow_put_AutoShow(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_AutoShow
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_AutoShow
(
IVideoWindow
*
iface
,
long
*
AutoShow
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3100,7 +3100,7 @@ static HRESULT WINAPI Videowindow_get_AutoShow(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_WindowState
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_WindowState
(
IVideoWindow
*
iface
,
long
WindowState
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3120,7 +3120,7 @@ static HRESULT WINAPI Videowindow_put_WindowState(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_WindowState
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_WindowState
(
IVideoWindow
*
iface
,
long
*
WindowState
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3140,7 +3140,7 @@ static HRESULT WINAPI Videowindow_get_WindowState(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_BackgroundPalette
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_BackgroundPalette
(
IVideoWindow
*
iface
,
long
BackgroundPalette
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3160,7 +3160,7 @@ static HRESULT WINAPI Videowindow_put_BackgroundPalette(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_BackgroundPalette
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_BackgroundPalette
(
IVideoWindow
*
iface
,
long
*
pBackgroundPalette
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3180,7 +3180,7 @@ static HRESULT WINAPI Videowindow_get_BackgroundPalette(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_Visible
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Visible
(
IVideoWindow
*
iface
,
long
Visible
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3200,7 +3200,7 @@ static HRESULT WINAPI Videowindow_put_Visible(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Visible
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Visible
(
IVideoWindow
*
iface
,
long
*
pVisible
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3220,7 +3220,7 @@ static HRESULT WINAPI Videowindow_get_Visible(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_Left
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Left
(
IVideoWindow
*
iface
,
long
Left
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3240,7 +3240,7 @@ static HRESULT WINAPI Videowindow_put_Left(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Left
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Left
(
IVideoWindow
*
iface
,
long
*
pLeft
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3260,7 +3260,7 @@ static HRESULT WINAPI Videowindow_get_Left(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_Width
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Width
(
IVideoWindow
*
iface
,
long
Width
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3280,7 +3280,7 @@ static HRESULT WINAPI Videowindow_put_Width(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Width
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Width
(
IVideoWindow
*
iface
,
long
*
pWidth
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3300,7 +3300,7 @@ static HRESULT WINAPI Videowindow_get_Width(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_Top
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Top
(
IVideoWindow
*
iface
,
long
Top
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3320,7 +3320,7 @@ static HRESULT WINAPI Videowindow_put_Top(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Top
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Top
(
IVideoWindow
*
iface
,
long
*
pTop
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3340,7 +3340,7 @@ static HRESULT WINAPI Videowindow_get_Top(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_Height
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Height
(
IVideoWindow
*
iface
,
long
Height
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3360,7 +3360,7 @@ static HRESULT WINAPI Videowindow_put_Height(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Height
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Height
(
IVideoWindow
*
iface
,
long
*
pHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3380,7 +3380,7 @@ static HRESULT WINAPI Videowindow_get_Height(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_Owner
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_Owner
(
IVideoWindow
*
iface
,
OAHWND
Owner
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3400,7 +3400,7 @@ static HRESULT WINAPI Videowindow_put_Owner(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_Owner
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_Owner
(
IVideoWindow
*
iface
,
OAHWND
*
Owner
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3420,7 +3420,7 @@ static HRESULT WINAPI Videowindow_get_Owner(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_MessageDrain
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_MessageDrain
(
IVideoWindow
*
iface
,
OAHWND
Drain
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3440,7 +3440,7 @@ static HRESULT WINAPI Videowindow_put_MessageDrain(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_MessageDrain
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_MessageDrain
(
IVideoWindow
*
iface
,
OAHWND
*
Drain
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3460,7 +3460,7 @@ static HRESULT WINAPI Videowindow_get_MessageDrain(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_BorderColor
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_BorderColor
(
IVideoWindow
*
iface
,
long
*
Color
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3480,7 +3480,7 @@ static HRESULT WINAPI Videowindow_get_BorderColor(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_BorderColor
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_BorderColor
(
IVideoWindow
*
iface
,
long
Color
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3500,7 +3500,7 @@ static HRESULT WINAPI Videowindow_put_BorderColor(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_get_FullScreenMode
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_get_FullScreenMode
(
IVideoWindow
*
iface
,
long
*
FullScreenMode
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3520,7 +3520,7 @@ static HRESULT WINAPI Videowindow_get_FullScreenMode(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_put_FullScreenMode
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_put_FullScreenMode
(
IVideoWindow
*
iface
,
long
FullScreenMode
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3540,7 +3540,7 @@ static HRESULT WINAPI Videowindow_put_FullScreenMode(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_SetWindowForeground
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_SetWindowForeground
(
IVideoWindow
*
iface
,
long
Focus
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3560,7 +3560,7 @@ static HRESULT WINAPI Videowindow_SetWindowForeground(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_NotifyOwnerMessage
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_NotifyOwnerMessage
(
IVideoWindow
*
iface
,
OAHWND
hwnd
,
long
uMsg
,
LONG_PTR
wParam
,
...
...
@@ -3583,7 +3583,7 @@ static HRESULT WINAPI Videowindow_NotifyOwnerMessage(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_SetWindowPosition
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_SetWindowPosition
(
IVideoWindow
*
iface
,
long
Left
,
long
Top
,
long
Width
,
...
...
@@ -3606,7 +3606,7 @@ static HRESULT WINAPI Videowindow_SetWindowPosition(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_GetWindowPosition
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetWindowPosition
(
IVideoWindow
*
iface
,
long
*
pLeft
,
long
*
pTop
,
long
*
pWidth
,
...
...
@@ -3629,7 +3629,7 @@ static HRESULT WINAPI Videowindow_GetWindowPosition(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_GetMinIdealImageSize
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetMinIdealImageSize
(
IVideoWindow
*
iface
,
long
*
pWidth
,
long
*
pHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
...
...
@@ -3650,7 +3650,7 @@ static HRESULT WINAPI Videowindow_GetMinIdealImageSize(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_GetMaxIdealImageSize
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetMaxIdealImageSize
(
IVideoWindow
*
iface
,
long
*
pWidth
,
long
*
pHeight
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
...
...
@@ -3671,7 +3671,7 @@ static HRESULT WINAPI Videowindow_GetMaxIdealImageSize(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_GetRestorePosition
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_GetRestorePosition
(
IVideoWindow
*
iface
,
long
*
pLeft
,
long
*
pTop
,
long
*
pWidth
,
...
...
@@ -3694,7 +3694,7 @@ static HRESULT WINAPI Videowindow_GetRestorePosition(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_HideCursor
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_HideCursor
(
IVideoWindow
*
iface
,
long
HideCursor
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3714,7 +3714,7 @@ static HRESULT WINAPI Videowindow_HideCursor(IVideoWindow *iface,
return
hr
;
}
static
HRESULT
WINAPI
Video
w
indow_IsCursorHidden
(
IVideoWindow
*
iface
,
static
HRESULT
WINAPI
Video
W
indow_IsCursorHidden
(
IVideoWindow
*
iface
,
long
*
CursorHidden
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IVideoWindow_vtbl
,
iface
);
IVideoWindow
*
pVideoWindow
;
...
...
@@ -3737,57 +3737,57 @@ static HRESULT WINAPI Videowindow_IsCursorHidden(IVideoWindow *iface,
static
const
IVideoWindowVtbl
IVideoWindow_VTable
=
{
Video
w
indow_QueryInterface
,
Video
w
indow_AddRef
,
Video
w
indow_Release
,
Video
w
indow_GetTypeInfoCount
,
Video
w
indow_GetTypeInfo
,
Video
w
indow_GetIDsOfNames
,
Video
w
indow_Invoke
,
Video
w
indow_put_Caption
,
Video
w
indow_get_Caption
,
Video
w
indow_put_WindowStyle
,
Video
w
indow_get_WindowStyle
,
Video
w
indow_put_WindowStyleEx
,
Video
w
indow_get_WindowStyleEx
,
Video
w
indow_put_AutoShow
,
Video
w
indow_get_AutoShow
,
Video
w
indow_put_WindowState
,
Video
w
indow_get_WindowState
,
Video
w
indow_put_BackgroundPalette
,
Video
w
indow_get_BackgroundPalette
,
Video
w
indow_put_Visible
,
Video
w
indow_get_Visible
,
Video
w
indow_put_Left
,
Video
w
indow_get_Left
,
Video
w
indow_put_Width
,
Video
w
indow_get_Width
,
Video
w
indow_put_Top
,
Video
w
indow_get_Top
,
Video
w
indow_put_Height
,
Video
w
indow_get_Height
,
Video
w
indow_put_Owner
,
Video
w
indow_get_Owner
,
Video
w
indow_put_MessageDrain
,
Video
w
indow_get_MessageDrain
,
Video
w
indow_get_BorderColor
,
Video
w
indow_put_BorderColor
,
Video
w
indow_get_FullScreenMode
,
Video
w
indow_put_FullScreenMode
,
Video
w
indow_SetWindowForeground
,
Video
w
indow_NotifyOwnerMessage
,
Video
w
indow_SetWindowPosition
,
Video
w
indow_GetWindowPosition
,
Video
w
indow_GetMinIdealImageSize
,
Video
w
indow_GetMaxIdealImageSize
,
Video
w
indow_GetRestorePosition
,
Video
w
indow_HideCursor
,
Video
w
indow_IsCursorHidden
Video
W
indow_QueryInterface
,
Video
W
indow_AddRef
,
Video
W
indow_Release
,
Video
W
indow_GetTypeInfoCount
,
Video
W
indow_GetTypeInfo
,
Video
W
indow_GetIDsOfNames
,
Video
W
indow_Invoke
,
Video
W
indow_put_Caption
,
Video
W
indow_get_Caption
,
Video
W
indow_put_WindowStyle
,
Video
W
indow_get_WindowStyle
,
Video
W
indow_put_WindowStyleEx
,
Video
W
indow_get_WindowStyleEx
,
Video
W
indow_put_AutoShow
,
Video
W
indow_get_AutoShow
,
Video
W
indow_put_WindowState
,
Video
W
indow_get_WindowState
,
Video
W
indow_put_BackgroundPalette
,
Video
W
indow_get_BackgroundPalette
,
Video
W
indow_put_Visible
,
Video
W
indow_get_Visible
,
Video
W
indow_put_Left
,
Video
W
indow_get_Left
,
Video
W
indow_put_Width
,
Video
W
indow_get_Width
,
Video
W
indow_put_Top
,
Video
W
indow_get_Top
,
Video
W
indow_put_Height
,
Video
W
indow_get_Height
,
Video
W
indow_put_Owner
,
Video
W
indow_get_Owner
,
Video
W
indow_put_MessageDrain
,
Video
W
indow_get_MessageDrain
,
Video
W
indow_get_BorderColor
,
Video
W
indow_put_BorderColor
,
Video
W
indow_get_FullScreenMode
,
Video
W
indow_put_FullScreenMode
,
Video
W
indow_SetWindowForeground
,
Video
W
indow_NotifyOwnerMessage
,
Video
W
indow_SetWindowPosition
,
Video
W
indow_GetWindowPosition
,
Video
W
indow_GetMinIdealImageSize
,
Video
W
indow_GetMaxIdealImageSize
,
Video
W
indow_GetRestorePosition
,
Video
W
indow_HideCursor
,
Video
W
indow_IsCursorHidden
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Media
e
vent_QueryInterface
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_QueryInterface
(
IMediaEventEx
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3797,7 +3797,7 @@ static HRESULT WINAPI Mediaevent_QueryInterface(IMediaEventEx *iface,
return
Filtergraph_QueryInterface
(
This
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Media
e
vent_AddRef
(
IMediaEventEx
*
iface
)
{
static
ULONG
WINAPI
Media
E
vent_AddRef
(
IMediaEventEx
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -3805,7 +3805,7 @@ static ULONG WINAPI Mediaevent_AddRef(IMediaEventEx *iface) {
return
Filtergraph_AddRef
(
This
);
}
static
ULONG
WINAPI
Media
e
vent_Release
(
IMediaEventEx
*
iface
)
{
static
ULONG
WINAPI
Media
E
vent_Release
(
IMediaEventEx
*
iface
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -3814,7 +3814,7 @@ static ULONG WINAPI Mediaevent_Release(IMediaEventEx *iface) {
}
/*** IDispatch methods ***/
static
HRESULT
WINAPI
Media
e
vent_GetTypeInfoCount
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_GetTypeInfoCount
(
IMediaEventEx
*
iface
,
UINT
*
pctinfo
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3823,7 +3823,7 @@ static HRESULT WINAPI Mediaevent_GetTypeInfoCount(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_GetTypeInfo
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_GetTypeInfo
(
IMediaEventEx
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
...
...
@@ -3834,7 +3834,7 @@ static HRESULT WINAPI Mediaevent_GetTypeInfo(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_GetIDsOfNames
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_GetIDsOfNames
(
IMediaEventEx
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
...
...
@@ -3847,7 +3847,7 @@ static HRESULT WINAPI Mediaevent_GetIDsOfNames(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_Invoke
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_Invoke
(
IMediaEventEx
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
...
...
@@ -3864,7 +3864,7 @@ static HRESULT WINAPI Mediaevent_Invoke(IMediaEventEx *iface,
}
/*** IMediaEvent methods ***/
static
HRESULT
WINAPI
Media
e
vent_GetEventHandle
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_GetEventHandle
(
IMediaEventEx
*
iface
,
OAEVENT
*
hEvent
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3875,7 +3875,7 @@ static HRESULT WINAPI Mediaevent_GetEventHandle(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_GetEvent
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_GetEvent
(
IMediaEventEx
*
iface
,
long
*
lEventCode
,
LONG_PTR
*
lParam1
,
LONG_PTR
*
lParam2
,
...
...
@@ -3897,7 +3897,7 @@ static HRESULT WINAPI Mediaevent_GetEvent(IMediaEventEx *iface,
return
E_ABORT
;
}
static
HRESULT
WINAPI
Media
e
vent_WaitForCompletion
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_WaitForCompletion
(
IMediaEventEx
*
iface
,
long
msTimeout
,
long
*
pEvCode
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3914,7 +3914,7 @@ static HRESULT WINAPI Mediaevent_WaitForCompletion(IMediaEventEx *iface,
return
E_ABORT
;
}
static
HRESULT
WINAPI
Media
e
vent_CancelDefaultHandling
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_CancelDefaultHandling
(
IMediaEventEx
*
iface
,
long
lEvCode
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3930,7 +3930,7 @@ static HRESULT WINAPI Mediaevent_CancelDefaultHandling(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_RestoreDefaultHandling
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_RestoreDefaultHandling
(
IMediaEventEx
*
iface
,
long
lEvCode
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3946,7 +3946,7 @@ static HRESULT WINAPI Mediaevent_RestoreDefaultHandling(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_FreeEventParams
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_FreeEventParams
(
IMediaEventEx
*
iface
,
long
lEvCode
,
LONG_PTR
lParam1
,
LONG_PTR
lParam2
)
{
...
...
@@ -3958,7 +3958,7 @@ static HRESULT WINAPI Mediaevent_FreeEventParams(IMediaEventEx *iface,
}
/*** IMediaEventEx methods ***/
static
HRESULT
WINAPI
Media
e
vent_SetNotifyWindow
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_SetNotifyWindow
(
IMediaEventEx
*
iface
,
OAHWND
hwnd
,
long
lMsg
,
LONG_PTR
lInstanceData
)
{
...
...
@@ -3973,7 +3973,7 @@ static HRESULT WINAPI Mediaevent_SetNotifyWindow(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_SetNotifyFlags
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_SetNotifyFlags
(
IMediaEventEx
*
iface
,
long
lNoNotifyFlags
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -3987,7 +3987,7 @@ static HRESULT WINAPI Mediaevent_SetNotifyFlags(IMediaEventEx *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Media
e
vent_GetNotifyFlags
(
IMediaEventEx
*
iface
,
static
HRESULT
WINAPI
Media
E
vent_GetNotifyFlags
(
IMediaEventEx
*
iface
,
long
*
lplNoNotifyFlags
)
{
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaEventEx_vtbl
,
iface
);
...
...
@@ -4004,22 +4004,22 @@ static HRESULT WINAPI Mediaevent_GetNotifyFlags(IMediaEventEx *iface,
static
const
IMediaEventExVtbl
IMediaEventEx_VTable
=
{
Media
e
vent_QueryInterface
,
Media
e
vent_AddRef
,
Media
e
vent_Release
,
Media
e
vent_GetTypeInfoCount
,
Media
e
vent_GetTypeInfo
,
Media
e
vent_GetIDsOfNames
,
Media
e
vent_Invoke
,
Media
e
vent_GetEventHandle
,
Media
e
vent_GetEvent
,
Media
e
vent_WaitForCompletion
,
Media
e
vent_CancelDefaultHandling
,
Media
e
vent_RestoreDefaultHandling
,
Media
e
vent_FreeEventParams
,
Media
e
vent_SetNotifyWindow
,
Media
e
vent_SetNotifyFlags
,
Media
e
vent_GetNotifyFlags
Media
E
vent_QueryInterface
,
Media
E
vent_AddRef
,
Media
E
vent_Release
,
Media
E
vent_GetTypeInfoCount
,
Media
E
vent_GetTypeInfo
,
Media
E
vent_GetIDsOfNames
,
Media
E
vent_Invoke
,
Media
E
vent_GetEventHandle
,
Media
E
vent_GetEvent
,
Media
E
vent_WaitForCompletion
,
Media
E
vent_CancelDefaultHandling
,
Media
E
vent_RestoreDefaultHandling
,
Media
E
vent_FreeEventParams
,
Media
E
vent_SetNotifyWindow
,
Media
E
vent_SetNotifyFlags
,
Media
E
vent_GetNotifyFlags
};
...
...
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