mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
19 lines
308 B
C
19 lines
308 B
C
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
||
|
|
#include "input/cursor.h"
|
||
|
|
#include "input/input.h"
|
||
|
|
#include "input/keyboard.h"
|
||
|
|
|
||
|
|
void
|
||
|
|
input_handlers_init(struct seat *seat)
|
||
|
|
{
|
||
|
|
cursor_init(seat);
|
||
|
|
keyboard_init(seat);
|
||
|
|
}
|
||
|
|
|
||
|
|
void
|
||
|
|
input_handlers_finish(struct seat *seat)
|
||
|
|
{
|
||
|
|
cursor_finish(seat);
|
||
|
|
keyboard_finish(seat);
|
||
|
|
}
|