1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef HOST_DRIVER_H
- #define HOST_DRIVER_H
- #include <stdint.h>
- #include "report.h"
- #ifdef MIDI_ENABLE
- #include "midi.h"
- #endif
- typedef struct {
- uint8_t (*keyboard_leds)(void);
- void (*send_keyboard)(report_keyboard_t *);
- void (*send_mouse)(report_mouse_t *);
- void (*send_system)(uint16_t);
- void (*send_consumer)(uint16_t);
- } host_driver_t;
- #endif
|