logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

process_tri_layer.h (410B)


  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);