Autodoc headers unified to avoid misinterpretation by the build script.
[cake.git] / rom / intuition / setattrsa.c
blobbab5bc7f682dc7a497cf4f6cbd060782c87874a6
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include <proto/alib.h>
8 #include <proto/utility.h>
9 #include "intuition_intern.h"
11 /*****************************************************************************
13 NAME */
14 #include <intuition/classusr.h>
15 #include <proto/intuition.h>
17 AROS_LH2(ULONG, SetAttrsA,
19 /* SYNOPSIS */
20 AROS_LHA(APTR , object, A0),
21 AROS_LHA(struct TagItem *, tagList, A1),
23 /* LOCATION */
24 struct IntuitionBase *, IntuitionBase, 108, Intuition)
26 /* FUNCTION
27 Changes several attributes of an object at the same time. How the
28 object interprets the new attributes depends on the class.
30 INPUTS
31 object - Change the attributes of this object
32 tagList - This is a list of attribute/value-pairs
34 RESULT
35 Depends in the class. For gadgets, this value is non-zero if
36 they need redrawing after the values have changed. Other classes
37 will define other return values.
39 NOTES
40 This function sends OM_SET to the object.
42 EXAMPLE
44 BUGS
46 SEE ALSO
47 NewObject(), DisposeObject(), GetAttr(), MakeClass(),
48 "Basic Object-Oriented Programming System for Intuition" and
49 "boopsi Class Reference" Dokument.
51 INTERNALS
53 *****************************************************************************/
55 AROS_LIBFUNC_INIT
57 struct opSet ops;
58 ULONG result;
60 DEBUG_SETATTRS(dprintf("SetAttrs[%x]: Object 0x%lx Tags 0x%lx\n",
61 &ops, object, tagList));
63 SANITY_CHECKR(object,FALSE)
64 SANITY_CHECKR(tagList,FALSE)
66 #if 0
67 if (tagList)
69 struct TagItem *state = tagList;
70 struct TagItem *tag;
72 while (tag = NextTagItem(&state))
74 dprintf("\t%08lx %08lx\n", tag->ti_Tag, tag->ti_Data);
77 #endif
79 ops.MethodID = OM_SET;
80 ops.ops_AttrList = tagList;
81 ops.ops_GInfo = NULL;
83 result = DoMethodA (object, (Msg)&ops);
85 DEBUG_SETATTRS(dprintf("SetAttrs[%x]: Return 0x%lx\n", &ops, result));
87 return result;
89 AROS_LIBFUNC_EXIT
90 } /* SetAttrsA() */