#include <exec/types.h>
#include <exec/ports.h>

#include "/defs.h"
#include "/utility.h"

struct lPrefObject { USHORT Mode; };

VOID defaults( struct bMessage *Msg )
{
	static struct lPrefObject lPO = { 0 };

	Msg->bm_Mod = getTopScreenMode();
	Msg->bm_Dep = getTopScreenDepth();

	Msg->bm_Info = "LineBlank Module";
	Msg->bm_Data = ( UBYTE * )( &lPO );
}
