summaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_combo.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-07-11 17:07:24 +1000
committerGitHub <noreply@github.com>2023-07-11 17:07:24 +1000
commiteee0384167b965c60120e1222bc24c0b40cadac4 (patch)
tree9ff4859ab0727091177d7d6a99c54cca9d6b93f0 /quantum/process_keycode/process_combo.c
parent39a97d2ee43d00e87a9f94971093863a864cbffd (diff)
process_keycode: remove direct `quantum.h` includes (#21486)
Diffstat (limited to 'quantum/process_keycode/process_combo.c')
-rw-r--r--quantum/process_keycode/process_combo.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c
index bbee560be9..0d4f4f3dba 100644
--- a/quantum/process_keycode/process_combo.c
+++ b/quantum/process_keycode/process_combo.c
@@ -14,11 +14,16 @@
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16 16
17#include "keymap_common.h"
18#include "print.h"
19#include "process_combo.h" 17#include "process_combo.h"
18#include <stddef.h>
19#include "process_auto_shift.h"
20#include "caps_word.h"
21#include "timer.h"
22#include "keyboard.h"
23#include "keymap_common.h"
24#include "action_layer.h"
20#include "action_tapping.h" 25#include "action_tapping.h"
21#include "action.h" 26#include "action_util.h"
22#include "keymap_introspection.h" 27#include "keymap_introspection.h"
23 28
24__attribute__((weak)) void process_combo_event(uint16_t combo_index, bool pressed) {} 29__attribute__((weak)) void process_combo_event(uint16_t combo_index, bool pressed) {}