/* * Copyright (c) 2019 Luís Ferreira * Copyright (c) 2019 Daniel Stuart * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3 as published by * the Free Software Foundation. * */ #include #include #include "accel-scale.h" typedef enum { ACCEL_LOCATION_DISPLAY, ACCEL_LOCATION_BASE, } AccelLocation; AccelLocation setup_accel_location (GUdevDevice *device); gboolean parse_accel_location (const char *location, AccelLocation *value); gboolean parse_accel_label (const char *location, AccelLocation *value); gboolean get_accel_scale (GUdevDevice *device, AccelScale *scale_vec);