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 MidiNode
*, FindMidi
,
20 AROS_LHA(STRPTR
, name
, A1
),
23 struct CamdBase
*, CamdBase
, 12, Camd
)
26 Finds the midinode with name 'name'.
29 name - Name of midinode to find.
32 NULL if no midinode with that name or a pointer to the midinode if success.
35 CL_Linkages must be locked.
47 2001-01-12 ksvalast first created
49 *****************************************************************************/
53 return (struct MidiNode
*)FindName(&CB(CamdBase
)->mymidinodes
,name
);