Allow multiple volumes with the same name if their creation dates differ.
[AROS.git] / workbench / libs / gadtools / gt_endrefresh.c
blobb9533494dee3eec77b7183bf0aa33bccd7c95df0
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>
16 AROS_LH2(void, GT_EndRefresh,
18 /* SYNOPSIS */
19 AROS_LHA(struct Window *, win, A0),
20 AROS_LHA(BOOL, complete, D0),
22 /* LOCATION */
23 struct Library *, GadToolsBase, 16, GadTools)
25 /* FUNCTION
26 GT_EndRefresh() must be called, when a refresh initiated with
27 GT_BeginRefresh() is done.
29 INPUTS
30 win - the refreshed window
31 complete - TRUE, if refreshing is finished
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
42 GT_BeginRefresh(), intuition.library/EndRefresh()
44 INTERNALS
46 HISTORY
48 ***************************************************************************/
50 AROS_LIBFUNC_INIT
52 EndRefresh(win, complete);
54 AROS_LIBFUNC_EXIT
56 } /* GT_EndRefresh */