refactor: split monolithic main.c into modular source files

Co-authored-by: aider (deepseek/deepseek-reasoner) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-08 21:03:10 +00:00
parent f1a92f1e95
commit 96295fdb4c
8 changed files with 423 additions and 336 deletions

8
src/midi.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef MIDI_H
#define MIDI_H
#include <jack/types.h>
void midi_handle_events(void *port_buffer, jack_nframes_t nframes);
#endif