Updates to Video Codec Interfaces

This commit is contained in:
Neil Dorin
2017-09-12 14:04:20 -06:00
parent 830093da3b
commit 849675c539
4 changed files with 31 additions and 3 deletions

View File

@@ -18,8 +18,28 @@ namespace PepperDash.Essentials.Core
void AcceptCall();
void RejectCall();
void SendDtmf();
BoolFeedback InCallFeedback { get; }
BoolFeedback IncomingCallFeedback { get; }
}
public interface IHasCallHistory
{
// Add recent calls list
}
public interface IHasDirectory
{
}
public interface IHasObtp
{
// Upcoming Meeting warning event
}
}

View File

@@ -11,7 +11,9 @@ namespace PepperDash.Essentials.Core
/// </summary>
public interface IHasSharing
{
void StartSharing();
void StopSharing();
BoolFeedback SharingSourceFeedback { get; }
StringFeedback SharingSourceFeedback { get; }
}
}