Skip to content

Instantly share code, notes, and snippets.

@c0r0n3r
Created April 3, 2013 21:01
Show Gist options
  • Save c0r0n3r/5305268 to your computer and use it in GitHub Desktop.
Save c0r0n3r/5305268 to your computer and use it in GitHub Desktop.
#include <gtk/gtk.h>
int
main(int argc, char *argv[])
{
GtkWidget *window;
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect(G_OBJECT(window), "delete-event",
G_CALLBACK(gtk_main_quit), NULL);
gtk_widget_show (window);
gtk_main ();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment