2 Copyright © 1995-2007, 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(BOOL
, ClearDMRequest
,
17 AROS_LHA(struct Window
*, window
, A0
),
20 struct IntuitionBase
*, IntuitionBase
, 8, Intuition
)
23 Detach the DMRequest from the window
26 window - The window from which the DMRequest is to be cleared
29 TRUE if requester could successfully be detached.
38 SetDMRequest(), Request()
44 *****************************************************************************/
48 return SetDMRequest(window
, NULL
);
51 } /* ClearDMRequest */