mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
windowscodecs: Add wrapper functions for IWICMetadataQueryReader methods.
This commit is contained in:
parent
320d419be1
commit
536b208cb1
2 changed files with 28 additions and 4 deletions
|
@ -277,6 +277,30 @@ HRESULT WINAPI IWICImagingFactory_CreateStream_Proxy_W(IWICImagingFactory *pFact
|
|||
return IWICImagingFactory_CreateStream(pFactory, ppIWICStream);
|
||||
}
|
||||
|
||||
HRESULT WINAPI IWICMetadataQueryReader_GetContainerFormat_Proxy_W(IWICMetadataQueryReader *iface,
|
||||
GUID *pguidContainerFormat)
|
||||
{
|
||||
return IWICMetadataQueryReader_GetContainerFormat(iface, pguidContainerFormat);
|
||||
}
|
||||
|
||||
HRESULT WINAPI IWICMetadataQueryReader_GetLocation_Proxy_W(IWICMetadataQueryReader *iface,
|
||||
UINT cchMaxLength, WCHAR *wzNamespace, UINT *pcchActualLength)
|
||||
{
|
||||
return IWICMetadataQueryReader_GetLocation(iface, cchMaxLength, wzNamespace, pcchActualLength);
|
||||
}
|
||||
|
||||
HRESULT WINAPI IWICMetadataQueryReader_GetMetadataByName_Proxy_W(IWICMetadataQueryReader *iface,
|
||||
LPCWSTR wzName, PROPVARIANT *pvarValue)
|
||||
{
|
||||
return IWICMetadataQueryReader_GetMetadataByName(iface, wzName, pvarValue);
|
||||
}
|
||||
|
||||
HRESULT WINAPI IWICMetadataQueryReader_GetEnumerator_Proxy_W(IWICMetadataQueryReader *iface,
|
||||
IEnumString **ppIEnumString)
|
||||
{
|
||||
return IWICMetadataQueryReader_GetEnumerator(iface, ppIEnumString);
|
||||
}
|
||||
|
||||
HRESULT WINAPI IWICPalette_InitializePredefined_Proxy_W(IWICPalette *iface,
|
||||
WICBitmapPaletteType ePaletteType, BOOL fAddTransparentColor)
|
||||
{
|
||||
|
|
|
@ -85,10 +85,10 @@
|
|||
@ stdcall IWICImagingFactory_CreateStream_Proxy(ptr ptr) IWICImagingFactory_CreateStream_Proxy_W
|
||||
@ stub IWICMetadataBlockReader_GetCount_Proxy
|
||||
@ stub IWICMetadataBlockReader_GetReaderByIndex_Proxy
|
||||
@ stub IWICMetadataQueryReader_GetContainerFormat_Proxy
|
||||
@ stub IWICMetadataQueryReader_GetEnumerator_Proxy
|
||||
@ stub IWICMetadataQueryReader_GetLocation_Proxy
|
||||
@ stub IWICMetadataQueryReader_GetMetadataByName_Proxy
|
||||
@ stdcall IWICMetadataQueryReader_GetContainerFormat_Proxy(ptr ptr) IWICMetadataQueryReader_GetContainerFormat_Proxy_W
|
||||
@ stdcall IWICMetadataQueryReader_GetEnumerator_Proxy(ptr ptr) IWICMetadataQueryReader_GetEnumerator_Proxy_W
|
||||
@ stdcall IWICMetadataQueryReader_GetLocation_Proxy(ptr long ptr ptr) IWICMetadataQueryReader_GetLocation_Proxy_W
|
||||
@ stdcall IWICMetadataQueryReader_GetMetadataByName_Proxy(ptr wstr ptr) IWICMetadataQueryReader_GetMetadataByName_Proxy_W
|
||||
@ stub IWICMetadataQueryWriter_RemoveMetadataByName_Proxy
|
||||
@ stub IWICMetadataQueryWriter_SetMetadataByName_Proxy
|
||||
@ stdcall IWICPalette_GetColorCount_Proxy(ptr ptr) IWICPalette_GetColorCount_Proxy_W
|
||||
|
|
Loading…
Reference in a new issue