2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
9 #include "camd_intern.h"
13 /*****************************************************************************
17 AROS_LH1(UBYTE
, GetMidiErr
,
20 AROS_LHA(struct MidiNode
*, midinode
, A0
),
23 struct CamdBase
*, CamdBase
, 30, Camd
)
26 Gets the current error-state of a midinode.
29 midinode - pointer to midinode
32 0 if everything was okey, not 0 else.
47 2001-01-12 ksvalast first created
49 *****************************************************************************/
53 struct MyMidiNode
*mymn
=(struct MyMidiNode
*)midinode
;
54 UBYTE temp
=mymn
->error
;