diff --git a/include/windows.media.idl b/include/windows.media.idl index b0e382a3a0e..35aa64a1937 100644 --- a/include/windows.media.idl +++ b/include/windows.media.idl @@ -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 **value); + } + [ contract(Windows.Foundation.UniversalApiContract, 1.0), exclusiveto(Windows.Media.SystemMediaTransportControls),