Added empty bootstrap.c and its build target
[AROS.git] / workbench / libs / camd / midi2driver.c
blob3edfdc2ed185615111b6b16ef141e38b1ef80f2b
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include <proto/exec.h>
11 #include "camd_intern.h"
14 /*****************************************************************************
16 NAME */
18 AROS_LH3(BOOL, Midi2Driver,
20 /* SYNOPSIS */
21 AROS_LHA(APTR, driverdata, A0),
22 AROS_LHA(ULONG, msg, D0),
23 AROS_LHA(ULONG, maxbuff, D1),
25 /* LOCATION */
26 struct CamdBase *, CamdBase, 40, Camd)
28 /* FUNCTION
29 This is a private function, and will probably be obsolete. Please don`t use.
31 INPUTS
33 RESULT
34 TRUE if max(buffer,maxbuffer) was big enough to hold the message, FALSE if not.
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
43 PutMidi(), GoodPutMidi(), PutMidiMsg()
45 INTERNALS
47 HISTORY
49 2001-07-14 ksvalast first created
51 *****************************************************************************/
53 AROS_LIBFUNC_INIT
55 return
57 Midi2Driver_internal(
58 (struct DriverData *)driverdata,
59 msg,
60 maxbuff
64 AROS_LIBFUNC_EXIT