2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 #include <proto/intuition.h>
9 #include <intuition/intuition.h>
10 #include "datatypes_intern.h"
12 /*****************************************************************************
15 #include <proto/datatypes.h>
17 AROS_LH4(void, RefreshDTObjectA
,
20 AROS_LHA(Object
*, object
, A0
),
21 AROS_LHA(struct Window
*, window
, A1
),
22 AROS_LHA(struct Requester
*, req
, A2
),
23 AROS_LHA(struct TagItem
*, attrs
, A3
),
26 struct Library
*, DataTypesBase
, 13, DataTypes
)
30 Refresh a specified object sending the GM_RENDER message to the object.
34 object -- pointer to the data type object to refresh; may be NULL
35 window -- pointer to the window; may be NULL
37 attrs -- additional attributes (currently none defined)
49 AddDTObject(), RemoveDTObject(), intuition.library/RefreshGList()
55 *****************************************************************************/
59 if(object
== NULL
|| window
== NULL
)
62 RefreshGList((struct Gadget
*)object
, window
, req
, 1);
65 } /* RefreshDTObjectA */