1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2023 Petr Vorel <[email protected]> 4 */ 5 6 #ifndef LAPI_UINPUT_H__ 7 #define LAPI_UINPUT_H__ 8 9 #include <linux/uinput.h> 10 11 #ifndef UI_GET_SYSNAME 12 # define UI_GET_SYSNAME(len) _IOC(_IOC_READ, UINPUT_IOCTL_BASE, 44, len) 13 #endif 14 15 #endif /* LAPI_UINPUT_H__ */ 16