aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_steno.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-30 11:19:03 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2019-08-30 15:01:52 -0700
commitb624f32f944acdc59dcb130674c09090c5c404cb (patch)
treebc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/process_keycode/process_steno.h
parent61af76a10d00aba185b8338604171de490a13e3b (diff)
downloadqmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.tar.gz
qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.zip
clang-format changes
Diffstat (limited to 'quantum/process_keycode/process_steno.h')
-rw-r--r--quantum/process_keycode/process_steno.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/process_keycode/process_steno.h b/quantum/process_keycode/process_steno.h
index 71f973122..367542372 100644
--- a/quantum/process_keycode/process_steno.h
+++ b/quantum/process_keycode/process_steno.h
@@ -19,14 +19,14 @@
19#include "quantum.h" 19#include "quantum.h"
20 20
21#if defined(STENO_ENABLE) && !defined(VIRTSER_ENABLE) 21#if defined(STENO_ENABLE) && !defined(VIRTSER_ENABLE)
22 #error "must have virtser enabled to use steno" 22# error "must have virtser enabled to use steno"
23#endif 23#endif
24 24
25typedef enum { STENO_MODE_BOLT, STENO_MODE_GEMINI } steno_mode_t; 25typedef enum { STENO_MODE_BOLT, STENO_MODE_GEMINI } steno_mode_t;
26 26
27bool process_steno(uint16_t keycode, keyrecord_t *record); 27bool process_steno(uint16_t keycode, keyrecord_t *record);
28void steno_init(void); 28void steno_init(void);
29void steno_set_mode(steno_mode_t mode); 29void steno_set_mode(steno_mode_t mode);
30uint8_t *steno_get_state(void); 30uint8_t *steno_get_state(void);
31uint8_t *steno_get_chord(void); 31uint8_t *steno_get_chord(void);
32 32