Files
furui/model.h
2026-04-01 22:30:31 +09:00

30 lines
975 B
C

/*
This file is part of Furui.
Furui is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Furui is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Furui. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef FURUI_MODEL_H
#define FURUI_MODEL_H
#include <libevdev/libevdev.h>
#define FURUI_MODEL_KEYBOARD_NAME "Furui Keyboard"
#define FURUI_MODEL_MOUSE_NAME "Furui Mouse"
extern struct libevdev *furui_model_keyboard(void);
extern struct libevdev *furui_model_mouse(void);
#endif /* FURUI_MODEL_H */