r4493@vps: verhaegs | 2007-04-19 14:44:00 -0400
[AROS.git] / rom / graphics / changesprite.c
blob2df6747f4c0c8c39fd0b72388bdabbe34e908698
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function ChangeSprite()
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_LH3(void, ChangeSprite,
19 /* SYNOPSIS */
20 AROS_LHA(struct ViewPort *, vp, A0),
21 AROS_LHA(struct SimpleSprite *, s, A1),
22 AROS_LHA(void *, newdata, A2),
24 /* LOCATION */
25 struct GfxBase *, GfxBase, 70, Graphics)
27 /* FUNCTION
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 HISTORY
46 ******************************************************************************/
48 AROS_LIBFUNC_INIT
49 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
51 #warning TODO: Write graphics/ChangeSprite()
52 aros_print_not_implemented ("ChangeSprite");
54 AROS_LIBFUNC_EXIT
55 } /* ChangeSprite */