mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-05 13:29:47 -05:00
Moved headers to the correct place.
This commit is contained in:
parent
aca13320b3
commit
95a553dc51
6 changed files with 0 additions and 160 deletions
21
include/backend/drm/event.h
Normal file
21
include/backend/drm/event.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef EVENT_H
|
||||
#define EVENT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
enum otd_event_type {
|
||||
OTD_EV_NONE,
|
||||
OTD_EV_RENDER,
|
||||
OTD_EV_DISPLAY_REM,
|
||||
OTD_EV_DISPLAY_ADD,
|
||||
};
|
||||
|
||||
struct otd_event {
|
||||
enum otd_event_type type;
|
||||
struct otd_display *display;
|
||||
};
|
||||
|
||||
bool otd_get_event(struct otd *otd, struct otd_event *restrict ret);
|
||||
bool event_add(struct otd *otd, struct otd_display *disp, enum otd_event_type type);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue