Home  /  Autodocs  /  layers.library

NAME

DisposeLayerInfo
Return all memory for LayerInfo to memory pool

SYNOPSIS

DisposeLayerInfo( li )
a0

void DisposeLayerInfo( struct Layer_Info *);

FUNCTION

return LayerInfo and any other memory attached to this LayerInfo to memory allocator.

Note:
if you wish to delete the layers associated with this Layer_Info structure, remember to call DeleteLayer() for each of the layers before calling DisposeLayerInfo().

INPUTS

li
pointer to LayerInfo structure

EXAMPLE

-- delete the layers associated this Layer_Info structure --

DeleteLayer(li,simple_layer);
DeleteLayer(li,smart_layer);

-- see docs on DeleteLayer about deleting SuperBitMap layers --
my_super_bitmap_ptr = super_layer->SuperBitMap;
DeleteLayer(li,super_layer);

-- now dispose of the Layer_Info structure itself --
DisposeLayerInfo(li);

SEE ALSO

DeleteLayer(), <graphics/layers.h>