mirror of
https://github.com/kemko/qmk_firmware.git
synced 2026-01-01 15:55:45 +03: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 |