Skip to content

Instantly share code, notes, and snippets.

@EarlOfEgo
Created May 14, 2012 14:30
Show Gist options
  • Save EarlOfEgo/2694328 to your computer and use it in GitHub Desktop.
Save EarlOfEgo/2694328 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);
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