2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
9 /*****************************************************************************
12 #include <proto/intuition.h>
14 AROS_LH1(void, ClearPointer
,
17 AROS_LHA(struct Window
*, window
, A0
),
20 struct IntuitionBase
*, IntuitionBase
, 10, Intuition
)
23 Reset the mousepointer of this window to the default one.
24 If the window is active during this call the pointer will
25 immediately change its shape.
26 Set custom mousepointers with SetPointer().
29 window - The window of which the mousepointer will be cleared
46 *****************************************************************************/
49 AROS_LIBBASE_EXT_DECL(struct IntuitionBase
*,IntuitionBase
)
51 DEBUG_SETPOINTER(dprintf("ClearPointer: window 0x%lx\n",window
));
55 window
->Pointer
= NULL
;
56 SetWindowPointerA(window
, NULL
);