diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-09-04 03:01:13 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-09-05 23:39:23 +0300 |
commit | 4fd919c5493d7e5100ed0ed944048c6ef8b59f50 (patch) | |
tree | 7457876aff69ddea14598bf68ed38822020cd879 /applause.c | |
parent | 03ca9c8010702337a06c8b0ca9ca1e90c301d47e (diff) | |
download | applause2-4fd919c5493d7e5100ed0ed944048c6ef8b59f50.tar.gz |
MIDI stuff has been moved into midi.lua
* common definitions are now in midi.h
Diffstat (limited to 'applause.c')
-rw-r--r-- | applause.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,6 +33,8 @@ #include <jack/midiport.h> #include <jack/ringbuffer.h> +#include "midi.h" + #define LUA_MODULE "applause.lua" #define APPLAUSE_HISTORY ".applause_history" @@ -74,8 +76,6 @@ typedef struct applause_midi_port { static applause_midi_port midi_port; -typedef uint32_t applause_midi_sample; - static int svsem_init(size_t value) { |