~ubuntu-core-dev/update-notifier/ubuntu

208 by Michael Vogt
* -Wall clean now
1
#include <gtk/gtk.h>
2
#include <libnotify/notify.h>
3
46 by mvo
* added missing files
4
5
gboolean update_check(TrayApplet *un);
6
void update_tray_icon_init(TrayApplet *un);
208 by Michael Vogt
* -Wall clean now
7
340 by Michael Vogt
* code cleanups
8
void update_apt_is_running(TrayApplet *ta, gboolean is_running);
9
208 by Michael Vogt
* -Wall clean now
10
typedef struct _UpdateTrayAppletPrivate UpdateTrayAppletPrivate;
11
struct _UpdateTrayAppletPrivate 
12
{
13
   GConfClient* gconf;
236 by Michael Vogt
* src/update-notifier.h:
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
208 by Michael Vogt
* -Wall clean now
17
   gboolean apt_is_running;
18
   NotifyNotification *active_notification;
423 by Michael Vogt
* src/update.{cc,h}:
19
   
20
   int num_upgrades;
21
   int num_security;
208 by Michael Vogt
* -Wall clean now
22
};