2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 #include <aros/libcall.h>
9 #include <proto/exec.h>
12 #include <aros/debug.h>
15 /*****************************************************************************
18 #include <proto/layers.h>
19 #include "layers_intern.h"
20 #include "basicfuncs.h"
22 AROS_LH1(void, DisposeLayerInfo
,
25 AROS_LHA(struct Layer_Info
*, li
, A0
),
28 struct LayersBase
*, LayersBase
, 25, Layers
)
47 27-11-96 digulla automatically created from
48 layers_lib.fd and clib/layers_protos.h
50 *****************************************************************************/
53 AROS_LIBBASE_EXT_DECL(struct LayersBase
*,LayersBase
)
55 D(bug("DisposeLayerInfo(li @ $%lx)\n", li
));
57 _FreeExtLayerInfo(li
, LayersBase
);
59 FreeMem(li
, sizeof(struct Layer_Info
));
62 } /* DisposeLayerInfo */