blob: 6ebd943fea48f105818941ee276fe169446d66d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _SEATD_EVDEV_H
#define _SEATD_EVDEV_H
int evdev_revoke(int fd);
int path_is_evdev(const char *path);
#if defined(__linux__)
#include <sys/types.h>
int dev_is_evdev(dev_t device);
#endif
#endif
|