aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2018-06-21 09:39:53 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2018-06-21 09:39:53 +0300
commit0a93f3c6ca30a746c86c08922192f052864b46ed (patch)
tree241329d2362e5c4cfca9748c00658a2aa31897ef /include
parent8917fd60694ef2a0757d6e250faea37482b34956 (diff)
parent252e65097e9b8a815485fc03e4358698803f1a73 (diff)
downloadlibADLMIDI-0a93f3c6ca30a746c86c08922192f052864b46ed.tar.gz
libADLMIDI-0a93f3c6ca30a746c86c08922192f052864b46ed.tar.bz2
libADLMIDI-0a93f3c6ca30a746c86c08922192f052864b46ed.zip
Merge branch 'all-sysex' of git@github.com:jpcima/libADLMIDI.git into split-midi-sequencer-and-sysex-2
# Conflicts: # src/adlmidi_midiplay.cpp # src/adlmidi_private.hpp
Diffstat (limited to 'include')
-rw-r--r--include/adlmidi.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h
index fe1f590..028aea8 100644
--- a/include/adlmidi.h
+++ b/include/adlmidi.h
@@ -237,6 +237,9 @@ extern const char *adl_errorInfo(struct ADL_MIDIPlayer *device);
/*Initialize ADLMIDI Player device*/
extern struct ADL_MIDIPlayer *adl_init(long sample_rate);
+/*Set 4-bit device identifier*/
+extern int adl_setDeviceIdentifier(struct ADL_MIDIPlayer *device, unsigned id);
+
/*Load MIDI file from File System*/
extern int adl_openFile(struct ADL_MIDIPlayer *device, const char *filePath);
@@ -364,6 +367,9 @@ extern void adl_rt_bankChangeMSB(struct ADL_MIDIPlayer *device, ADL_UInt8 channe
/*Change bank by absolute signed value*/
extern void adl_rt_bankChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_SInt16 bank);
+/*Perform a system exclusive message*/
+extern int adl_rt_systemExclusive(struct ADL_MIDIPlayer *device, const ADL_UInt8 *msg, unsigned size);
+
/**Hooks**/