#ifndef GUI_FILE_H
#define GUI_FILE_H

/* Types */
#include <exec/types.h>
#include "fax_cat.h"

struct ObjApp
{
	APTR	App;
	APTR	Fax_Win;
	APTR	MN_label_1;
	APTR	BT_Printer;
	APTR	BT_Spooler;
	APTR	BT_Logbook;
	APTR	BT_Config;
	APTR	BT_Desktop;
	APTR	BT_Phone;
	APTR	BT_View;
	APTR	BT_End;
	APTR	Info_Win;
	APTR	TX_ueber;
	APTR	BT_OK;
	char *	STR_TX_ueber;
};

#define BT_PRINTER 1
#define BT_SPOOLER 2
#define BT_LOGBOOK 3
#define BT_CONFIG 4
#define BT_DESK 5
#define BT_PHONE 6
#define BT_VIEW 7

extern struct ObjApp * CreateApp(void);
extern void DisposeApp(struct ObjApp *);

#endif
