mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-29 17:29:20 +00:00
fix previous commit
This commit is contained in:
parent
b57f8b1526
commit
c7f8b5aae4
1 changed files with 12 additions and 0 deletions
|
|
@ -118,5 +118,17 @@ public class LinphoneCallParamsImpl implements LinphoneCallParams {
|
|||
public int getPrivacy() {
|
||||
return getPrivacy(nativePtr);
|
||||
}
|
||||
|
||||
private native void setSessionName(long nativePtr, String name);
|
||||
@Override
|
||||
public void setSessionName(String name) {
|
||||
setSessionName(nativePtr,name);
|
||||
}
|
||||
|
||||
private native String getSessionName(long nativePtr);
|
||||
@Override
|
||||
public String getSessionName() {
|
||||
return getSessionName(nativePtr);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue