2020-07-31 00:22:18 +02:00
|
|
|
#ifndef _SEATD_EVDEV_H
|
|
|
|
#define _SEATD_EVDEV_H
|
|
|
|
|
|
|
|
int evdev_revoke(int fd);
|
2020-08-01 03:23:56 +02:00
|
|
|
int path_is_evdev(const char *path);
|
|
|
|
|
|
|
|
#if defined(__linux__)
|
|
|
|
#include <sys/types.h>
|
2020-07-31 00:22:18 +02:00
|
|
|
int dev_is_evdev(dev_t device);
|
2020-08-01 03:23:56 +02:00
|
|
|
#endif
|
2020-07-31 00:22:18 +02:00
|
|
|
|
|
|
|
#endif
|