Removed obsolete (and apparently unneeded) AM_C_PROTOTYPES line, which
[AROS.git] / compiler / alib / changeextsprite.c
blob64c5081e1fd0f04a5e047227abeb704b9e5d690b
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of graphics.library/ChangeExtSpriteA()
6 Lang: english
7 */
8 #define AROS_TAGRETURNTYPE LONG
9 #include <graphics/view.h>
10 #include <graphics/sprite.h>
11 #include <utility/tagitem.h>
13 /*****************************************************************************
15 NAME */
16 #define NO_INLINE_STDARG /* turn off inline def */
17 #include <proto/graphics.h>
19 LONG ChangeExtSprite (
21 /* SYNOPSIS */
22 struct ViewPort * vp,
23 struct ExtSprite * oldsprite,
24 struct ExtSprite * newsprite,
25 Tag tag1,
26 ...)
28 /* FUNCTION
29 This is the varargs version of graphics.library/ChangeExtSpriteA().
30 For information see graphics.library/ChangeExtSpriteA().
32 INPUTS
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
43 graphics.library/ChangeExtSpriteA()
45 INTERNALS
47 HISTORY
49 *****************************************************************************/
51 AROS_SLOWSTACKTAGS_PRE(tag1)
52 retval = ChangeExtSpriteA (vp, oldsprite, newsprite, AROS_SLOWSTACKTAGS_ARG(tag1));
53 AROS_SLOWSTACKTAGS_POST
54 } /* ChangeExtSprite */