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
66a04a83
Commit
66a04a83
authored
Jun 30, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add a trailing '\n' to FIXME() traces.
parent
7f046f51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
imgfactory.c
dlls/windowscodecs/imgfactory.c
+7
-7
No files found.
dlls/windowscodecs/imgfactory.c
View file @
66a04a83
...
...
@@ -147,49 +147,49 @@ static HRESULT WINAPI ImagingFactory_CreatePalette(IWICImagingFactory *iface,
static
HRESULT
WINAPI
ImagingFactory_CreateFormatConverter
(
IWICImagingFactory
*
iface
,
IWICFormatConverter
**
ppIFormatConverter
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIFormatConverter
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIFormatConverter
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateBitmapScaler
(
IWICImagingFactory
*
iface
,
IWICBitmapScaler
**
ppIBitmapScaler
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIBitmapScaler
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIBitmapScaler
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateBitmapClipper
(
IWICImagingFactory
*
iface
,
IWICBitmapClipper
**
ppIBitmapClipper
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIBitmapClipper
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIBitmapClipper
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateBitmapFlipRotator
(
IWICImagingFactory
*
iface
,
IWICBitmapFlipRotator
**
ppIBitmapFlipRotator
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIBitmapFlipRotator
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIBitmapFlipRotator
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateStream
(
IWICImagingFactory
*
iface
,
IWICStream
**
ppIWICStream
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIWICStream
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIWICStream
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateColorContext
(
IWICImagingFactory
*
iface
,
IWICColorContext
**
ppIColorContext
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIColorContext
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIColorContext
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ImagingFactory_CreateColorTransformer
(
IWICImagingFactory
*
iface
,
IWICColorTransform
**
ppIColorTransform
)
{
FIXME
(
"(%p,%p): stub"
,
iface
,
ppIColorTransform
);
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
ppIColorTransform
);
return
E_NOTIMPL
;
}
...
...
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