summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode/process_midi.h
blob: 66ce60b0e5267e101ee3c1f690cf2947031bb785 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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