mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 13:05:20 -05:00
15 lines
348 B
C
15 lines
348 B
C
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <stdint.h>
|
|
#include <zmk/behavior.h>
|
|
|
|
int zmk_behavior_queue_add(const struct zmk_behavior_binding_event *event,
|
|
const struct zmk_behavior_binding behavior, bool press, uint32_t wait);
|