From 21c32fb781b080274433bf60d7b4d871c823f047 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 20 Oct 2016 14:31:33 +0200 Subject: [PATCH] Fix missing symbol exports for Windows build. --- coreapi/vcard_stubs.c | 1 + include/sal/sal.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/coreapi/vcard_stubs.c b/coreapi/vcard_stubs.c index dbb5533d0..878d51a66 100644 --- a/coreapi/vcard_stubs.c +++ b/coreapi/vcard_stubs.c @@ -18,6 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "vcard.h" +#include "linphonecore.h" struct _LinphoneVcardContext { void *user_data; diff --git a/include/sal/sal.h b/include/sal/sal.h index 57ae2b7ec..1a8d1b987 100644 --- a/include/sal/sal.h +++ b/include/sal/sal.h @@ -755,7 +755,7 @@ void sal_call_send_vfu_request(SalOp *h); int sal_call_is_offerer(const SalOp *h); int sal_call_notify_refer_state(SalOp *h, SalOp *newcall); bool_t sal_call_compare_op(const SalOp *op1, const SalOp *op2); -bool_t sal_call_dialog_request_pending(const SalOp *op); +LINPHONE_PUBLIC bool_t sal_call_dialog_request_pending(const SalOp *op); const char * sal_call_get_local_tag(SalOp *op); const char * sal_call_get_remote_tag(SalOp *op); void sal_call_set_replaces(SalOp *op, const char *call_id, const char *from_tag, const char *to_tag);