- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / alib / setwindowpointer.c
blobc2b2d04be68811224db6a3ebeba14d42e6caa266
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Obtain the closes pen to a given color
6 Lang: english
7 */
9 #include <exec/types.h>
11 #include "alib_intern.h"
13 extern struct IntuitionBase * IntuitionBase;
15 /*****************************************************************************
17 NAME */
18 #include <utility/tagitem.h>
19 #include <intuition/intuition.h>
20 #define NO_INLINE_STDARG /* turn off inline def */
21 #include <proto/intuition.h>
23 void SetWindowPointer (
25 /* SYNOPSIS */
26 struct Window * window,
27 ULONG tag1,
28 ... )
30 /* FUNCTION
31 Varargs version of intuition.library/SetWindowPointerA().
33 INPUTS
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
44 intuition.library/SetWindowPointerA()
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
53 SetWindowPointerA (window, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_NR_SLOWSTACKTAGS_POST
55 } /* SetWindowPointer */