revert between 56095 -> 55830 in arch
[AROS.git] / compiler / alib / allocspritedata.c
blob1a228dc0e52577863c32e8e7e1f7ff4503eb9bba
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of graphics.library/AllocSpriteDataA()
6 Lang: english
7 */
8 #define AROS_TAGRETURNTYPE struct ExtSprite *
10 #include <graphics/gfx.h>
11 #include <graphics/sprite.h>
12 #include <utility/tagitem.h>
14 /*****************************************************************************
16 NAME */
17 #define NO_INLINE_STDARG /* turn off inline def */
18 #include <proto/graphics.h>
20 struct ExtSprite * AllocSpriteData (
22 /* SYNOPSIS */
23 struct BitMap * bitmap,
24 Tag tag1,
25 ...)
27 /* FUNCTION
28 This is the varargs version of graphics.library/AllocSpriteDataA().
29 For information see graphics.library/AllocSpriteDataA().
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
42 graphics.library/AllocSpriteDataA()
44 INTERNALS
46 HISTORY
48 *****************************************************************************/
50 AROS_SLOWSTACKTAGS_PRE(tag1)
51 retval = AllocSpriteDataA (bitmap, AROS_SLOWSTACKTAGS_ARG(tag1));
52 AROS_SLOWSTACKTAGS_POST
53 } /* AllocSpriteData */