Commit cb7e6727 authored by Simon Morlat's avatar Simon Morlat
Browse files

add new LinphoneCallState in java

parent 6fdd6a3e
No related merge requests found
Showing with 5 additions and 1 deletion
......@@ -110,7 +110,11 @@ public interface LinphoneCall {
* The remote accepted the call update initiated by us
*/
public static final State CallUpdated = new State(17, "CallUpdated");
/**
* The call object is now released.
*/
public static final State CallReleased = new State(18,"CallReleased");
private State(int value,String stringValue) {
mValue = value;
......
Supports Markdown
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