NListtree.mcc: fix sorted insert
[AROS.git] / rom / intuition / freemonitorlist.c
blobd9fa8028acc6a96db816435003810cad036a4cf4
1 /*
2 Copyright © 2010-2013, 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 *****************************************************************************/
50 AROS_LIBFUNC_INIT
52 FreeVec(list);
54 AROS_LIBFUNC_EXIT