callbacks.h 875 B

1234567891011121314151617181920212223242526
  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 keyboard_post_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. void housekeeping_task_keymap(void);
  17. #ifdef CUSTOM_UNICODE_ENABLE
  18. void keyboard_post_init_unicode(void);
  19. #endif
  20. #ifdef SPLIT_KEYBOARD
  21. void matrix_slave_scan_keymap(void);
  22. #endif