2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: FreeConfigDev() - Free a ConfigDev structure.
8 #include "expansion_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
14 #include <proto/expansion.h>
16 AROS_LH1(void, FreeConfigDev
,
19 AROS_LHA(struct ConfigDev
*, configDev
, A0
),
22 struct ExpansionBase
*, ExpansionBase
, 14, Expansion
)
25 This function will free a ConfigDev structure, as allocated
26 by the AllocConfigDev() function.
29 configDev - The ConfigDev to free.
32 The memory will be returned to the system.
46 27-11-96 digulla automatically created from
47 expansion_lib.fd and clib/expansion_protos.h
49 *****************************************************************************/
54 FreeMem(configDev
, sizeof(struct ConfigDev
));