mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
Sending pictures through chat
This commit is contained in:
commit
eb2187dc25
1 changed files with 12 additions and 0 deletions
|
|
@ -5,6 +5,8 @@ public class LinphoneChatMessageImpl implements LinphoneChatMessage {
|
|||
private native void setUserData(long ptr);
|
||||
private native String getMessage(long ptr);
|
||||
private native LinphoneAddress getPeerAddress(long ptr);
|
||||
private native String getExternalBodyUrl(long ptr);
|
||||
private native void setExternalBodyUrl(long ptr, String url);
|
||||
|
||||
protected LinphoneChatMessageImpl(long aNativePtr) {
|
||||
nativePtr = aNativePtr;
|
||||
|
|
@ -35,4 +37,14 @@ public class LinphoneChatMessageImpl implements LinphoneChatMessage {
|
|||
public LinphoneAddress getPeerAddress() {
|
||||
return getPeerAddress(nativePtr);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExternalBodyUrl() {
|
||||
return getExternalBodyUrl(nativePtr);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExternalBodyUrl(String url) {
|
||||
setExternalBodyUrl(nativePtr, url);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue