2015-04-10 00:32:04 +08:00
|
|
|
/*
|
|
|
|
Copyright 2011 Jun Wako <wakojun@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-12-26 12:56:11 +08:00
|
|
|
#pragma once
|
2015-04-10 00:32:04 +08:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "report.h"
|
2016-11-22 09:14:16 +08:00
|
|
|
#ifdef MIDI_ENABLE
|
2019-08-31 02:19:03 +08:00
|
|
|
# include "midi.h"
|
2016-11-22 09:14:16 +08:00
|
|
|
#endif
|
2015-04-10 00:32:04 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t (*keyboard_leds)(void);
|
|
|
|
void (*send_keyboard)(report_keyboard_t *);
|
|
|
|
void (*send_mouse)(report_mouse_t *);
|
2022-10-07 10:35:01 +08:00
|
|
|
void (*send_extra)(report_extra_t *);
|
2015-04-10 00:32:04 +08:00
|
|
|
} host_driver_t;
|
2021-08-18 02:52:44 +08:00
|
|
|
|
2022-09-27 16:37:13 +08:00
|
|
|
void send_joystick(report_joystick_t *report);
|
2022-09-03 03:38:27 +08:00
|
|
|
void send_digitizer(report_digitizer_t *report);
|
2022-10-05 06:19:12 +08:00
|
|
|
void send_programmable_button(report_programmable_button_t *report);
|