Implement GNotification on OSX

https://bugzilla.gnome.org/show_bug.cgi?id=747146
This commit is contained in:
Patrick Griffis
2015-03-25 15:51:29 -04:00
committed by Matthias Clasen
parent 89058e8a9b
commit 36e093a31a
4 changed files with 292 additions and 2 deletions

View File

@@ -911,6 +911,10 @@ extern GType g_fdo_notification_backend_get_type (void);
extern GType g_gtk_notification_backend_get_type (void);
#endif
#ifdef HAVE_COCOA
extern GType g_cocoa_notification_backend_get_type (void);
#endif
#ifdef G_PLATFORM_WIN32
#include <windows.h>
@@ -1084,6 +1088,9 @@ _g_io_modules_ensure_loaded (void)
g_type_ensure (g_fdo_notification_backend_get_type ());
g_type_ensure (g_gtk_notification_backend_get_type ());
#endif
#ifdef HAVE_COCOA
g_type_ensure (g_cocoa_notification_backend_get_type ());
#endif
#ifdef G_OS_WIN32
g_type_ensure (_g_winhttp_vfs_get_type ());
#endif