Remove more reserved identifiers (#6925)

This commit is contained in:
Sylvain Becker 2022-12-29 22:58:16 +01:00 committed by GitHub
parent ce412c2c71
commit d7d3c22dbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 517 additions and 517 deletions

View file

@ -23,7 +23,7 @@
#ifndef SDL_sensor_c_h_
#define SDL_sensor_c_h_
struct _SDL_SensorDriver;
struct SDL_SensorDriver;
/* Useful functions and variables from SDL_sensor.c */

View file

@ -37,7 +37,7 @@ struct SDL_Sensor
float data[16]; /* The current state of the sensor */
struct _SDL_SensorDriver *driver;
struct SDL_SensorDriver *driver;
struct sensor_hwdata *hwdata; /* Driver dependent information */
@ -46,7 +46,7 @@ struct SDL_Sensor
struct SDL_Sensor *next; /* pointer to next sensor we have allocated */
};
typedef struct _SDL_SensorDriver
typedef struct SDL_SensorDriver
{
/* Function to scan the system for sensors.
* sensor 0 should be the system default sensor.