fixed some clang warnings
[k8lowj.git] / src / throbber.h
blob712b54c8fec4257eea60b8d6ee4ba8bc0499ff12
1 /* logjam - a GTK client for LiveJournal.
2 * Copyright (C) 2000-2003 Evan Martin <evan@livejournal.com>
3 */
4 #ifndef __LOGJAM_THROBBER_H__
5 #define __LOGJAM_THROBBER_H__
8 #define THROBBER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), throbber_get_type(), Throbber))
10 typedef struct _Throbber Throbber;
12 extern GType throbber_get_type (void);
13 extern GtkWidget *throbber_new (void);
15 extern void throbber_start (Throbber *t);
16 extern void throbber_stop (Throbber *t);
17 extern void throbber_reset (Throbber *t);
20 #endif