New attempt to get the svn revision into the AboutAROS requester.
[cake.git] / rom / graphics / movesprite.c
blobf1da93e8f942b3f3267fb6fb9e86e25d9e23dbb1
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function MoveSprite()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/view.h>
10 #include <graphics/sprite.h>
12 /*****************************************************************************
14 NAME */
15 #include <proto/graphics.h>
17 AROS_LH4(void, MoveSprite,
19 /* SYNOPSIS */
20 AROS_LHA(struct ViewPort *, vp, A0),
21 AROS_LHA(struct SimpleSprite *, sprite, A1),
22 AROS_LHA(WORD, x, D0),
23 AROS_LHA(WORD, y, D1),
25 /* LOCATION */
26 struct GfxBase *, GfxBase, 71, Graphics)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 HISTORY
47 ******************************************************************************/
49 AROS_LIBFUNC_INIT
51 #warning TODO: Write graphics/MoveSprite()
52 aros_print_not_implemented ("MoveSprite");
54 AROS_LIBFUNC_EXIT
55 } /* MoveSprite */