diff --git a/coreapi/private.h b/coreapi/private.h index 69aab7412..a4a788732 100644 --- a/coreapi/private.h +++ b/coreapi/private.h @@ -1264,7 +1264,7 @@ void v_table_reference_destroy(VTableReference *ref); void _linphone_core_add_listener(LinphoneCore *lc, LinphoneCoreVTable *vtable, bool_t autorelease); #ifdef VIDEO_ENABLED -MSWebCam *linphone_call_get_video_device(const LinphoneCall *call); +LINPHONE_PUBLIC MSWebCam *linphone_call_get_video_device(const LinphoneCall *call); MSWebCam *get_nowebcam_device(); #endif bool_t linphone_core_lime_for_file_sharing_enabled(const LinphoneCore *lc); diff --git a/include/sal/sal.h b/include/sal/sal.h index e6ea68bdf..bceff451d 100644 --- a/include/sal/sal.h +++ b/include/sal/sal.h @@ -117,8 +117,8 @@ void sal_address_set_password(SalAddress *addr, const char *passwd); const char *sal_address_get_password(const SalAddress *addr); void sal_address_set_header(SalAddress *addr, const char *header_name, const char *header_value); -Sal * sal_init(); -void sal_uninit(Sal* sal); +LINPHONE_PUBLIC Sal * sal_init(); +LINPHONE_PUBLIC void sal_uninit(Sal* sal); void sal_set_user_pointer(Sal *sal, void *user_data); void *sal_get_user_pointer(const Sal *sal); @@ -568,7 +568,7 @@ void sal_set_callbacks(Sal *ctx, const SalCallbacks *cbs); int sal_listen_port(Sal *ctx, const char *addr, int port, SalTransport tr, int is_tunneled); int sal_get_listening_port(Sal *ctx, SalTransport tr); int sal_unlisten_ports(Sal *ctx); -int sal_transport_available(Sal *ctx, SalTransport t); +LINPHONE_PUBLIC int sal_transport_available(Sal *ctx, SalTransport t); void sal_set_dscp(Sal *ctx, int dscp); void sal_set_supported_tags(Sal *ctx, const char* tags); void sal_add_supported_tag(Sal *ctx, const char* tag);