keycode_cache_mock.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Copyright 2025 Garretonzo
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. #include <stdint.h>
  18. #include "quantum/action.h"
  19. // Mock function declarations
  20. uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
  21. void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode);
  22. uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column);
  23. action_t action_for_keycode(uint16_t keycode);
  24. action_t action_for_key(uint8_t layer, keypos_t key);
  25. // Utility functions
  26. uint8_t biton(uint8_t bits);
  27. uint8_t biton16(uint16_t bits);
  28. uint8_t biton32(uint32_t bits);
  29. // Keyboard functions
  30. void clear_keyboard_but_mods(void);
  31. void clear_keyboard_but_mods_and_keys(void);