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
258c5279
Commit
258c5279
authored
Feb 07, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement IShellImageData::Draw().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5222eca2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
shellole.c
dlls/shell32/shellole.c
+22
-2
No files found.
dlls/shell32/shellole.c
View file @
258c5279
...
...
@@ -920,10 +920,30 @@ static HRESULT WINAPI ShellImageData_Decode(IShellImageData *iface, DWORD flags,
static
HRESULT
WINAPI
ShellImageData_Draw
(
IShellImageData
*
iface
,
HDC
hdc
,
RECT
*
dest
,
RECT
*
src
)
{
ShellImageData
*
This
=
impl_from_IShellImageData
(
iface
);
GpGraphics
*
graphics
;
HRESULT
hr
;
FIXME
(
"%p, %p, %s, %s: stub
\n
"
,
This
,
hdc
,
wine_dbgstr_rect
(
dest
),
wine_dbgstr_rect
(
src
));
TRACE
(
"%p, %p, %s, %s
\n
"
,
This
,
hdc
,
wine_dbgstr_rect
(
dest
),
wine_dbgstr_rect
(
src
));
return
E_NOTIMPL
;
if
(
!
This
->
image
)
return
E_FAIL
;
if
(
!
dest
)
return
E_INVALIDARG
;
if
(
!
src
)
return
S_OK
;
hr
=
gpstatus_to_hresult
(
GdipCreateFromHDC
(
hdc
,
&
graphics
));
if
(
FAILED
(
hr
))
return
hr
;
hr
=
gpstatus_to_hresult
(
GdipDrawImageRectRectI
(
graphics
,
This
->
image
,
dest
->
left
,
dest
->
top
,
dest
->
right
-
dest
->
left
,
dest
->
bottom
-
dest
->
top
,
src
->
left
,
src
->
top
,
src
->
right
-
src
->
left
,
src
->
bottom
-
src
->
top
,
UnitPixel
,
NULL
,
NULL
,
NULL
));
GdipDeleteGraphics
(
graphics
);
return
hr
;
}
static
HRESULT
WINAPI
ShellImageData_NextFrame
(
IShellImageData
*
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