This commit is contained in:
2025-09-28 15:56:19 +02:00
parent 12cc9040d8
commit b12fb43654
9 changed files with 77 additions and 17 deletions
+7
View File
@@ -1,4 +1,5 @@
#include <GLFW/glfw3.h>
#include <alsa/asoundlib.h>
#include <glad/egl.h>
#include <glad/gl.h>
#include <hashmap.h>
@@ -148,4 +149,10 @@ typedef struct ConfigFileItem {
char value[2048];
} ConfigFileItem;
typedef struct MidiDevice {
bool error;
snd_rawmidi_t *input;
snd_rawmidi_t *output;
} MidiDevice;
#endif /* TYPES_H */