mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Fixed empty parameter list in signatures of internal functions.
This commit is contained in:
parent
818d1d3e80
commit
97aa577589
@ -189,7 +189,7 @@ SDL_SYS_HapticInit(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
SDL_SYS_NumHaptics()
|
SDL_SYS_NumHaptics(void)
|
||||||
{
|
{
|
||||||
return numhaptics;
|
return numhaptics;
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ SDL_SYS_HapticInit(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
SDL_SYS_NumHaptics()
|
SDL_SYS_NumHaptics(void)
|
||||||
{
|
{
|
||||||
return numhaptics;
|
return numhaptics;
|
||||||
}
|
}
|
||||||
|
@ -98,7 +98,7 @@ SDL_SYS_RemoveHapticDevice(SDL_hapticlist_item *prev, SDL_hapticlist_item *item)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
SDL_SYS_NumHaptics()
|
SDL_SYS_NumHaptics(void)
|
||||||
{
|
{
|
||||||
return numhaptics;
|
return numhaptics;
|
||||||
}
|
}
|
||||||
|
@ -363,12 +363,14 @@ SDL_SYS_JoystickInit(void)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return numjoysticks;
|
return numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
/* Support for device connect/disconnect is API >= 16 only,
|
/* Support for device connect/disconnect is API >= 16 only,
|
||||||
* so we poll every three seconds
|
* so we poll every three seconds
|
||||||
|
@ -204,12 +204,14 @@ SDL_SYS_JoystickInit(void)
|
|||||||
return (SDL_SYS_numjoysticks);
|
return (SDL_SYS_numjoysticks);
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return SDL_SYS_numjoysticks;
|
return SDL_SYS_numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -580,7 +580,7 @@ SDL_SYS_JoystickInit(void)
|
|||||||
|
|
||||||
/* Function to return the number of joystick devices plugged in right now */
|
/* Function to return the number of joystick devices plugged in right now */
|
||||||
int
|
int
|
||||||
SDL_SYS_NumJoysticks()
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
recDevice *device = gpDeviceList;
|
recDevice *device = gpDeviceList;
|
||||||
int nJoySticks = 0;
|
int nJoySticks = 0;
|
||||||
@ -598,7 +598,7 @@ SDL_SYS_NumJoysticks()
|
|||||||
/* Function to cause any queued joystick insertions to be processed
|
/* Function to cause any queued joystick insertions to be processed
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
SDL_SYS_JoystickDetect()
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
recDevice *device = gpDeviceList;
|
recDevice *device = gpDeviceList;
|
||||||
while (device) {
|
while (device) {
|
||||||
|
@ -37,12 +37,14 @@ SDL_SYS_JoystickInit(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -240,12 +240,14 @@ JoystickByIndex(int index)
|
|||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return numjoysticks;
|
return numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,12 +84,12 @@ extern "C"
|
|||||||
return (SDL_SYS_numjoysticks);
|
return (SDL_SYS_numjoysticks);
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return SDL_SYS_numjoysticks;
|
return SDL_SYS_numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -326,12 +326,14 @@ SDL_SYS_JoystickInit(void)
|
|||||||
return numjoysticks;
|
return numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return numjoysticks;
|
return numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -348,12 +348,14 @@ SDL_SYS_JoystickInit(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return numjoysticks;
|
return numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
#if SDL_USE_LIBUDEV
|
#if SDL_USE_LIBUDEV
|
||||||
SDL_UDEV_Poll();
|
SDL_UDEV_Poll();
|
||||||
|
@ -132,12 +132,12 @@ int SDL_SYS_JoystickInit(void)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -183,12 +183,14 @@ SDL_SYS_JoystickInit(void)
|
|||||||
return (SDL_SYS_numjoysticks);
|
return (SDL_SYS_numjoysticks);
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_SYS_NumJoysticks()
|
int
|
||||||
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
return SDL_SYS_numjoysticks;
|
return SDL_SYS_numjoysticks;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SYS_JoystickDetect()
|
void
|
||||||
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -307,7 +307,7 @@ SDL_SYS_JoystickInit(void)
|
|||||||
|
|
||||||
/* return the number of joysticks that are connected right now */
|
/* return the number of joysticks that are connected right now */
|
||||||
int
|
int
|
||||||
SDL_SYS_NumJoysticks()
|
SDL_SYS_NumJoysticks(void)
|
||||||
{
|
{
|
||||||
int nJoysticks = 0;
|
int nJoysticks = 0;
|
||||||
JoyStick_DeviceData *device = SYS_Joystick;
|
JoyStick_DeviceData *device = SYS_Joystick;
|
||||||
@ -321,7 +321,7 @@ SDL_SYS_NumJoysticks()
|
|||||||
|
|
||||||
/* detect any new joysticks being inserted into the system */
|
/* detect any new joysticks being inserted into the system */
|
||||||
void
|
void
|
||||||
SDL_SYS_JoystickDetect()
|
SDL_SYS_JoystickDetect(void)
|
||||||
{
|
{
|
||||||
JoyStick_DeviceData *pCurList = NULL;
|
JoyStick_DeviceData *pCurList = NULL;
|
||||||
|
|
||||||
|
@ -369,7 +369,7 @@ DestroyShaderProgram(GL_ShaderContext *ctx, GL_ShaderData *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
GL_ShaderContext *
|
GL_ShaderContext *
|
||||||
GL_CreateShaderContext()
|
GL_CreateShaderContext(void)
|
||||||
{
|
{
|
||||||
GL_ShaderContext *ctx;
|
GL_ShaderContext *ctx;
|
||||||
SDL_bool shaders_supported;
|
SDL_bool shaders_supported;
|
||||||
|
@ -121,7 +121,7 @@ static SDL_TLSEntry *SDL_generic_TLS;
|
|||||||
|
|
||||||
|
|
||||||
SDL_TLSData *
|
SDL_TLSData *
|
||||||
SDL_Generic_GetTLSData()
|
SDL_Generic_GetTLSData(void)
|
||||||
{
|
{
|
||||||
SDL_threadID thread = SDL_ThreadID();
|
SDL_threadID thread = SDL_ThreadID();
|
||||||
SDL_TLSEntry *entry;
|
SDL_TLSEntry *entry;
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
|
|
||||||
SDL_TLSData *
|
SDL_TLSData *
|
||||||
SDL_SYS_GetTLSData()
|
SDL_SYS_GetTLSData(void)
|
||||||
{
|
{
|
||||||
return SDL_Generic_GetTLSData();
|
return SDL_Generic_GetTLSData();
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ static pthread_key_t thread_local_storage = INVALID_PTHREAD_KEY;
|
|||||||
static SDL_bool generic_local_storage = SDL_FALSE;
|
static SDL_bool generic_local_storage = SDL_FALSE;
|
||||||
|
|
||||||
SDL_TLSData *
|
SDL_TLSData *
|
||||||
SDL_SYS_GetTLSData()
|
SDL_SYS_GetTLSData(void)
|
||||||
{
|
{
|
||||||
if (thread_local_storage == INVALID_PTHREAD_KEY && !generic_local_storage) {
|
if (thread_local_storage == INVALID_PTHREAD_KEY && !generic_local_storage) {
|
||||||
static SDL_SpinLock lock;
|
static SDL_SpinLock lock;
|
||||||
|
@ -153,7 +153,7 @@ SDL_SYS_DetachThread(SDL_Thread * thread)
|
|||||||
|
|
||||||
extern "C"
|
extern "C"
|
||||||
SDL_TLSData *
|
SDL_TLSData *
|
||||||
SDL_SYS_GetTLSData()
|
SDL_SYS_GetTLSData(void)
|
||||||
{
|
{
|
||||||
return SDL_Generic_GetTLSData();
|
return SDL_Generic_GetTLSData();
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ static DWORD thread_local_storage = TLS_OUT_OF_INDEXES;
|
|||||||
static SDL_bool generic_local_storage = SDL_FALSE;
|
static SDL_bool generic_local_storage = SDL_FALSE;
|
||||||
|
|
||||||
SDL_TLSData *
|
SDL_TLSData *
|
||||||
SDL_SYS_GetTLSData()
|
SDL_SYS_GetTLSData(void)
|
||||||
{
|
{
|
||||||
if (thread_local_storage == TLS_OUT_OF_INDEXES && !generic_local_storage) {
|
if (thread_local_storage == TLS_OUT_OF_INDEXES && !generic_local_storage) {
|
||||||
static SDL_SpinLock lock;
|
static SDL_SpinLock lock;
|
||||||
|
Loading…
Reference in New Issue
Block a user