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
b468c29d
Commit
b468c29d
authored
Apr 27, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Apr 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement IWICImagingFactory_CreateDecoderFromFilename.
parent
2f41a3ad
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
imgfactory.c
dlls/windowscodecs/imgfactory.c
+21
-2
No files found.
dlls/windowscodecs/imgfactory.c
View file @
b468c29d
...
...
@@ -26,6 +26,7 @@
#include "winbase.h"
#include "winreg.h"
#include "objbase.h"
#include "shellapi.h"
#include "wincodec.h"
#include "wincodecs_private.h"
...
...
@@ -89,9 +90,27 @@ static HRESULT WINAPI ImagingFactory_CreateDecoderFromFilename(
DWORD
dwDesiredAccess
,
WICDecodeOptions
metadataOptions
,
IWICBitmapDecoder
**
ppIDecoder
)
{
FIXME
(
"(%p,%s,%s,%u,%u,%p): stub
\n
"
,
iface
,
debugstr_w
(
wzFilename
),
IWICStream
*
stream
;
HRESULT
hr
;
TRACE
(
"(%p,%s,%s,%u,%u,%p)
\n
"
,
iface
,
debugstr_w
(
wzFilename
),
debugstr_guid
(
pguidVendor
),
dwDesiredAccess
,
metadataOptions
,
ppIDecoder
);
return
E_NOTIMPL
;
hr
=
StreamImpl_Create
(
&
stream
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
IWICStream_InitializeFromFilename
(
stream
,
wzFilename
,
dwDesiredAccess
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
IWICImagingFactory_CreateDecoderFromStream
(
iface
,
(
IStream
*
)
stream
,
pguidVendor
,
metadataOptions
,
ppIDecoder
);
}
IWICStream_Release
(
stream
);
}
return
hr
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateDecoderFromStream
(
...
...
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