mirror of
https://github.com/labwc/labwc.git
synced 2026-02-10 04:27:47 -05:00
This is a common practice in C projects, which simply enforces that each header must compile cleanly without implicit dependencies on other headers (see also the previous commit).
18 lines
320 B
C
18 lines
320 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#include "input/input.h"
|
|
#include "input/cursor.h"
|
|
#include "input/keyboard.h"
|
|
|
|
void
|
|
input_handlers_init(struct seat *seat)
|
|
{
|
|
cursor_init(seat);
|
|
keyboard_group_init(seat);
|
|
}
|
|
|
|
void
|
|
input_handlers_finish(struct seat *seat)
|
|
{
|
|
cursor_finish(seat);
|
|
keyboard_group_finish(seat);
|
|
}
|