From a186e1670d9a01e5dfe0000a73389a2f3ed3976a Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 11 Apr 2013 14:10:41 +0200 Subject: [PATCH] Add exports. --- coreapi/linphonecore.h | 2 +- coreapi/lpconfig.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index ede4008b1..e9d29de99 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -936,7 +936,7 @@ LINPHONE_PUBLIC LinphoneCore *linphone_core_new(const LinphoneCoreVTable *vtable * callbacks) using linphone_core_get_user_data(). * @see linphone_core_new **/ -LinphoneCore *linphone_core_new_with_config(const LinphoneCoreVTable *vtable, struct _LpConfig *config, void *userdata); +LINPHONE_PUBLIC LinphoneCore *linphone_core_new_with_config(const LinphoneCoreVTable *vtable, struct _LpConfig *config, void *userdata); /* function to be periodically called in a main loop */ /* For ICE to work properly it should be called every 20ms */ diff --git a/coreapi/lpconfig.h b/coreapi/lpconfig.h index 02a4fe3c8..b3d2aa892 100644 --- a/coreapi/lpconfig.h +++ b/coreapi/lpconfig.h @@ -72,7 +72,7 @@ extern "C" { * @param filename the filename of the config file to read to fill the instantiated LpConfig * @see lp_config_new_with_factory */ -LpConfig * lp_config_new(const char *filename); +LINPHONE_PUBLIC LpConfig * lp_config_new(const char *filename); /** * Instantiates a LpConfig object from a user config file and a factory config file. @@ -86,7 +86,7 @@ LpConfig * lp_config_new(const char *filename); * Therefore the configuration parameters defined in the user config file will be overwritten by the parameters * defined in the factory config file. */ -LpConfig * lp_config_new_with_factory(const char *config_filename, const char *factory_config_filename); +LINPHONE_PUBLIC LpConfig * lp_config_new_with_factory(const char *config_filename, const char *factory_config_filename); int lp_config_read_file(LpConfig *lpconfig, const char *filename); /**