diff options
| author | Nick Brassel | 2025-02-27 23:23:04 +0100 |
|---|---|---|
| committer | Nick Brassel | 2025-02-27 23:23:04 +0100 |
| commit | a63fd7f01cdabd9ce85bb09ae2b573fd3b8e60aa (patch) | |
| tree | 35d817580e5244d62a150a2d012f72906a610977 /data/constants/module_hooks/0.1.0.hjson | |
| parent | 6d0e5728aa61b442885d48caf49d29e5c60e8197 (diff) | |
| parent | cdb865cf60b17593f5c811c24a21d7b3030d8653 (diff) | |
Merge remote-tracking branch 'upstream/develop'
Diffstat (limited to 'data/constants/module_hooks/0.1.0.hjson')
| -rw-r--r-- | data/constants/module_hooks/0.1.0.hjson | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/data/constants/module_hooks/0.1.0.hjson b/data/constants/module_hooks/0.1.0.hjson new file mode 100644 index 0000000000..c77f4c297e --- /dev/null +++ b/data/constants/module_hooks/0.1.0.hjson @@ -0,0 +1,25 @@ +{ + keyboard_pre_init: { + ret_type: void + args: void + } + keyboard_post_init: { + ret_type: void + args: void + } + pre_process_record: { + ret_type: bool + args: uint16_t keycode, keyrecord_t *record + call_params: keycode, record + } + process_record: { + ret_type: bool + args: uint16_t keycode, keyrecord_t *record + call_params: keycode, record + } + post_process_record: { + ret_type: void + args: uint16_t keycode, keyrecord_t *record + call_params: keycode, record + } +} |