You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
290 B

#include <libinput.h>
#include <stdio.h>
int main()
{
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;
}