aboutsummaryrefslogtreecommitdiffstats
path: root/xenstore-gtk.c
blob: 3aaa229057405b01e81cba8364776e65e37b2a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <locale.h>
#include <signal.h>

#include <gtk/gtk.h>

#include "xenviews.h"

/* ------------------------------------------------------------------ */

int
main(int argc, char *argv[])
{
    setlocale(LC_ALL,"");
    gtk_init(&argc, &argv);

    xenstore_create_window();
    gtk_widget_show_all(xs_toplevel);

    gtk_main();
    fprintf(stderr,"bye...\n");
    exit(0);
}