Gnome input devices manager
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.
 
 
 

26 lines
363 B

#include <stdlib.h>
#include <stdint.h>
#include <stddef.h>
#include <stdio.h>
#define DEVICE_NAME "HTX 4K"
void driver_init(void)
{
printf("Hello from G-Wolves HTX driver !\n");
}
uint32_t driver_getkey(void)
{
return 0;
}
char* driver_get_name(void)
{
return DEVICE_NAME;
}
char* driver_get_image(void)
{
return "g-wolves/htx/htx_0.png";
}