include: Add definition for IWICMetadataQueryReader.
This commit is contained in:
parent
53a0bbbbf5
commit
add681ecf5
|
@ -198,7 +198,6 @@ cpp_quote("#define WINCODEC_ERR_UNSUPPORTEDOPERATION 0x88982f81")
|
||||||
cpp_quote("#define WINCODEC_ERR_INSUFFICIENTBUFFER 0x88982f8c")
|
cpp_quote("#define WINCODEC_ERR_INSUFFICIENTBUFFER 0x88982f8c")
|
||||||
|
|
||||||
interface IWICPalette;
|
interface IWICPalette;
|
||||||
interface IWICMetadataQueryReader;
|
|
||||||
interface IWICMetadataQueryWriter;
|
interface IWICMetadataQueryWriter;
|
||||||
|
|
||||||
[
|
[
|
||||||
|
@ -389,6 +388,28 @@ interface IWICComponentInfo : IUnknown
|
||||||
[out] UINT *pcchActual);
|
[out] UINT *pcchActual);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(30989668-e1c9-4597-b395-458eedb808df)
|
||||||
|
]
|
||||||
|
interface IWICMetadataQueryReader : IUnknown
|
||||||
|
{
|
||||||
|
HRESULT GetContainerFormat(
|
||||||
|
[out] GUID *pguidContainerFormat);
|
||||||
|
|
||||||
|
HRESULT GetLocation(
|
||||||
|
[in] UINT cchMaxLength,
|
||||||
|
[in, out, unique, size_is(cchMaxLength)] WCHAR *wzNamespace,
|
||||||
|
[out] UINT *pcchActualLength);
|
||||||
|
|
||||||
|
HRESULT GetMetadataByName(
|
||||||
|
[in] LPCWSTR wzName,
|
||||||
|
[in, out, unique] PROPVARIANT *pvarValue);
|
||||||
|
|
||||||
|
HRESULT GetEnumerator(
|
||||||
|
[out] IEnumString **ppIEnumString);
|
||||||
|
}
|
||||||
|
|
||||||
[
|
[
|
||||||
object,
|
object,
|
||||||
uuid(3b16811b-6a43-4ec9-a813-3d930c13b940)
|
uuid(3b16811b-6a43-4ec9-a813-3d930c13b940)
|
||||||
|
|
Loading…
Reference in New Issue