added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / rom / graphics / closemonitor.c
blob9d3586be38380e572eb36778d5e5fad9b705ede4
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function CloseMonitor()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/monitor.h>
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH1(LONG, CloseMonitor,
18 /* SYNOPSIS */
19 AROS_LHA(struct MonitorSpec *, monitor_spec, A0),
21 /* LOCATION */
22 struct GfxBase *, GfxBase, 120, Graphics)
24 /* FUNCTION
26 INPUTS
27 monitor_spec - pointer to a MonitorSpec opened via OpenMonitor(),
28 or NULL
30 RESULT
31 error - FALSE if MonitorSpec closed uneventfully
32 TRUE if MonitorSpec could not be closed
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
41 OpenMonitor() graphics/monitor.h
43 INTERNALS
45 HISTORY
48 ******************************************************************************/
50 AROS_LIBFUNC_INIT
52 #warning TODO: Write graphics/CloseMonitor()
53 aros_print_not_implemented ("CloseMonitor");
55 return FALSE;
57 AROS_LIBFUNC_EXIT
58 } /* CloseMonitor */