2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 /*****************************************************************************
14 #include "proto/exec.h"
16 AROS_LH1(VOID
, FreeBrokerList
,
20 AROS_LHA(struct List
*, brokerList
, A0
),
24 struct Library
*, CxBase
, 32, Commodities
)
28 Free the list of brokers obtained by calling GetBrokerList.
32 brokerList -- List of commodity brokers (a list of struct BrokerCopy
39 This function is present in AmigaOS too, but undocumented.
55 ******************************************************************************/
60 struct BrokerCopy
*brokerCopy
;
62 while ((brokerCopy
= (struct BrokerCopy
*)RemHead(brokerList
)) != NULL
)
68 } /* FreeBrokerList */