Commit b6b32b99 authored by Biswapriyo Nath's avatar Biswapriyo Nath Committed by Alexandre Julliard

include: Add IMFMetadata interface in mfidl.idl.

parent 4aab4355
......@@ -543,6 +543,36 @@ interface IMFPresentationDescriptor : IMFAttributes
[
object,
uuid(f88cfb8c-ef16-4991-b450-cb8c69e51704)
]
interface IMFMetadata : IUnknown
{
HRESULT SetLanguage(
[in] const WCHAR *lang);
HRESULT GetLanguage(
[out] WCHAR **lang);
HRESULT GetAllLanguages(
[out] PROPVARIANT *languages);
HRESULT SetProperty(
[in] const WCHAR *name,
[in] const PROPVARIANT *values);
HRESULT GetProperty(
[in] const WCHAR *name,
[out] PROPVARIANT *values);
HRESULT DeleteProperty(
[in] const WCHAR *name);
HRESULT GetAllPropertyNames(
[out] PROPVARIANT *names);
}
[
object,
uuid(197cd219-19cb-4de1-a64c-acf2edcbe59e),
local
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment