|
#include <stdlib.h>
|
|
#include "gui.h"
|
|
#include "node_settings.h"
|
|
#include "arguments.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
settingsLoad();
|
|
|
|
IupOpen(&argc, &argv);
|
|
|
|
IupShowXY(guiStart(), IUP_CENTER, IUP_CENTER);
|
|
IupMainLoop();
|
|
|
|
IupClose();
|
|
|
|
settingsFree();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|