-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.livecode.library.pgmcclernan.gmidilib.lci
executable file
·30 lines (30 loc) · 1.51 KB
/
community.livecode.library.pgmcclernan.gmidilib.lci
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import module community.livecode.library.pgmcclernan.gmidilib
use com.livecode.arithmetic
use com.livecode.binary
use com.livecode.list
use com.livecode.logic
use com.livecode.string
use com.livecode.type
use com.livecode.typeconvert
use com.livecode.array
handler getGMIDISVGicon() returns String
handler getGMIDIBeatsPerMinuteToMillisecs(in pBPM as Number, in pMeasureDivision as optional Number) returns Number
handler getGMIDIInstrumentNamesListCSV() returns String
handler getGMIDIInstrumentNameListArray() returns List
handler getGMIDIInstrumentName(in pNum as Number) returns String
handler getGMIDINoteNamesListCSV() returns String
handler getGMIDINoteFlatsNamesListCSV() returns String
handler getGMIDINoteSharpsFlatsNamesListCSV() returns String
handler getGMIDINoteNamesListArray(in pSharpsFlats as optional any) returns List
handler getGMIDINoteName(in pNum as Number) returns String
handler getGMIDINoteFlatName(in pNum as Number) returns String
handler getGMIDIDrumKitNamesListCSV() returns String
handler getGMIDIDrumKitNamesListArray() returns List
handler getGMIDIDrumKitName(in pNum as Number) returns String
handler getGMIDIDrumNoteNamesListCSV() returns String
handler getGMIDIDrumNoteNamesListArray() returns List
handler getGMIDIDrumNoteName(in pNum as Number) returns String
handler getGMIDIControllerNamesListCSV() returns String
handler getGMIDIControllerNamesListArray() returns List
handler getGMIDIControllerName(in pNum as Number) returns String
end module