NetworkManager/panel-applet/main.c

23 lines
359 B
C
Raw Normal View History

#include <gtk/gtk.h>
#include <libgnomeui/libgnomeui.h>
#include "NMWirelessApplet.h"
int
main (int argc, char *argv[])
{
NMWirelessApplet *nmwa;
gnome_program_init ("NMWirelessApplet", VERSION, LIBGNOMEUI_MODULE,
argc, argv,
GNOME_PARAM_NONE);
nmwa = nmwa_new ();
gtk_widget_show_all (GTK_WIDGET (nmwa));
gtk_main ();
return 0;
}