mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
Fix build with Visual Studio.
This commit is contained in:
parent
0eba7d71c7
commit
c34316fd1e
1 changed files with 9 additions and 8 deletions
|
|
@ -33,14 +33,6 @@ typedef struct __LinphoneStatusIconDesc _LinphoneStatusIconDesc;
|
|||
static LinphoneStatusIcon *_linphone_status_icon_instance = NULL;
|
||||
static const _LinphoneStatusIconDesc *_linphone_status_icon_selected_desc = NULL;
|
||||
static GSList *_linphone_status_icon_impls = NULL;
|
||||
#if STATUS_NOTIFIER_IS_USABLE
|
||||
static const _LinphoneStatusIconDesc _linphone_status_icon_impl_status_notifier;
|
||||
#endif
|
||||
#ifdef HAVE_GTK_OSX
|
||||
static const _LinphoneStatusIconDesc _linphone_status_icon_impl_gtkosx_app_desc;
|
||||
#else
|
||||
static const _LinphoneStatusIconDesc _linphone_status_icon_impl_gtk_desc;
|
||||
#endif
|
||||
|
||||
|
||||
struct _LinphoneStatusIconParams {
|
||||
|
|
@ -232,6 +224,15 @@ void _linphone_status_icon_init_cb(const _LinphoneStatusIconDesc *desc, void *us
|
|||
g_free(ctx);
|
||||
}
|
||||
|
||||
#if STATUS_NOTIFIER_IS_USABLE
|
||||
static const _LinphoneStatusIconDesc _linphone_status_icon_impl_status_notifier;
|
||||
#endif
|
||||
#ifdef HAVE_GTK_OSX
|
||||
static const _LinphoneStatusIconDesc _linphone_status_icon_impl_gtkosx_app_desc;
|
||||
#else
|
||||
static const _LinphoneStatusIconDesc _linphone_status_icon_impl_gtk_desc;
|
||||
#endif
|
||||
|
||||
void _linphone_status_icon_create_implementations_list(void) {
|
||||
#if STATUS_NOTIFIER_IS_USABLE
|
||||
_linphone_status_icon_impls = g_slist_prepend(_linphone_status_icon_impls, (void *)&_linphone_status_icon_impl_status_notifier);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue