diff options
| author | Joel Challis | 2025-06-04 00:44:46 +0200 |
|---|---|---|
| committer | GitHub | 2025-06-04 00:44:46 +0200 |
| commit | f096e5a3f3af404e6f752185260f183d3ecd503e (patch) | |
| tree | b3f628aebf2968434473eba8a1000eca410171f5 /quantum/process_keycode/process_oneshot.h | |
| parent | 53c6fa5de75da248fe3d5549f9e79660682bc64c (diff) | |
Relocate remaining `process_record_quantum` keycodes (#25328)
Diffstat (limited to 'quantum/process_keycode/process_oneshot.h')
| -rw-r--r-- | quantum/process_keycode/process_oneshot.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_oneshot.h b/quantum/process_keycode/process_oneshot.h new file mode 100644 index 0000000000..11445b9b38 --- /dev/null +++ b/quantum/process_keycode/process_oneshot.h @@ -0,0 +1,10 @@ +// Copyright 2025 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include <stdint.h> +#include <stdbool.h> +#include "action.h" + +bool process_oneshot(uint16_t keycode, keyrecord_t *record); |