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
5222eca2
Commit
5222eca2
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::GetSize().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d9d99834
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
shellole.c
dlls/shell32/shellole.c
+14
-2
No files found.
dlls/shell32/shellole.c
View file @
5222eca2
...
...
@@ -1046,10 +1046,22 @@ static HRESULT WINAPI ShellImageDate_SelectPage(IShellImageData *iface, ULONG pa
static
HRESULT
WINAPI
ShellImageData_GetSize
(
IShellImageData
*
iface
,
SIZE
*
size
)
{
ShellImageData
*
This
=
impl_from_IShellImageData
(
iface
);
REAL
cx
,
cy
;
HRESULT
hr
;
FIXME
(
"%p, %p: stub
\n
"
,
This
,
size
);
TRACE
(
"%p, %p
\n
"
,
This
,
size
);
return
E_NOTIMPL
;
if
(
!
This
->
image
)
return
E_FAIL
;
hr
=
gpstatus_to_hresult
(
GdipGetImageDimension
(
This
->
image
,
&
cx
,
&
cy
));
if
(
SUCCEEDED
(
hr
))
{
size
->
cx
=
cx
;
size
->
cy
=
cy
;
}
return
hr
;
}
static
HRESULT
WINAPI
ShellImageData_GetRawDataFormat
(
IShellImageData
*
iface
,
GUID
*
format
)
...
...
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