1 // SPDX-License-Identifier: MIT 2 /* 3 * Copyright © 2013 Red Hat, Inc. 4 */ 5 6 struct libevdev_uinput { 7 int fd; /**< file descriptor to uinput */ 8 int fd_is_managed; /**< do we need to close it? */ 9 char *name; /**< device name */ 10 char *syspath; /**< /sys path */ 11 char *devnode; /**< device node */ 12 time_t ctime[2]; /**< before/after UI_DEV_CREATE */ 13 }; 14