fix: update GUI to use Engine struct and remove duplicate definitions

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 13:05:13 +00:00
parent 05c6f34b8f
commit c893f3f561
3 changed files with 11 additions and 15 deletions

4
gui.h
View File

@@ -1,8 +1,8 @@
#ifndef GUI_H
#define GUI_H
#include <jack/jack.h>
#include "engine.h"
int gui_main(jack_client_t *client, float *audio_buffer, int buf_size);
int gui_main(Engine *engine);
#endif /* GUI_H */