#ifndef __HID_ROCCAT_COMMON_H1#define __HID_ROCCAT_COMMON_H23/*4* Copyright (c) 2011 Stefan Achatz <[email protected]>5*/67/*8* This program is free software; you can redistribute it and/or modify it9* under the terms of the GNU General Public License as published by the Free10* Software Foundation; either version 2 of the License, or (at your option)11* any later version.12*/1314#include <linux/usb.h>15#include <linux/types.h>1617int roccat_common_receive(struct usb_device *usb_dev, uint usb_command,18void *data, uint size);19int roccat_common_send(struct usb_device *usb_dev, uint usb_command,20void const *data, uint size);2122#endif232425