mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:51:39 +00:00
[WINDOWSCODECS] Fix an MSVC warning about get_decoder_info() (#684)
"...\info.c(2163) : warning C4028: formal parameter 1 different from declaration"
Cherry-pick 90518ebd2c
CORE-7538
This commit is contained in:
parent
42353ecbad
commit
246005c625
1 changed files with 1 additions and 1 deletions
|
@ -2159,7 +2159,7 @@ void ReleaseComponentInfos(void)
|
||||||
IWICComponentInfo_Release(&info->IWICComponentInfo_iface);
|
IWICComponentInfo_Release(&info->IWICComponentInfo_iface);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT get_decoder_info(const CLSID *clsid, IWICBitmapDecoderInfo **info)
|
HRESULT get_decoder_info(REFCLSID clsid, IWICBitmapDecoderInfo **info)
|
||||||
{
|
{
|
||||||
IWICComponentInfo *compinfo;
|
IWICComponentInfo *compinfo;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue