6 lines
252 B
C
6 lines
252 B
C
|
#pragma once
|
||
|
|
||
|
// This should only be used for a keyboard TTY interface. Userspace should translate keyboard scancodes by themselves.
|
||
|
char translate_scancode(unsigned char scancode, bool* ignore);
|
||
|
|
||
|
bool scancode_filter_released(unsigned char* scancode);
|