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