From 372df24dd624ce5b70ceedcbf7150895fae26815 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 9 Apr 2013 18:15:58 +0200 Subject: [PATCH] Add missing exports. --- coreapi/linphonecore.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index ed128a464..7bb466ad6 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -892,7 +892,7 @@ typedef void * (*LinphoneWaitingCallback)(struct _LinphoneCore *lc, void *contex * * @param logfunc The function pointer of the log handler. */ -void linphone_core_set_log_handler(OrtpLogFunc logfunc); +LINPHONE_PUBLIC void linphone_core_set_log_handler(OrtpLogFunc logfunc); /** * Define a log file. * @@ -902,7 +902,7 @@ void linphone_core_set_log_handler(OrtpLogFunc logfunc); * * @param file A pointer to the FILE structure of the file to write to. */ -void linphone_core_set_log_file(FILE *file); +LINPHONE_PUBLIC void linphone_core_set_log_file(FILE *file); /** * Define the log level. * @@ -913,10 +913,10 @@ void linphone_core_set_log_file(FILE *file); * * @param loglevel A bitmask of the log levels to set. */ -void linphone_core_set_log_level(OrtpLogLevel loglevel); +LINPHONE_PUBLIC void linphone_core_set_log_level(OrtpLogLevel loglevel); LINPHONE_PUBLIC void linphone_core_enable_logs(FILE *file); LINPHONE_PUBLIC void linphone_core_enable_logs_with_cb(OrtpLogFunc logfunc); -void linphone_core_disable_logs(void); +LINPHONE_PUBLIC void linphone_core_disable_logs(void); const char *linphone_core_get_version(void); const char *linphone_core_get_user_agent_name(void); const char *linphone_core_get_user_agent_version(void);