mirror of
https://github.com/openharmony/third_party_libevdev.git
synced 2026-07-19 11:13:35 -04:00
5550295b5a
Signed-off-by: houchengyu2022 <houchengyu@huawei.com>
14 lines
354 B
C
14 lines
354 B
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* Copyright © 2013 Red Hat, Inc.
|
|
*/
|
|
|
|
struct libevdev_uinput {
|
|
int fd; /**< file descriptor to uinput */
|
|
int fd_is_managed; /**< do we need to close it? */
|
|
char *name; /**< device name */
|
|
char *syspath; /**< /sys path */
|
|
char *devnode; /**< device node */
|
|
time_t ctime[2]; /**< before/after UI_DEV_CREATE */
|
|
};
|