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

« back to all changes in this revision

Viewing changes to src/hooks.h

  • Committer: Michael Vogt
  • Date: 2008-11-10 18:04:02 UTC
  • Revision ID: michael.vogt@ubuntu.com-20081110180402-lvolg0ct1xr4vqoi
* debian/update-notifier-common.install:
  - move apt-check, apt-cdrom-check and cdromdistupgrade
    into update-notifier-common

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define _HOOKS_H_
3
3
 
4
4
 
 
5
// evil HACK
 
6
extern int HOOK_DEBUG;
5
7
 
6
8
gboolean check_update_hooks(TrayApplet *un);
7
9
void hook_tray_icon_init(TrayApplet *un);
13
15
{
14
16
   char *filename;
15
17
   time_t mtime;
16
 
   guint8 md5[16];
 
18
   gchar md5[16];
17
19
   gboolean cmd_run;
18
20
   gboolean seen;
19
21
};
22
24
typedef struct _HookTrayAppletPrivate HookTrayAppletPrivate;
23
25
struct _HookTrayAppletPrivate
24
26
{
25
 
   GtkBuilder *gtk_builder;
 
27
   GladeXML *glade_xml;
26
28
 
27
29
   // the list of all hook files
28
30
   GList *hook_files;