home *** CD-ROM | disk | FTP | other *** search
- #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 = 1;
-
- bMsg->bm_Info = "Flying Toaster Module";
- bMsg->bm_Data = ( UBYTE * )( &mPO );
- }
-