From 9a8bb85ff3872232768196b0ba1b9997c2eb7123 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 19 Dec 2016 12:06:12 +0100 Subject: [PATCH] Forgot one function in previous commit. --- coreapi/im_encryption_engine.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/coreapi/im_encryption_engine.c b/coreapi/im_encryption_engine.c index b9699af4c..c0afa3df5 100644 --- a/coreapi/im_encryption_engine.c +++ b/coreapi/im_encryption_engine.c @@ -90,6 +90,10 @@ void linphone_im_encryption_engine_set_user_data(LinphoneImEncryptionEngine *ime imee->user_data = data; } +LinphoneCore * linphone_im_encryption_engine_get_core(LinphoneImEncryptionEngine *imee) { + return imee->lc; +} + LinphoneImEncryptionEngineCbs* linphone_im_encryption_engine_get_callbacks(const LinphoneImEncryptionEngine *imee) { return imee->callbacks; }