2019-11-11 23:01:05 +01:00
|
|
|
#include <libinput.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
int main(void)
|
2019-11-11 23:01:05 +01:00
|
|
|
{
|
|
|
|
struct libinput_interface interface;
|
|
|
|
interface.open_restricted = 0;
|
|
|
|
interface.close_restricted = 0;
|
|
|
|
struct libinput* li;
|
|
|
|
li = libinput_udev_create_context(&interface, NULL, NULL);
|
|
|
|
printf("Found Libinput.\n");
|
|
|
|
return 0;
|
|
|
|
}
|