2 Copyright © 1995-2007, 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
41 // Refresh all gadgets of a window
42 RefreshGadgets (win->FirstGadget, win, NULL);
52 29-10-95 digulla automatically created from
53 intuition_lib.fd and clib/intuition_protos.h
55 *****************************************************************************/
59 RefreshGList (gadgets
, window
, requester
, ~0);
62 } /* RefreshGadgets */