2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include <proto/layers.h>
8 #include "intuition_intern.h"
10 /*****************************************************************************
13 #include <proto/intuition.h>
15 AROS_LH3(void, RefreshGadgets
,
18 AROS_LHA(struct Gadget
*, gadgets
, A0
),
19 AROS_LHA(struct Window
*, window
, A1
),
20 AROS_LHA(struct Requester
*, requester
, A2
),
23 struct IntuitionBase
*, IntuitionBase
, 37, Intuition
)
26 Refreshes all gadgets starting at the specified gadget.
29 gadgets - The first gadget to be refreshed
30 window - The gadget must be in this window
31 requester - If any gadget has GTYP_REQGADGET set, this must
32 point to a valid Requester. Otherwise the value is ignored.
40 // Refresh all gadgets of a window
41 RefreshGadgets (win->FirstGadget, win, NULL);
50 *****************************************************************************/
54 RefreshGList (gadgets
, window
, requester
, ~0);
57 } /* RefreshGadgets */