2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: Remove a ConfigDev structure from the system.
8 #include "expansion_intern.h"
9 #include <proto/exec.h>
10 /*****************************************************************************
13 #include <proto/expansion.h>
15 AROS_LH1(void, RemConfigDev
,
18 AROS_LHA(struct ConfigDev
*, configDev
, A0
),
21 struct ExpansionBase
*, ExpansionBase
, 18, Expansion
)
24 This routine will remove the given ConfigDev from the list
25 of Configuration Devices in the system.
28 configDev - The ConfigDev structure to remove.
31 The ConfigDev structure will be removed from the systems list.
45 27-11-96 digulla automatically created from
46 expansion_lib.fd and clib/expansion_protos.h
48 *****************************************************************************/
54 ObtainConfigBinding();
55 Remove((struct Node
*)configDev
);
56 ReleaseConfigBinding();