Disabled debug for Poseidon by default.
[cake.git] / rom / graphics / changeextspritea.c
blobbb85af57839a8eb66bca77291de0b8975618d462
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
42 Not implemented.
44 EXAMPLE
46 BUGS
48 SEE ALSO
50 INTERNALS
52 HISTORY
55 ******************************************************************************/
57 AROS_LIBFUNC_INIT
59 #warning TODO: Write graphics/ChangeExtSpriteA()
60 aros_print_not_implemented ("ChangeExtSpriteA");
62 return 0;
64 AROS_LIBFUNC_EXIT
65 } /* ChangeExtSpriteA */