#include <exec/types.h>
#include <intuition/intuition.h>
#include "/defs.h"

struct mPrefObject {
	LONG	Objects;
	LONG	Speed;
};

VOID defaults( struct bMessage *bMsg )
{
	static struct mPrefObject mPO = { 20L, 2L };

	bMsg->bm_Mod = INVALID_ID;
	bMsg->bm_Dep = 4;

	bMsg->bm_Info = "Flying Toaster Module";
	bMsg->bm_Data = ( UBYTE * )( &mPO );
}
