New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / hyperlayers / thinlayerinfo.c
blob202bc382ab56467ceaf4b242deae3eafb6a27ae3
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include <aros/libcall.h>
9 #include <graphics/layers.h>
10 #include "basicfuncs.h"
12 #define DEBUG 0
13 #include <aros/debug.h>
14 #undef kprintf
16 /*****************************************************************************
18 NAME */
19 #include <proto/layers.h>
21 AROS_LH1(void, ThinLayerInfo,
23 /* SYNOPSIS */
24 AROS_LHA(struct Layer_Info *, li, A0),
26 /* LOCATION */
27 struct LayersBase *, LayersBase, 27, Layers)
29 /* FUNCTION
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
46 27-11-96 digulla automatically created from
47 layers_lib.fd and clib/layers_protos.h
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
52 AROS_LIBBASE_EXT_DECL(struct LayersBase *,LayersBase)
54 D(bug("ThinLayerInfo(li @ $%lx)\n", li));
56 _FreeExtLayerInfo(li, LayersBase);
58 li->Flags &= ~NEWLAYERINFO_CALLED;
60 AROS_LIBFUNC_EXIT
61 } /* ThinLayerInfo */