1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

include: Add IMusicDisplayProperties2 interface definition.

This commit is contained in:
Mohamad Al-Jaf 2023-09-28 19:11:20 -04:00 committed by Alexandre Julliard
parent 780a173f45
commit 8a91ff180e

View File

@ -160,6 +160,20 @@ namespace Windows.Media
[propput] HRESULT Artist([in] HSTRING value);
}
[
contract(Windows.Foundation.UniversalApiContract, 1.0),
exclusiveto(Windows.Media.MusicDisplayProperties),
uuid(00368462-97d3-44b9-b00f-008afcefaf18)
]
interface IMusicDisplayProperties2 : IInspectable
{
[propget] HRESULT AlbumTitle([out, retval] HSTRING *value);
[propput] HRESULT AlbumTitle([in] HSTRING value);
[propget] HRESULT TrackNumber([out, retval] UINT32 *value);
[propput] HRESULT TrackNumber([in] UINT32 value);
[propget] HRESULT Genres([out, retval] Windows.Foundation.Collections.IVector<HSTRING> **value);
}
[
contract(Windows.Foundation.UniversalApiContract, 1.0),
exclusiveto(Windows.Media.SystemMediaTransportControls),