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.

28 lines
884 B

  1. // Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "quantum.h"
  5. void matrix_init_keymap(void);
  6. void matrix_init_secret(void);
  7. void shutdown_keymap(void);
  8. void suspend_power_down_keymap(void);
  9. void suspend_wakeup_init_keymap(void);
  10. void matrix_scan_keymap(void);
  11. void matrix_scan_secret(void);
  12. layer_state_t layer_state_set_keymap(layer_state_t state);
  13. layer_state_t default_layer_state_set_keymap(layer_state_t state);
  14. void led_set_keymap(uint8_t usb_led);
  15. void eeconfig_init_keymap(void);
  16. #ifdef CUSTOM_UNICODE_ENABLE
  17. void matrix_init_unicode(void);
  18. #endif
  19. #ifdef SPLIT_KEYBOARD
  20. void matrix_slave_scan_keymap(void);
  21. #endif
  22. #ifdef CAPS_WORD_ENABLE
  23. # include "keyrecords/caps_word.h"
  24. #endif