#define SIZE					81
#define RECALL				"Recall V1.3"
#define RECALLPREFS		"RecallPrefs V1.3"
#define CONFIGHEADER	"Recall V1.x © Ketil Hunn"

#define prefsdir	"ENVARC:"
#define prefsname	"Recall.prefs"

char const *version = "\0$VER: Recall 1.3 (30.05.93)";
char *recall				="Recall V1.3";
char *recallprefs		="RecallPrefs V1.3";

struct Config {
	char	header[25];
	BOOL	CreateIcons,CentreRequesters;
	int		Dateformat,Sortby;
};

struct TextNode {
	char text[69];
};

struct EventNode {
	struct Node nn_Node;
	char				eventname[30];
	short				prefixdate;
	char				date[7];
	char				sort[7];
	short				prefixtime;
	int					days;
	int					repeat;
	char				time[6];
	short				type;
	short				frequent;
	short				calctype;
	short				DD;
	short				MM;
	short				YY;
	BOOL				ask;
	short				lines;
	struct List	*textlist;
};
	
#define EVENTNODE_ID   100

ULONG normaltag[]={	RTEZ_ReqTitle,(ULONG)RECALL,
										TAG_END};

ULONG centretag[]={	RTEZ_ReqTitle,(ULONG)RECALL,
										RT_ReqPos, REQPOS_CENTERSCR,
										TAG_END};
