2020-07-01 06:13:03 +10:00
|
|
|
/*
|
2020-09-10 13:57:44 +10:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-07-01 06:13:03 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
2020-09-14 12:53:24 +10:00
|
|
|
|
2020-07-01 00:43:09 +10:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <zephyr.h>
|
|
|
|
#include <zmk/keys.h>
|
2020-12-23 02:56:00 +11:00
|
|
|
#include <zmk/event_manager.h>
|
2020-07-01 00:43:09 +10:00
|
|
|
|
2021-01-18 16:35:56 +11:00
|
|
|
struct zmk_modifiers_state_changed {
|
2020-12-20 04:33:15 +11:00
|
|
|
zmk_mod_flags_t modifiers;
|
2020-07-01 00:43:09 +10:00
|
|
|
bool state;
|
|
|
|
};
|
|
|
|
|
2021-01-18 16:35:56 +11:00
|
|
|
ZMK_EVENT_DECLARE(zmk_modifiers_state_changed);
|