wlroots/include/backend/udev.h

19 lines
382 B
C
Raw Normal View History

2017-06-02 00:29:10 +00:00
#ifndef _WLR_INTERNAL_UDEV_H
#define _WLR_INTERNAL_UDEV_H
2017-05-01 03:20:48 +00:00
2017-05-01 05:49:18 +00:00
#include <libudev.h>
#include <wlr/session.h>
2017-05-03 09:28:44 +00:00
#include <wayland-server.h>
2017-06-02 00:29:10 +00:00
#include <wlr/backend/udev.h>
2017-05-01 05:49:18 +00:00
struct wlr_udev {
struct udev *udev;
struct udev_monitor *mon;
2017-05-03 09:28:44 +00:00
struct wl_event_source *event;
2017-06-02 00:29:10 +00:00
struct wl_signal invalidate_drm;
2017-05-01 05:49:18 +00:00
};
int wlr_udev_find_gpu(struct wlr_udev *udev, struct wlr_session *session);
2017-05-01 03:20:48 +00:00
#endif