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
8f6d4b1c
Commit
8f6d4b1c
authored
May 07, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
May 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Implement IBasicVideo::IsUsingDefaultSource().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
82420a8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
window.c
dlls/quartz/window.c
+9
-2
No files found.
dlls/quartz/window.c
View file @
8f6d4b1c
...
@@ -1155,9 +1155,16 @@ static HRESULT WINAPI basic_video_GetCurrentImage(IBasicVideo *iface, LONG *size
...
@@ -1155,9 +1155,16 @@ static HRESULT WINAPI basic_video_GetCurrentImage(IBasicVideo *iface, LONG *size
static
HRESULT
WINAPI
basic_video_IsUsingDefaultSource
(
IBasicVideo
*
iface
)
static
HRESULT
WINAPI
basic_video_IsUsingDefaultSource
(
IBasicVideo
*
iface
)
{
{
FIXME
(
"iface %p, stub!
\n
"
,
iface
);
struct
video_window
*
window
=
impl_from_IBasicVideo
(
iface
);
const
BITMAPINFOHEADER
*
bitmap_header
=
get_bitmap_header
(
window
);
return
S_OK
;
TRACE
(
"window %p.
\n
"
,
window
);
if
(
!
window
->
src
.
left
&&
!
window
->
src
.
top
&&
window
->
src
.
right
==
bitmap_header
->
biWidth
&&
window
->
src
.
bottom
==
bitmap_header
->
biHeight
)
return
S_OK
;
return
S_FALSE
;
}
}
static
HRESULT
WINAPI
basic_video_IsUsingDefaultDestination
(
IBasicVideo
*
iface
)
static
HRESULT
WINAPI
basic_video_IsUsingDefaultDestination
(
IBasicVideo
*
iface
)
...
...
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