Instead of "eax" and "edx" in asm constraints use "a" and "d"
[tangerine.git] / rom / intuition / cleardmrequest.c
blob3e689cb5ad10a7cbb304461d1701946603acda6c
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include "intuition_intern.h"
9 /*****************************************************************************
11 NAME */
12 #include <proto/intuition.h>
14 AROS_LH1(BOOL, ClearDMRequest,
16 /* SYNOPSIS */
17 AROS_LHA(struct Window *, window, A0),
19 /* LOCATION */
20 struct IntuitionBase *, IntuitionBase, 8, Intuition)
22 /* FUNCTION
24 INPUTS
25 window - The window from which the DMRequest is to be cleared
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
36 SetDMRequest(), Request()
38 INTERNALS
40 HISTORY
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
45 AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
47 return SetDMRequest(window, NULL);
49 AROS_LIBFUNC_EXIT
50 } /* ClearDMRequest */