2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include <proto/intuition.h>
10 #include <intuition/classusr.h>
11 #include "datatypes_intern.h"
13 /*****************************************************************************
16 #include <proto/datatypes.h>
18 AROS_LH1(ULONG
*, GetDTMethods
,
21 AROS_LHA(Object
*, object
, A0
),
24 struct Library
*, DataTypesBase
, 17, DataTypes
)
28 Get a list of the methods an object supports.
32 object -- pointer to a data type object
36 Pointer to a ULONG array which is terminated ~0; the array is only
37 valid until the object is disposed of.
53 *****************************************************************************/
64 opGet
.MethodID
= OM_GET
;
65 opGet
.opg_AttrID
= DTA_Methods
;
66 opGet
.opg_Storage
= (IPTR
*)&retval
;
68 if(!DoMethodA(object
, (Msg
)&opGet
))