#include <exec/types.h>
#include <intuition/intuition.h>
#include <graphics/text.h>

#include "/defs.h"

struct cPrefObject {
	LONG Speed;
	LONG Cycle;
	LONG Secs;
	LONG Military;
	struct TextAttr Font;
	BYTE fName[64];
};

VOID defaults( struct bMessage *Msg )
{
	static struct cPrefObject cPO = { "topaz.font", 11, 0, 0, 0 };

	cPO.Font.ta_YSize = 11;
	cPO.Font.ta_Style = FS_NORMAL;
	cPO.Font.ta_Flags = FPB_ROMFONT;

	Msg->bm_Info = "Floating Clock Module";
	Msg->bm_Data = ( UBYTE * )( &cPO );

	Msg->bm_Dep = 1;
	Msg->bm_Mod = INVALID_ID;
}
