diff options
author | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-12-04 23:57:47 +0700 |
---|---|---|
committer | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-12-04 23:57:47 +0700 |
commit | fc80aa9974faad146837cd26d9264b5a6c74dd4b (patch) | |
tree | 893e6f573c2753a51f67ed3636110850036405c7 /tmk_core/common/host_driver.h | |
parent | a8e5f6180585f46684d713976ad05d4d81b11ab1 (diff) | |
parent | f39e1b5dfe7552f01dbc6eab95c268f41a9d98e2 (diff) |
Merge branch 'master' into promethium
Diffstat (limited to 'tmk_core/common/host_driver.h')
-rw-r--r-- | tmk_core/common/host_driver.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tmk_core/common/host_driver.h b/tmk_core/common/host_driver.h index edb9e5dd9c..588d1c0be8 100644 --- a/tmk_core/common/host_driver.h +++ b/tmk_core/common/host_driver.h @@ -20,7 +20,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <stdint.h> #include "report.h" - +#ifdef MIDI_ENABLE + #include "midi.h" +#endif typedef struct { uint8_t (*keyboard_leds)(void); @@ -28,6 +30,11 @@ typedef struct { void (*send_mouse)(report_mouse_t *); void (*send_system)(uint16_t); void (*send_consumer)(uint16_t); +#ifdef MIDI_ENABLE + void (*usb_send_func)(MidiDevice *, uint16_t, uint8_t, uint8_t, uint8_t); + void (*usb_get_midi)(MidiDevice *); + void (*midi_usb_init)(MidiDevice *); +#endif } host_driver_t; #endif |