From f820dba4c14167d43ae1fc6f5ff6034d8ec17685 Mon Sep 17 00:00:00 2001 From: "mk5004.lee" Date: Thu, 23 Apr 2020 16:17:21 +0900 Subject: [PATCH] Add missing EXPORT_API macro Change-Id: Ica77697ec31dc462482d7f8c51bd02b557beffb6 Signed-off-by: mk5004.lee --- notification-ex/stub.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification-ex/stub.cc b/notification-ex/stub.cc index 804af1b..8f5db3f 100644 --- a/notification-ex/stub.cc +++ b/notification-ex/stub.cc @@ -3702,7 +3702,7 @@ extern "C" EXPORT_API int noti_ex_item_icon_create(noti_ex_item_h *handle, return NOTI_EX_ERROR_NONE; } -int noti_ex_item_icon_get_icon_path(noti_ex_item_h handle, char **icon_path) { +extern "C" EXPORT_API int noti_ex_item_icon_get_icon_path(noti_ex_item_h handle, char **icon_path) { if (handle == nullptr || icon_path == nullptr) { LOGE("Invalid parameter"); return NOTI_EX_ERROR_INVALID_PARAMETER; -- 2.7.4