diff options
Diffstat (limited to 'src/daemon/stack.h')
-rw-r--r-- | src/daemon/stack.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/daemon/stack.h b/src/daemon/stack.h index a196e1f..5f478b8 100644 --- a/src/daemon/stack.h +++ b/src/daemon/stack.h @@ -38,7 +38,11 @@ typedef enum { typedef struct _NotifyStack NotifyStack; +#if GTK_CHECK_VERSION (3, 22, 0) +NotifyStack* notify_stack_new(NotifyDaemon* daemon, GdkScreen* screen, GdkMonitor *monitor, NotifyStackLocation stack_location); +#else NotifyStack* notify_stack_new(NotifyDaemon* daemon, GdkScreen* screen, guint monitor, NotifyStackLocation stack_location); +#endif void notify_stack_destroy(NotifyStack* stack); void notify_stack_set_location(NotifyStack* stack, NotifyStackLocation location); |