From 605a88e14bfc54e652b3339a0836fc8287c4fb30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Thu, 15 Oct 2015 21:33:44 +0300 Subject: coco: fix missing prototypes warning --- src/themes/coco/coco-theme.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index 7f61561..b724f43 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -69,6 +69,23 @@ enum URGENCY_CRITICAL }; +gboolean theme_check_init(unsigned int major_ver, unsigned int minor_ver, + unsigned int micro_ver); +void get_theme_info(char **theme_name, char **theme_ver, char **author, + char **homepage); +GtkWindow* create_notification(UrlClickedCb url_clicked); +void set_notification_text(GtkWindow *nw, const char *summary, + const char *body); +void set_notification_icon(GtkWindow *nw, GdkPixbuf *pixbuf); +void set_notification_arrow(GtkWidget *nw, gboolean visible, int x, int y); +void add_notification_action(GtkWindow *nw, const char *text, const char *key, + ActionInvokedCb cb); +void clear_notification_actions(GtkWindow *nw); +void move_notification(GtkWidget *nw, int x, int y); +void set_notification_timeout(GtkWindow *nw, glong timeout); +void set_notification_hints(GtkWindow *nw, GHashTable *hints); +void notification_tick(GtkWindow *nw, glong remaining); + #define M_PI 3.14159265358979323846 #define STRIPE_WIDTH 32 #define WIDTH 300 -- cgit v1.2.1