2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
9 #include <proto/exec.h>
11 #include "camd_intern.h"
13 /*****************************************************************************
17 AROS_LH1(struct MidiCluster
*, FindCluster
,
20 AROS_LHA(STRPTR
, name
, A0
),
23 struct CamdBase
*, CamdBase
, 22, Camd
)
26 Finds a midicluster from camd's internal list of midiclusters.
29 name - Name of cluster to find.
32 NULL if cluster could not be found.
35 - CL_Linkages must be locked before calling.
48 2001-01-12 ksvalast first created
50 *****************************************************************************/
54 return (struct MidiCluster
*)FindName(&CB(CamdBase
)->midiclusters
,name
);