You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
410 B

  1. // Copyright 2023 QMK
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <stdint.h>
  5. #include <stdbool.h>
  6. #include "action.h"
  7. /**
  8. * @brief Handles tri layer behavior
  9. *
  10. * @param keycode the keycode
  11. * @param record the key record structure
  12. * @return true continue handling keycodes
  13. * @return false stop handling keycodes
  14. */
  15. bool process_tri_layer(uint16_t keycode, keyrecord_t *record);