mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-21 06:46:46 -04:00
13 lines
234 B
C
13 lines
234 B
C
#include <libudev.h>
|
|
#include <wayland-server-core.h>
|
|
|
|
#ifndef BACKEND_SESSION_DEV_UDEV_H
|
|
#define BACKEND_SESSION_DEV_UDEV_H
|
|
|
|
struct dev {
|
|
struct udev *udev;
|
|
struct udev_monitor *mon;
|
|
struct wl_event_source *udev_event;
|
|
};
|
|
|
|
#endif
|