2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Private graphics function for setting mouse pointer position
8 #include "graphics_intern.h"
9 #include <exec/memory.h>
10 #include <graphics/rastport.h>
11 #include <proto/exec.h>
14 /*****************************************************************************
17 #include <graphics/rastport.h>
18 #include <proto/graphics.h>
20 AROS_LH2(VOID
, SetPointerPos
,
23 AROS_LHA(UWORD
, x
, D0
),
24 AROS_LHA(UWORD
, y
, D1
),
27 struct GfxBase
*, GfxBase
, 185, Graphics
)
30 Set the current mouse pointer's position.
37 This function is private and AROS specific.
48 29-10-95 digulla automatically created from
49 graphics_lib.fd and clib/graphics_protos.h
51 *****************************************************************************/
54 AROS_LIBBASE_EXT_DECL(struct GfxBase
*,GfxBase
)
56 HIDD_Gfx_SetCursorPos(SDD(GfxBase
)->gfxhidd
, x
, y
);