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
0c0b2297
Commit
0c0b2297
authored
Nov 27, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Nov 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Fix case in some methods name.
parent
eca0bc35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
18 deletions
+24
-18
videorenderer.c
dlls/quartz/videorenderer.c
+24
-18
No files found.
dlls/quartz/videorenderer.c
View file @
0c0b2297
...
...
@@ -796,7 +796,7 @@ static const IBaseFilterVtbl VideoRenderer_Vtbl =
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Basic
v
ideo_QueryInterface
(
IBasicVideo
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
static
HRESULT
WINAPI
Basic
V
ideo_QueryInterface
(
IBasicVideo
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
VideoRendererImpl
*
This
=
impl_from_IBasicVideo
(
iface
);
...
...
@@ -805,7 +805,8 @@ static HRESULT WINAPI Basicvideo_QueryInterface(IBasicVideo *iface, REFIID riid,
return
IUnknown_QueryInterface
(
This
->
outer_unk
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Basicvideo_AddRef
(
IBasicVideo
*
iface
)
{
static
ULONG
WINAPI
BasicVideo_AddRef
(
IBasicVideo
*
iface
)
{
VideoRendererImpl
*
This
=
impl_from_IBasicVideo
(
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -813,7 +814,8 @@ static ULONG WINAPI Basicvideo_AddRef(IBasicVideo *iface) {
return
IUnknown_AddRef
(
This
->
outer_unk
);
}
static
ULONG
WINAPI
Basicvideo_Release
(
IBasicVideo
*
iface
)
{
static
ULONG
WINAPI
BasicVideo_Release
(
IBasicVideo
*
iface
)
{
VideoRendererImpl
*
This
=
impl_from_IBasicVideo
(
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -823,9 +825,9 @@ static ULONG WINAPI Basicvideo_Release(IBasicVideo *iface) {
static
const
IBasicVideoVtbl
IBasicVideo_VTable
=
{
Basic
v
ideo_QueryInterface
,
Basic
v
ideo_AddRef
,
Basic
v
ideo_Release
,
Basic
V
ideo_QueryInterface
,
Basic
V
ideo_AddRef
,
Basic
V
ideo_Release
,
BaseControlVideoImpl_GetTypeInfoCount
,
BaseControlVideoImpl_GetTypeInfo
,
BaseControlVideoImpl_GetIDsOfNames
,
...
...
@@ -866,7 +868,7 @@ static const IBasicVideoVtbl IBasicVideo_VTable =
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Video
w
indow_QueryInterface
(
IVideoWindow
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
static
HRESULT
WINAPI
Video
W
indow_QueryInterface
(
IVideoWindow
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
VideoRendererImpl
*
This
=
impl_from_IVideoWindow
(
iface
);
...
...
@@ -875,7 +877,8 @@ static HRESULT WINAPI Videowindow_QueryInterface(IVideoWindow *iface, REFIID rii
return
IUnknown_QueryInterface
(
This
->
outer_unk
,
riid
,
ppvObj
);
}
static
ULONG
WINAPI
Videowindow_AddRef
(
IVideoWindow
*
iface
)
{
static
ULONG
WINAPI
VideoWindow_AddRef
(
IVideoWindow
*
iface
)
{
VideoRendererImpl
*
This
=
impl_from_IVideoWindow
(
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -883,7 +886,8 @@ static ULONG WINAPI Videowindow_AddRef(IVideoWindow *iface) {
return
IUnknown_AddRef
(
This
->
outer_unk
);
}
static
ULONG
WINAPI
Videowindow_Release
(
IVideoWindow
*
iface
)
{
static
ULONG
WINAPI
VideoWindow_Release
(
IVideoWindow
*
iface
)
{
VideoRendererImpl
*
This
=
impl_from_IVideoWindow
(
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
...
...
@@ -891,8 +895,9 @@ static ULONG WINAPI Videowindow_Release(IVideoWindow *iface) {
return
IUnknown_Release
(
This
->
outer_unk
);
}
static
HRESULT
WINAPI
Videowindow_get_FullScreenMode
(
IVideoWindow
*
iface
,
LONG
*
FullScreenMode
)
{
static
HRESULT
WINAPI
VideoWindow_get_FullScreenMode
(
IVideoWindow
*
iface
,
LONG
*
FullScreenMode
)
{
VideoRendererImpl
*
This
=
impl_from_IVideoWindow
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub !!!
\n
"
,
This
,
iface
,
FullScreenMode
);
...
...
@@ -900,8 +905,9 @@ static HRESULT WINAPI Videowindow_get_FullScreenMode(IVideoWindow *iface,
return
S_OK
;
}
static
HRESULT
WINAPI
Videowindow_put_FullScreenMode
(
IVideoWindow
*
iface
,
LONG
FullScreenMode
)
{
static
HRESULT
WINAPI
VideoWindow_put_FullScreenMode
(
IVideoWindow
*
iface
,
LONG
FullScreenMode
)
{
VideoRendererImpl
*
This
=
impl_from_IVideoWindow
(
iface
);
FIXME
(
"(%p/%p)->(%d): stub !!!
\n
"
,
This
,
iface
,
FullScreenMode
);
...
...
@@ -928,9 +934,9 @@ static HRESULT WINAPI Videowindow_put_FullScreenMode(IVideoWindow *iface,
static
const
IVideoWindowVtbl
IVideoWindow_VTable
=
{
Video
w
indow_QueryInterface
,
Video
w
indow_AddRef
,
Video
w
indow_Release
,
Video
W
indow_QueryInterface
,
Video
W
indow_AddRef
,
Video
W
indow_Release
,
BaseControlWindowImpl_GetTypeInfoCount
,
BaseControlWindowImpl_GetTypeInfo
,
BaseControlWindowImpl_GetIDsOfNames
,
...
...
@@ -963,8 +969,8 @@ static const IVideoWindowVtbl IVideoWindow_VTable =
BaseControlWindowImpl_get_MessageDrain
,
BaseControlWindowImpl_get_BorderColor
,
BaseControlWindowImpl_put_BorderColor
,
Video
w
indow_get_FullScreenMode
,
Video
w
indow_put_FullScreenMode
,
Video
W
indow_get_FullScreenMode
,
Video
W
indow_put_FullScreenMode
,
BaseControlWindowImpl_SetWindowForeground
,
BaseControlWindowImpl_NotifyOwnerMessage
,
BaseControlWindowImpl_SetWindowPosition
,
...
...
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