2 Copyright 2013 Jun Wako <wakojun@gmail.com>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 extern report_keyboard_t *keyboard_report;
29 void send_keyboard_report(void);
32 void add_key(uint8_t key);
33 void del_key(uint8_t key);
34 void clear_keys(void);
37 uint8_t get_mods(void);
38 void add_mods(uint8_t mods);
39 void del_mods(uint8_t mods);
40 void set_mods(uint8_t mods);
41 void clear_mods(void);
44 uint8_t get_weak_mods(void);
45 void add_weak_mods(uint8_t mods);
46 void del_weak_mods(uint8_t mods);
47 void set_weak_mods(uint8_t mods);
48 void clear_weak_mods(void);
50 /* oneshot modifier */
51 void set_oneshot_mods(uint8_t mods);
52 void clear_oneshot_mods(void);
53 void oneshot_toggle(void);
54 void oneshot_enable(void);
55 void oneshot_disable(void);
58 uint8_t has_anykey(void);
59 uint8_t has_anymod(void);
60 uint8_t get_first_key(void);