aboutsummaryrefslogtreecommitdiff
path: root/include/evdev.h
blob: da578287b58f1f2f5bbcd7ef324b364d93f9cc98 (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__) || defined(__NetBSD__)
#include <sys/types.h>
int dev_is_evdev(dev_t device);
#endif

#endif