blob: edb8361683bce183f3442e85ebe5e6bfd33e48d9 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libgamepad_close_device(struct libgamepad_device *device)
{
if (device) {
if (device->close_fd)
close(device->fd);
if (device->dev)
libevdev_free(device->dev);
free(device->buttons);
free(device->absolute_axes);
free(device->relative_axes);
device->close_fd = 0;
device->dev = NULL;
device->buttons = NULL;
device->absolute_axes = NULL;
device->relative_axes = NULL;
}
}
|