Skip to content

Instantly share code, notes, and snippets.

@khajavi
Created April 20, 2013 09:48
Show Gist options
  • Save khajavi/5425438 to your computer and use it in GitHub Desktop.
Save khajavi/5425438 to your computer and use it in GitHub Desktop.
GDK initialization and exit
#include <gdk/gdk.h>
int main( int argc, char* argv[] ) {
gdk_init( &argc, &argv );
gdk_exit( 0 );
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment