added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / rom / graphics / changeextspritea.c
blob7fee0119d503870b0c1d3c3e26d85b850787c2c5
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function ChangeExtSpriteA()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/view.h>
10 #include <graphics/sprite.h>
11 #include <utility/tagitem.h>
13 /*****************************************************************************
15 NAME */
16 #include <proto/graphics.h>
18 AROS_LH4(LONG, ChangeExtSpriteA,
20 /* SYNOPSIS */
21 AROS_LHA(struct ViewPort *, vp, A0),
22 AROS_LHA(struct ExtSprite *, oldsprite, A1),
23 AROS_LHA(struct ExtSprite *, newsprite, A2),
24 AROS_LHA(struct TagItem *, tags, A3),
26 /* LOCATION */
27 struct GfxBase *, GfxBase, 171, Graphics)
29 /* FUNCTION
31 INPUTS
32 vp - pointer to ViewPort structure that this sprite is
33 relative to, or NULL if relative only top of View
34 oldsprite - pointer to the old ExtSprite structure
35 newsprite - pointer to the new ExtSprite structure
36 tags - pointer to taglist
38 RESULT
39 success - 0 if there was an error
41 NOTES
43 EXAMPLE
45 BUGS
47 SEE ALSO
49 INTERNALS
51 HISTORY
54 ******************************************************************************/
56 AROS_LIBFUNC_INIT
58 #warning TODO: Write graphics/ChangeExtSpriteA()
59 aros_print_not_implemented ("ChangeExtSpriteA");
61 return 0;
63 AROS_LIBFUNC_EXIT
64 } /* ChangeExtSpriteA */