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
ccc4c2d5
Commit
ccc4c2d5
authored
Aug 20, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Aug 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement GetSize for the ICO decoder.
parent
c49b36ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
icoformat.c
dlls/windowscodecs/icoformat.c
+8
-2
No files found.
dlls/windowscodecs/icoformat.c
View file @
ccc4c2d5
...
...
@@ -123,8 +123,14 @@ static ULONG WINAPI IcoFrameDecode_Release(IWICBitmapFrameDecode *iface)
static
HRESULT
WINAPI
IcoFrameDecode_GetSize
(
IWICBitmapFrameDecode
*
iface
,
UINT
*
puiWidth
,
UINT
*
puiHeight
)
{
FIXME
(
"(%p,%p,%p): stub
\n
"
,
iface
,
puiWidth
,
puiHeight
);
return
E_NOTIMPL
;
IcoFrameDecode
*
This
=
(
IcoFrameDecode
*
)
iface
;
*
puiWidth
=
This
->
entry
.
bWidth
?
This
->
entry
.
bWidth
:
256
;
*
puiHeight
=
This
->
entry
.
bHeight
?
This
->
entry
.
bHeight
:
256
;
TRACE
(
"(%p) -> (%i,%i)
\n
"
,
iface
,
*
puiWidth
,
*
puiHeight
);
return
S_OK
;
}
static
HRESULT
WINAPI
IcoFrameDecode_GetPixelFormat
(
IWICBitmapFrameDecode
*
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