diff options
author | Balz Guenat <balz.guenat@gmail.com> | 2017-08-12 12:14:33 +0200 |
---|---|---|
committer | Balz Guenat <balz.guenat@gmail.com> | 2017-08-12 12:14:33 +0200 |
commit | 430151dd51b8b0d925850ad4d52c8bae41d3c154 (patch) | |
tree | f3d13283dd812277bc30d75dff32ea16508b58c8 /quantum/process_keycode/process_key_lock.h | |
parent | 175db1a549a46518c2f2511ac1624d594eb07216 (diff) | |
parent | 5ad103fa51083cb26d3516e5598b7b2a099b1521 (diff) |
Merge remote-tracking branch 'upstream/master'
# Conflicts:
# docs/faq_keymap.md
Diffstat (limited to 'quantum/process_keycode/process_key_lock.h')
-rw-r--r-- | quantum/process_keycode/process_key_lock.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_key_lock.h b/quantum/process_keycode/process_key_lock.h new file mode 100644 index 0000000000..876db4a324 --- /dev/null +++ b/quantum/process_keycode/process_key_lock.h @@ -0,0 +1,24 @@ +/* Copyright 2017 Fredric Silberberg + * + * 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/>. + */ + +#ifndef PROCESS_KEY_LOCK_H +#define PROCESS_KEY_LOCK_H + +#include "quantum.h" + +bool process_key_lock(uint16_t *keycode, keyrecord_t *record); + +#endif // PROCESS_KEY_LOCK_H |