blob: cb6c45608708aa0eb24bafcc08d72ea68c299af7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef INPUT_H
#define INPUT_H
#include <xkbcommon/xkbcommon.h>
#include "tofi.h"
void input_handle_keypress(struct tofi *tofi, xkb_keycode_t keycode);
void input_refresh_results(struct tofi *tofi);
#endif /* INPUT_H */
|