2
#include <libnotify/notify.h>
5
gboolean update_check(TrayApplet *un);
6
void update_tray_icon_init(TrayApplet *un);
8
void update_apt_is_running(TrayApplet *ta, gboolean is_running);
10
typedef struct _UpdateTrayAppletPrivate UpdateTrayAppletPrivate;
11
struct _UpdateTrayAppletPrivate
14
// this is a permanent marker if apt is runing currently
15
// (the difference to the one in update-notifier.h is that
16
// the one in here is "global" and not "per-timeslice" information
17
gboolean apt_is_running;
18
NotifyNotification *active_notification;