#include #include #include "mainwindow.h" int main(int argc, char *argv[]) { struct mainWindow *mainWindow; gtk_init(&argc, &argv); mainWindow = mainWindow_new(); gtk_widget_show(mainWindow->mainWindow); gtk_main(); return 0; }