gtk2/examples/application1/main.c
Matthias Clasen 99203f09f2 Getting started: Coding style updates
Make the new examples use GTK+ coding style.
2013-07-24 07:31:05 -04:00

9 lines
161 B
C

#include <gtk/gtk.h>
#include <exampleapp.h>
int
main (int argc, char *argv[])
{
return g_application_run (G_APPLICATION (example_app_new ()), argc, argv);
}