Initial implementation of seatd and libseat

This commit is contained in:
Kenny Levinsen 2020-07-31 00:22:18 +02:00
parent f85434de66
commit 61716a2c77
32 changed files with 4744 additions and 0 deletions

9
include/evdev.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef _SEATD_EVDEV_H
#define _SEATD_EVDEV_H
#include <sys/types.h>
int evdev_revoke(int fd);
int dev_is_evdev(dev_t device);
#endif