diff options
| author | Manuel Bentele | 2020-10-23 15:18:01 +0200 |
|---|---|---|
| committer | Manuel Bentele | 2020-10-23 15:18:01 +0200 |
| commit | dbb41ce2b7f309d394054a6bd1e33afd578798a5 (patch) | |
| tree | 6a31092063d9f2fb5ac5720ec6759040e793c3d5 /kernel/tests/include/tst_uinput.h | |
| parent | Set Linux kernel version to unknown if it is not detectable (diff) | |
| download | xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.gz xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.xz xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.zip | |
Move the source code of all xloop components to the common 'src' directory
Diffstat (limited to 'kernel/tests/include/tst_uinput.h')
| -rw-r--r-- | kernel/tests/include/tst_uinput.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/kernel/tests/include/tst_uinput.h b/kernel/tests/include/tst_uinput.h deleted file mode 100644 index cf351cd..0000000 --- a/kernel/tests/include/tst_uinput.h +++ /dev/null @@ -1,47 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0-or-later -/* - * Copyright (c) 2019 Cyril Hrubis <chrubis@suse.cz> - */ - -#ifndef TST_UINPUT_H__ -#define TST_UINPUT_H__ - -/** - * Tries to open the uinput device. - * - * Returns file descriptor on success, -1 on failure. - */ -int open_uinput(void); - -/** - * Creates virtual input device. - * - * @fd File descriptor returned by open_uinput(). - */ -void create_input_device(int fd); - -/** - * Parses /proc/bus/input/devices and returns the strings for our virtual device. - * If passing 'H' to it, it returns HANDLERS string. If passing 'S' to it, it - * returns SYSFS string. - * - * Returns newly allocated string, or NULL in a case of failure. - */ -char *get_input_field_value(char field); - -/** - * Sets up the virtual device to appear as a mouse, this must be called before - * the call to create_input_device(). - * - * @fd File descriptor as returned by open_uinput(). - */ -void setup_mouse_events(int fd); - -/** - * Destroys virtual input device. - * - * @fd File descriptor returned by open_uinput(). - */ -void destroy_input_device(int fd); - -#endif /* TST_UINPUT_H__ */ |
