diff options
author | Wohlstand <admin@wohlnet.ru> | 2019-12-02 20:47:10 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2019-12-02 20:47:10 +0300 |
commit | c83fff6de633403c6c216bd1abf83e6915aa9913 (patch) | |
tree | a6902e82bcf3c3383ffeac9ac841063f5ced8f07 /src/midi_sequencer.h | |
parent | 45190534246f6c5186aa1708187d5010363db03d (diff) | |
parent | 84af1cde8d624100b4396173688743368db64b58 (diff) | |
download | libADLMIDI-c83fff6de633403c6c216bd1abf83e6915aa9913.tar.gz libADLMIDI-c83fff6de633403c6c216bd1abf83e6915aa9913.tar.bz2 libADLMIDI-c83fff6de633403c6c216bd1abf83e6915aa9913.zip |
Merge branch 'master' into wip-new-embedded-banks
Diffstat (limited to 'src/midi_sequencer.h')
-rw-r--r-- | src/midi_sequencer.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/midi_sequencer.h b/src/midi_sequencer.h index a914451..3f4b750 100644 --- a/src/midi_sequencer.h +++ b/src/midi_sequencer.h @@ -52,6 +52,20 @@ typedef struct BW_MidiRtInterface /*! User data which will be passed through Debug Message hook */ void *onDebugMessage_userData; + /*! Loop Start event hook */ + typedef void (*LoopStartHook)(void *userdata); + /*! Loop start hook which catches passing of loop start point */ + LoopStartHook onloopStart; + /*! User data which will be passed through On-LoopStart hook */ + void *onloopStart_userData; + + /*! Loop Start event hook */ + typedef void (*LoopEndHook)(void *userdata); + /*! Loop start hook which catches passing of loop start point */ + LoopEndHook onloopEnd; + /*! User data which will be passed through On-LoopStart hook */ + void *onloopEnd_userData; + /*! MIDI Run Time event calls user data */ void *rtUserData; |