mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
15 lines
349 B
C
15 lines
349 B
C
|
#ifndef evdev_hotplug_h
|
||
|
#define evdev_hotplug_h
|
||
|
|
||
|
int inputlib_hotplug_init(const char *path,
|
||
|
void (*created) (const char*),
|
||
|
void (*deleted) (const char *));
|
||
|
|
||
|
void inputlib_hotplug_close (void);
|
||
|
|
||
|
int inputlib_hotplug_add_select (fd_set *fdset, int *maxfd);
|
||
|
|
||
|
int inputlib_hotplug_check_select (fd_set *fdset);
|
||
|
|
||
|
#endif//evdev_hotplug_h
|