process_steno.h 249 B

123456789101112
  1. #ifndef PROCESS_STENO_H
  2. #define PROCESS_STENO_H
  3. #include "quantum.h"
  4. #if defined(STENO_ENABLE) && !defined(VIRTSER_ENABLE)
  5. #error "must have virtser enabled to use steno"
  6. #endif
  7. bool process_steno(uint16_t keycode, keyrecord_t *record);
  8. #endif