labwc/include/idle.h
John Lindgren a2e0de7676 tree-wide: rename seat->seat to seat->wlr_seat for clarity
As we use "seat" to refer to the labwc struct, this makes it clearer
at a quick glance which code is using the wlr struct instead.
2026-03-22 00:56:49 +01:00

11 lines
267 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_IDLE_H
#define LABWC_IDLE_H
struct wl_display;
struct wlr_seat;
void idle_manager_create(struct wl_display *display);
void idle_manager_notify_activity(struct wlr_seat *wlr_seat);
#endif /* LABWC_IDLE_H */