1
0
Fork 0
forked from wry/wry

reexec: close evdev fds in a separate process

This commit is contained in:
Julian Orth 2025-04-24 17:44:52 +02:00
parent ca2201edeb
commit 419d75949c
3 changed files with 78 additions and 3 deletions

View file

@ -60,6 +60,10 @@ pub trait Backend: Any {
fn supports_presentation_feedback(&self) -> bool {
false
}
fn get_input_fds(&self) -> Vec<Rc<OwnedFd>> {
vec![]
}
}
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq)]