mirror of
https://github.com/mfulz/qmk_firmware.git
synced 2025-06-03 05:31:17 +02:00
11 lines
196 B
C
11 lines
196 B
C
#ifndef PROCESS_MIDI_H
|
|
#define PROCESS_MIDI_H
|
|
|
|
#include "quantum.h"
|
|
#include "midi.h"
|
|
|
|
void midi_init(void);
|
|
void midi_task(void);
|
|
bool process_midi(uint16_t keycode, keyrecord_t *record);
|
|
|
|
#endif |