Media controller WIP
This commit is contained in:
@@ -1,10 +1,24 @@
|
||||
namespace Hyperbar.Windows.Primary;
|
||||
using Windows.Media.Control;
|
||||
|
||||
public class MediaController :
|
||||
IInitializer
|
||||
namespace Hyperbar.Windows.Primary;
|
||||
|
||||
public class MediaController :
|
||||
INotificationHandler<PlayRequest>,
|
||||
IDisposable
|
||||
{
|
||||
public Task InitializeAsync()
|
||||
public MediaController(GlobalSystemMediaTransportControlsSession session)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
||||
public ValueTask Handle(PlayRequest notification,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user