diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-12-08 16:31:24 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-12-08 17:00:23 +0100 |
| commit | 4da7a3e44d2bbd7b21ae05c7b6604748e7227227 (patch) | |
| tree | cbb81eed24dd2bed75998e4f8ffb803dd479a6df /src/input | |
| parent | de3532bd6b685c66015202a48d53e1b8fa4900f5 (diff) | |
| download | jancity-4da7a3e44d2bbd7b21ae05c7b6604748e7227227.tar.gz | |
wip2
Diffstat (limited to 'src/input')
| -rw-r--r-- | src/input/privinc/input_private.h | 19 | ||||
| -rw-r--r-- | src/input/src/vkeyboard.c | 13 |
2 files changed, 32 insertions, 0 deletions
diff --git a/src/input/privinc/input_private.h b/src/input/privinc/input_private.h new file mode 100644 index 0000000..2305c12 --- /dev/null +++ b/src/input/privinc/input_private.h @@ -0,0 +1,19 @@ +#ifndef INPUT_PRIVATE_H +#define INPUT_PRIVATE_H + +#include <input.h> +#include <stdbool.h> + +#ifdef __cplusplus +extern "C" +{ +#endif + +bool input_vkeyboard_available(void); +int input_vkeyboard_show(void); + +#ifdef __cplusplus +} +#endif + +#endif /* INPUT_PRIVATE_H */ diff --git a/src/input/src/vkeyboard.c b/src/input/src/vkeyboard.c new file mode 100644 index 0000000..17e13a0 --- /dev/null +++ b/src/input/src/vkeyboard.c @@ -0,0 +1,13 @@ +#include <input.h> +#include <input_private.h> +#include <stdbool.h> + +bool input_vkeyboard_available(void) +{ + return false; +} + +int input_vkeyboard_show(void) +{ + return -1; +} |
