added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / rom / intuition / cleardmrequest.c
blob67dfdc6f015e3b3e30d9882d19c7919f15dc3b1f
1 /*
2 Copyright © 1995-2007, 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
46 return SetDMRequest(window, NULL);
48 AROS_LIBFUNC_EXIT
49 } /* ClearDMRequest */