diff options
| author | 2017-04-02 23:29:12 +0200 | |
|---|---|---|
| committer | 2017-04-02 23:29:12 +0200 | |
| commit | 3e41cde9f99778ca30c03b97470c32780379db43 (patch) | |
| tree | 18e2376acae06563166b5ea8b8cd6368cb9cddae /quantum/process_keycode/process_audio.h | |
| parent | e7347ff0de93ff823462b3ff2b4136b44dc576c0 (diff) | |
| parent | 3448d5d4874a2775f85320a2be69edd241575d46 (diff) | |
| download | qmk_firmware-3e41cde9f99778ca30c03b97470c32780379db43.tar.gz | |
Merge pull request #19 from qmk/master
Merge from qmk
Diffstat (limited to 'quantum/process_keycode/process_audio.h')
| -rw-r--r-- | quantum/process_keycode/process_audio.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_audio.h b/quantum/process_keycode/process_audio.h new file mode 100644 index 000000000..7ac15b733 --- /dev/null +++ b/quantum/process_keycode/process_audio.h @@ -0,0 +1,11 @@ +#ifndef PROCESS_AUDIO_H +#define PROCESS_AUDIO_H + +bool process_audio(uint16_t keycode, keyrecord_t *record); +void process_audio_noteon(uint8_t note); +void process_audio_noteoff(uint8_t note); +void process_audio_all_notes_off(void); + +void audio_on_user(void); + +#endif
\ No newline at end of file |