2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 #include <proto/intuition.h>
9 #include <intuition/classusr.h>
10 #include "datatypes_intern.h"
12 /*****************************************************************************
15 #include <proto/datatypes.h>
17 AROS_LH4(ULONG
, SetDTAttrsA
,
20 AROS_LHA(Object
* , o
, A0
),
21 AROS_LHA(struct Window
*, win
, A1
),
22 AROS_LHA(struct Requester
*, req
, A2
),
23 AROS_LHA(struct TagItem
*, attrs
, A3
),
26 struct Library
*, DataTypesBase
, 10, DataTypes
)
30 Set the attributes of a data type object.
34 o -- pointer to the data type object the attributes of which to set
35 win -- window that the object has been added to
36 attrs -- attributes to set (terminated with TAG_DONE)
37 tags are specified in <datatypes/datatypesclass.h>
49 GetDTAttrsA(), intuition.library/SetGadgetAttrsA(),
50 <datatypes/datatypesclass.h>
56 *****************************************************************************/
60 return SetGadgetAttrsA((struct Gadget
*)o
, win
, req
, attrs
);