- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / alib / refreshdtobject.c
blob5b4a7772efd4e5da637370272a36a75405df3f5f
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
44 datatypes.library/RefreshDTObjectA()
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
53 RefreshDTObjectA (o, win, req, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_NR_SLOWSTACKTAGS_POST
55 } /* RefreshDTObject */