2 Copyright © 1995-2013, 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 mouse pointer of this window to the default one. If the
24 window is active during this call the pointer will immediately change
25 its shape. Set custom mouse pointers with SetPointer().
28 window - The window of which the mousepointer will be cleared
44 *****************************************************************************/
48 DEBUG_SETPOINTER(dprintf("ClearPointer: window 0x%lx\n",window
));
52 window
->Pointer
= NULL
;
53 SetWindowPointerA(window
, NULL
);