mirror of
https://github.com/libsdl-org/SDL.git
synced 2024-11-23 02:43:30 +08:00
Adding void to empty function prototype parenthesis
This commit is contained in:
parent
b15fab0207
commit
fd2a266549
@ -24,7 +24,7 @@ freely, subject to the following restrictions:
|
||||
#ifndef SDL_appid_h_
|
||||
#define SDL_appid_h_
|
||||
|
||||
extern const char *SDL_GetExeName();
|
||||
extern const char *SDL_GetAppID();
|
||||
extern const char *SDL_GetExeName(void);
|
||||
extern const char *SDL_GetAppID(void);
|
||||
|
||||
#endif // SDL_appid_h_
|
||||
|
@ -1254,7 +1254,7 @@ void SDL_PerformWarpMouseInWindow(SDL_Window *window, float x, float y, bool ign
|
||||
}
|
||||
}
|
||||
|
||||
void SDL_DisableMouseWarpEmulation()
|
||||
void SDL_DisableMouseWarpEmulation(void)
|
||||
{
|
||||
SDL_Mouse *mouse = SDL_GetMouse();
|
||||
|
||||
|
@ -158,7 +158,7 @@ SDL_X11_SYM(Status,XmbTextListToTextProperty,(Display* a,char** b,int c,XICCEnco
|
||||
SDL_X11_SYM(Region,XCreateRegion,(void),(),return)
|
||||
SDL_X11_SYM(int,XUnionRectWithRegion,(XRectangle *a, Region b, Region c),(a,b,c), return)
|
||||
SDL_X11_SYM(void,XDestroyRegion,(Region),(a),)
|
||||
SDL_X11_SYM(void,XrmInitialize,(),(),)
|
||||
SDL_X11_SYM(void,XrmInitialize,(void),(),)
|
||||
SDL_X11_SYM(char*,XResourceManagerString,(Display *display),(display),)
|
||||
SDL_X11_SYM(XrmDatabase,XrmGetStringDatabase,(char *data),(data),)
|
||||
SDL_X11_SYM(void,XrmDestroyDatabase,(XrmDatabase db),(db),)
|
||||
|
@ -33,7 +33,7 @@ Uint64 next(Uint64 state[2]) {
|
||||
return result;
|
||||
}
|
||||
static Uint64 rngState[2] = {1, 2};
|
||||
Uint32 getRandomUint32() {
|
||||
Uint32 getRandomUint32(void) {
|
||||
return (Uint32)next(rngState);
|
||||
}
|
||||
/* ================= Test Case Helper Functions ================== */
|
||||
|
@ -619,7 +619,7 @@ init_render_state(int msaa)
|
||||
|
||||
static int done = 0;
|
||||
|
||||
void loop()
|
||||
void loop(void)
|
||||
{
|
||||
SDL_Event event;
|
||||
int i;
|
||||
|
@ -35,7 +35,7 @@ static void DrawRects(SDL_Renderer *renderer)
|
||||
SDLTest_DrawString(renderer, 0.f, 0.f, "Relative Mode: Enabled");
|
||||
}
|
||||
|
||||
static void CenterMouse()
|
||||
static void CenterMouse(void)
|
||||
{
|
||||
/* Warp the mouse back to the center of the window with input focus to use the
|
||||
* center point for calculating future motion deltas.
|
||||
|
Loading…
Reference in New Issue
Block a user