Minor fixes to comments.
[AROS.git] / rom / intuition / freemonitorlist.c
blob0403113712ecbec433629f0ce3d5d1d71d5447b3
1 /*
2 Copyright © 2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Free a copy of monitors list
6 */
8 #include <proto/exec.h>
10 #include "intuition_intern.h"
12 /*****************************************************************************
14 NAME */
16 #include <proto/intuition.h>
18 AROS_LH1(void, FreeMonitorList,
20 /* SYNOPSIS */
21 AROS_LHA(Object **, list, A1),
23 /* LOCATION */
24 struct IntuitionBase *, IntuitionBase, 162, Intuition)
26 /* FUNCTION
27 Frees an array of monitor class objects obtained using
28 GetMonitorList()
30 INPUTS
31 list - a pointer to the list to free.
33 RESULT
34 None.
36 NOTES
37 This function is compatible with MorphOS v2.
39 EXAMPLE
41 BUGS
43 SEE ALSO
44 GetMonitorList()
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
54 FreeVec(list);
56 AROS_LIBFUNC_EXIT