add a missing section header table index conversion
[tangerine.git] / compiler / alib / refreshdtobject.c
blob8bce33a14ee108a7ea1c5b833f703c30bb7ee47d
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 #include <intuition/classusr.h>
10 #include <utility/tagitem.h>
12 extern struct Library *DataTypesBase;
14 /*****************************************************************************
16 NAME */
17 #define NO_INLINE_STDARG /* turn off inline def */
18 #include <proto/datatypes.h>
20 void RefreshDTObject (
22 /* SYNOPSIS */
23 Object * o,
24 struct Window * win,
25 struct Requester *req,
26 Tag tag1,
27 ...)
29 /* FUNCTION
30 This is the varargs version of datatypes.library/RefreshDTObjectA().
31 For information see datatypes.library/RefreshDTObjectA().
33 INPUTS
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 INTERNALS
47 HISTORY
49 *****************************************************************************/
51 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
52 RefreshDTObjectA (o, win, req, AROS_SLOWSTACKTAGS_ARG(tag1));
53 AROS_NR_SLOWSTACKTAGS_POST
54 } /* RefreshDTObject */