Move input handler init() and finish() functions to input/input.c

This commit is contained in:
Consolatis 2023-09-03 19:21:16 +02:00 committed by Johan Malm
parent b359b1560c
commit 797e743c8a
4 changed files with 32 additions and 4 deletions

10
include/input/input.h Normal file
View file

@ -0,0 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_INPUT_H
#define LABWC_INPUT_H
struct seat;
void input_handlers_init(struct seat *seat);
void input_handlers_finish(struct seat *seat);
#endif /* LABWC_INPUT_H */