Added missing properties.
[cake.git] / rom / expansion / expansion_init.c
blobc4a44acb9b31f7d40c878c12fed7030a684f8610
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Expansion Resident and initialization.
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <exec/lists.h>
11 #include <exec/alerts.h>
12 #include <exec/libraries.h>
13 #include <exec/resident.h>
14 #include <exec/execbase.h>
15 #include <aros/symbolsets.h>
16 #include <proto/exec.h>
17 #include <proto/expansion.h>
19 #include "expansion_intern.h"
20 #include LC_LIBDEFS_FILE
23 static int ExpansionInit(LIBBASETYPEPTR LIBBASE)
25 NEWLIST(&LIBBASE->eb_MountList);
27 /* See what expansion hardware we can detect. */
28 #if 0
29 ConfigChain();
30 #endif
32 return TRUE;
35 ADD2INITLIB(ExpansionInit, 0);