~jconti/recent-notifications/trunk

« back to all changes in this revision

Viewing changes to indicator/test-notify-monitor.c

  • Committer: Jason Conti
  • Date: 2011-05-18 21:17:09 UTC
  • Revision ID: jason.conti@gmail.com-20110518211709-inr5d289rvcabeor
Removing the indicator directory. indicator-notifications is now hosted at lp:recent-notifications/indicator. Also cleaned up the root directory a bit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <stdlib.h>
2
 
#include <gtk/gtk.h>
3
 
 
4
 
#include "notify-monitor.h"
5
 
 
6
 
int main(int argc, char *argv[])
7
 
{
8
 
  NotifyMonitor *monitor;
9
 
 
10
 
  gtk_init(&argc, &argv);
11
 
 
12
 
  monitor = notify_monitor_new();
13
 
 
14
 
  gtk_main();
15
 
 
16
 
  exit(0);
17
 
}