Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
b4eb7f25
Commit
b4eb7f25
authored
Sep 19, 2018
by
Alistair Leslie-Hughes
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Avoid implicit cast of interface pointer.
parent
c86955d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
info.c
dlls/windowscodecs/info.c
+5
-5
No files found.
dlls/windowscodecs/info.c
View file @
b4eb7f25
...
...
@@ -199,7 +199,7 @@ typedef struct {
static
inline
BitmapDecoderInfo
*
impl_from_IWICBitmapDecoderInfo
(
IWICBitmapDecoderInfo
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
BitmapDecoderInfo
,
base
.
IWICComponentInfo_iface
);
return
CONTAINING_RECORD
(
(
IWICComponentInfo
*
)
iface
,
BitmapDecoderInfo
,
base
.
IWICComponentInfo_iface
);
}
static
HRESULT
WINAPI
BitmapDecoderInfo_QueryInterface
(
IWICBitmapDecoderInfo
*
iface
,
REFIID
iid
,
...
...
@@ -683,7 +683,7 @@ typedef struct {
static
inline
BitmapEncoderInfo
*
impl_from_IWICBitmapEncoderInfo
(
IWICBitmapEncoderInfo
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
BitmapEncoderInfo
,
base
.
IWICComponentInfo_iface
);
return
CONTAINING_RECORD
(
(
IWICComponentInfo
*
)
iface
,
BitmapEncoderInfo
,
base
.
IWICComponentInfo_iface
);
}
static
HRESULT
WINAPI
BitmapEncoderInfo_QueryInterface
(
IWICBitmapEncoderInfo
*
iface
,
REFIID
iid
,
...
...
@@ -974,7 +974,7 @@ typedef struct {
static
inline
FormatConverterInfo
*
impl_from_IWICFormatConverterInfo
(
IWICFormatConverterInfo
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
FormatConverterInfo
,
base
.
IWICComponentInfo_iface
);
return
CONTAINING_RECORD
(
(
IWICComponentInfo
*
)
iface
,
FormatConverterInfo
,
base
.
IWICComponentInfo_iface
);
}
static
HRESULT
WINAPI
FormatConverterInfo_QueryInterface
(
IWICFormatConverterInfo
*
iface
,
REFIID
iid
,
...
...
@@ -1187,7 +1187,7 @@ typedef struct {
static
inline
PixelFormatInfo
*
impl_from_IWICPixelFormatInfo2
(
IWICPixelFormatInfo2
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
PixelFormatInfo
,
base
.
IWICComponentInfo_iface
);
return
CONTAINING_RECORD
(
(
IWICComponentInfo
*
)
iface
,
PixelFormatInfo
,
base
.
IWICComponentInfo_iface
);
}
static
HRESULT
WINAPI
PixelFormatInfo_QueryInterface
(
IWICPixelFormatInfo2
*
iface
,
REFIID
iid
,
...
...
@@ -1497,7 +1497,7 @@ static struct metadata_container *get_metadata_container(MetadataReaderInfo *inf
static
inline
MetadataReaderInfo
*
impl_from_IWICMetadataReaderInfo
(
IWICMetadataReaderInfo
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
MetadataReaderInfo
,
base
.
IWICComponentInfo_iface
);
return
CONTAINING_RECORD
(
(
IWICComponentInfo
*
)
iface
,
MetadataReaderInfo
,
base
.
IWICComponentInfo_iface
);
}
static
HRESULT
WINAPI
MetadataReaderInfo_QueryInterface
(
IWICMetadataReaderInfo
*
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