New attempt to get the svn revision into the AboutAROS requester.
[cake.git] / rom / graphics / setpointershape.c
blob502f0f605bd13e65037b2d8ec197249d717b446e
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Private graphics function for setting mouse pointer shape
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include "graphics_intern.h"
10 #include <exec/memory.h>
11 #include <graphics/rastport.h>
12 #include <proto/exec.h>
13 #include <oop/oop.h>
15 /*****i***********************************************************************
17 NAME */
18 #include <graphics/rastport.h>
19 #include <proto/graphics.h>
21 AROS_LH5(VOID , SetPointerShape,
23 /* SYNOPSIS */
24 AROS_LHA(UWORD *, shape, A0),
25 AROS_LHA(UWORD, width, D0),
26 AROS_LHA(UWORD, height, D1),
27 AROS_LHA(UWORD, xoffset, D2),
28 AROS_LHA(UWORD, yoffset, D3),
30 /* LOCATION */
31 struct GfxBase *, GfxBase, 186, Graphics)
33 /* FUNCTION
34 Set the current mouse pointer's shape.
36 INPUTS
38 RESULT
40 NOTES
41 This function is private and AROS specific.
43 EXAMPLE
45 BUGS
47 SEE ALSO
49 INTERNALS
51 HISTORY
52 29-10-95 digulla automatically created from
53 graphics_lib.fd and clib/graphics_protos.h
55 *****************************************************************************/
57 AROS_LIBFUNC_INIT
59 D(bug("!!! SetPointerShape NOT YET IMPLEMENTED !!!\n"));
61 AROS_LIBFUNC_EXIT
62 } /* SetPointerShape */