view src/gtkmm-test.cpp @ 1235:7e9f957b3239

package openal: combine patch files, portability fixes, and add test program
author Tony Theodore <tonyt@logyst.com>
date Fri, 01 Oct 2010 02:03:08 +1000
parents 72006e4e493a
children
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <gtkmm/window.h>
#include <gtkmm/main.h>

int main(int argc, char *argv[])
{
    Gtk::Main g(argc, argv);

    Gtk::Window window;
    window.set_title("Test App mingw-cross-env");
    window.set_default_size(200, 200);
    window.show_all();
    g.run(window);
    return 0;
}