2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
8 #include <proto/intuition.h>
9 #include "gadtools_intern.h"
11 /*********************************************************************
14 #include <proto/gadtools.h>
15 #include <intuition/intuition.h>
17 AROS_LH2(void, GT_RefreshWindow
,
20 AROS_LHA(struct Window
*, win
, A0
),
21 AROS_LHA(struct Requester
*,req
,A1
),
24 struct Library
*, GadToolsBase
, 14, GadTools
)
27 You have to call this function as soon as a window containing
28 gadtools gadgets was opened or after you have performed a
32 win - Window to refresh.
33 req - Not used. Provide NULL for now.
49 ***************************************************************************/
53 /* Don't do anything here, see autodoc. No GT_BeginRefresh/GT_EndRefresh
56 This func is just there because in AmigaOS the gadtools gadgets
57 aren't boopsi gadgets and half the stuff there is handled by
58 app task and not Intuition.
61 DEBUG_REFRESHWINDOW(dprintf("RefreshWindow: win %p req %p\n", win
, req
));
65 } /* GT_RefreshWindow */