Update OpenRazer-win32 to OpenRazer commit 1316cb9

This commit is contained in:
Adam Honse 2021-03-08 23:39:00 -06:00
parent 9e9a91a048
commit 7531ea3b2f
3 changed files with 7 additions and 6 deletions

Binary file not shown.

Binary file not shown.

View file

@ -31,12 +31,13 @@ struct usb_host_interface {
};
struct device {
struct device *parent;
void *p;
const char *init_name;
void *driver_data;
unsigned int attr_count;
struct device_attribute * attr_list[64];
struct device *parent;
void *p;
const char *init_name;
struct bus_type* bus;
void *driver_data;
unsigned int attr_count;
struct device_attribute * attr_list[64];
struct usb_interface *parent_usb_interface;
};