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
f24834f4
Commit
f24834f4
authored
Jul 14, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Aug 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add stub implementation of IWICBitmapDecoderInfo.
parent
d89b470e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
Makefile.in
dlls/windowscodecs/Makefile.in
+1
-0
imgfactory.c
dlls/windowscodecs/imgfactory.c
+2
-2
info.c
dlls/windowscodecs/info.c
+0
-0
wincodecs_private.h
dlls/windowscodecs/wincodecs_private.h
+2
-0
No files found.
dlls/windowscodecs/Makefile.in
View file @
f24834f4
...
...
@@ -10,6 +10,7 @@ C_SRCS = \
bmpdecode.c
\
clsfactory.c
\
imgfactory.c
\
info.c
\
main.c
\
palette.c
\
regsvr.c
...
...
dlls/windowscodecs/imgfactory.c
View file @
f24834f4
...
...
@@ -115,8 +115,8 @@ static HRESULT WINAPI ImagingFactory_CreateDecoderFromFileHandle(
static
HRESULT
WINAPI
ImagingFactory_CreateComponentInfo
(
IWICImagingFactory
*
iface
,
REFCLSID
clsidComponent
,
IWICComponentInfo
**
ppIInfo
)
{
FIXME
(
"(%p,%s,%p): stub
\n
"
,
iface
,
debugstr_guid
(
clsidComponent
),
ppIInfo
);
return
E_NOTIMPL
;
TRACE
(
"(%p,%s,%p)
\n
"
,
iface
,
debugstr_guid
(
clsidComponent
),
ppIInfo
);
return
CreateComponentInfo
(
clsidComponent
,
ppIInfo
)
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateDecoder
(
IWICImagingFactory
*
iface
,
...
...
dlls/windowscodecs/info.c
0 → 100644
View file @
f24834f4
This diff is collapsed.
Click to expand it.
dlls/windowscodecs/wincodecs_private.h
View file @
f24834f4
...
...
@@ -28,4 +28,6 @@ extern HRESULT copy_pixels(UINT bpp, const BYTE *srcbuffer,
UINT
srcwidth
,
UINT
srcheight
,
INT
srcstride
,
const
WICRect
*
rc
,
UINT
dststride
,
UINT
dstbuffersize
,
BYTE
*
dstbuffer
);
extern
HRESULT
CreateComponentInfo
(
REFCLSID
clsid
,
IWICComponentInfo
**
ppIInfo
);
#endif
/* WINCODECS_PRIVATE_H */
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