New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / datatypes / freedtmethods.c
blob89aa3c479dfb5e05d5223f5d8e6b84337892e7ec
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include "datatypes_intern.h"
10 #include <proto/exec.h>
12 /*****************************************************************************
14 NAME */
16 AROS_LH1(VOID, FreeDTMethods,
18 /* SYNOPSIS */
19 AROS_LHA(APTR, methods, A0),
21 /* LOCATION */
22 struct Library *, DataTypesBase, 47, DataTypes)
24 /* FUNCTION
26 Free array obtained from CopyDTMethods() or CopyDTTriggerMethods().
28 INPUTS
30 methods -- array of methods; may be NULL
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 CopyDTMethods(), CopyDTTriggerMethods()
44 INTERNALS
46 HISTORY
48 2.8.99 SDuvan implemented
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
54 FreeVec(methods);
56 AROS_LIBFUNC_EXIT
57 } /* FreeDTMethods */