mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-06-13 14:32:57 -04:00
15 lines
330 B
C
15 lines
330 B
C
#ifndef BACKEND_SESSION_LINUX_H
|
|
#define BACKEND_SESSION_LINUX_H
|
|
|
|
#include "backend/session/session.h"
|
|
|
|
struct wlr_linux_device_manager {
|
|
struct wlr_device_manager base;
|
|
|
|
int netlink_fd;
|
|
struct wl_event_source *netlink_source;
|
|
};
|
|
|
|
struct wlr_device_manager *wlr_linux_device_manager_create(struct wlr_session *session);
|
|
|
|
#endif
|