namespace ui {
namespace alarm {
+/*
// Compute a-b in microseconds
static long timediff(Posix.timeval* a, Posix.timeval* b)
{
return (a->tv_sec - b->tv_sec) * 1000000 + (a->tv_usec - b->tv_usec);
}
+*/
public class AlarmNotifier : zavai.Resource, Gtk.Window
{