Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
3a4c17df
Commit
3a4c17df
authored
Jun 12, 2012
by
Sylvain Berfini
🐮
Browse files
Added getStatus method for LinphoneCallLog
parent
02130419
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
coreapi/linphonecore_jni.cc
coreapi/linphonecore_jni.cc
+5
-0
No files found.
coreapi/linphonecore_jni.cc
View file @
3a4c17df
...
@@ -1119,6 +1119,11 @@ extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv* env
...
@@ -1119,6 +1119,11 @@ extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv* env
,
jlong
ptr
)
{
,
jlong
ptr
)
{
return
(
jlong
)((
LinphoneCallLog
*
)
ptr
)
->
from
;
return
(
jlong
)((
LinphoneCallLog
*
)
ptr
)
->
from
;
}
}
extern
"C"
int
Java_org_linphone_core_LinphoneCallLogImpl_getStatus
(
JNIEnv
*
env
,
jobject
thiz
,
jlong
ptr
)
{
return
(
jlong
)((
LinphoneCallLog
*
)
ptr
)
->
status
;
}
extern
"C"
jlong
Java_org_linphone_core_LinphoneCallLogImpl_getTo
(
JNIEnv
*
env
extern
"C"
jlong
Java_org_linphone_core_LinphoneCallLogImpl_getTo
(
JNIEnv
*
env
,
jobject
thiz
,
jobject
thiz
,
jlong
ptr
)
{
,
jlong
ptr
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment