Don't get OOPBase in this ugly way.
[tangerine.git] / rom / graphics / remibob.c
blobabd0c8ebbb2f42bb273d41d729dd270322982c09
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Remove a Bob from the gel list an the RastPort
6 Lang: english
7 */
8 #include "graphics_intern.h"
9 #include "gels_internal.h"
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH3(void, RemIBob,
18 /* SYNOPSIS */
19 AROS_LHA(struct Bob *, bob, A0),
20 AROS_LHA(struct RastPort *, rp , A1),
21 AROS_LHA(struct ViewPort *, vp , A2),
23 /* LOCATION */
24 struct GfxBase *, GfxBase, 22, Graphics)
26 /* FUNCTION
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 HISTORY
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
47 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
49 _ClearBobAndFollowClearPath(bob->BobVSprite,
50 rp,
51 GfxBase);
52 RemVSprite(bob->BobVSprite);
54 AROS_LIBFUNC_EXIT
55 } /* RemIBob */