blob: a5aa4d5bf61a4dadd66072dd9965d857b5ec958f (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
const struct input_absinfo *
libgamepad_get_absolute_axis_info(struct libgamepad_device *device, uint16_t code)
{
return libevdev_get_abs_info(device->internals->dev, (unsigned int)code);
}
|