squashed commit of private hostlib-resource branch
[tangerine.git] / compiler / alib / refreshdtobjects.c
blob1fe185c452101fa3fad58555a2234fdad98ec727
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of datatypes.library/RefreshDTObjectA()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPEVOID
10 #include <intuition/classusr.h>
11 #include <utility/tagitem.h>
13 extern struct Library *DataTypesBase;
15 /*****************************************************************************
17 NAME */
18 #define NO_INLINE_STDARG /* turn off inline def */
19 #include <proto/datatypes.h>
21 void RefreshDTObjects (
23 /* SYNOPSIS */
24 Object * o,
25 struct Window * win,
26 struct Requester *req,
27 Tag tag1,
28 ...)
30 /* FUNCTION
31 This is the varargs version of datatypes.library/RefreshDTObjectA().
32 For information see datatypes.library/RefreshDTObjectA().
34 INPUTS
36 RESULT
38 NOTES
40 EXAMPLE
42 BUGS
44 SEE ALSO
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_SLOWSTACKTAGS_PRE(tag1)
53 RefreshDTObjectA (o, win, req, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_SLOWSTACKTAGS_POST
55 } /* RefreshDTObjects */