/*
** JL dyndns v1.0 (JustLinux Dynamic DNS Client) C Source Code
** coded by Palpatine <palpa@garanti.net.tr>
**
** Legere et non intelligere neglegere est!
*/

long __stack = 16384;

#include <stdlib.h>

#include <proto/exec.h>

#include "prefs.h"
struct prfstr *myprf;
#include "gui.h"
struct guistr *mygui;


int main(int argc, char *argv[]) {

	static struct prfstr prfdata;
	static struct guistr guidata;

	myprf = &prfdata;
	mygui = &guidata;

	prf_Setup(argc,argv);


	if (gui_Setup() == 0) {
		gui_Loop(0);
		gui_Free();
	}


	prf_Free();
	return(0);

}
