Removed leading underscore in structure names
Fixes https://github.com/libsdl-org/SDL/issues/6856 Closes https://github.com/libsdl-org/SDL/pull/6914 Closes https://github.com/libsdl-org/SDL/pull/6915 Closes https://github.com/libsdl-org/SDL/pull/6916 Closes https://github.com/libsdl-org/SDL/pull/6917 Closes https://github.com/libsdl-org/SDL/pull/6918 Closes https://github.com/libsdl-org/SDL/pull/6919
This commit is contained in:
parent
960e9044b3
commit
701e965235
8 changed files with 20 additions and 20 deletions
|
@ -28,7 +28,7 @@
|
|||
#include "SDL_sensor_c.h"
|
||||
|
||||
/* The SDL sensor structure */
|
||||
struct _SDL_Sensor
|
||||
struct SDL_Sensor
|
||||
{
|
||||
SDL_SensorID instance_id; /* Device instance, monotonically increasing from 0 */
|
||||
char *name; /* Sensor name - system dependent */
|
||||
|
@ -43,7 +43,7 @@ struct _SDL_Sensor
|
|||
|
||||
int ref_count; /* Reference count for multiple opens */
|
||||
|
||||
struct _SDL_Sensor *next; /* pointer to next sensor we have allocated */
|
||||
struct SDL_Sensor *next; /* pointer to next sensor we have allocated */
|
||||
};
|
||||
|
||||
typedef struct _SDL_SensorDriver
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue