Metatarget for copying of testfile fixed.
[AROS.git] / workbench / libs / gadtools / gt_refreshwindow.c
blob435092fb168e99666f69d6a185498060febbbf2a
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include <proto/intuition.h>
9 #include "gadtools_intern.h"
11 /*********************************************************************
13 NAME */
14 #include <proto/gadtools.h>
15 #include <intuition/intuition.h>
17 AROS_LH2(void, GT_RefreshWindow,
19 /* SYNOPSIS */
20 AROS_LHA(struct Window *, win, A0),
21 AROS_LHA(struct Requester *,req,A1),
23 /* LOCATION */
24 struct Library *, GadToolsBase, 14, GadTools)
26 /* FUNCTION
27 You have to call this function as soon as a window containing
28 gadtools gadgets was opened or after you have performed a
29 RefreshGList().
31 INPUTS
32 win - Window to refresh.
33 req - Not used. Provide NULL for now.
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 INTERNALS
47 HISTORY
49 ***************************************************************************/
51 AROS_LIBFUNC_INIT
53 /* Don't do anything here, see autodoc. No GT_BeginRefresh/GT_EndRefresh
54 either!!
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));
63 AROS_LIBFUNC_EXIT
65 } /* GT_RefreshWindow */