mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-05-26 01:46:20 +08:00
main: Fixed compiler warning on Android.
(the NDK got upset about a function with void params using a bare `()`.)
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
#ifndef SDL_main_callbacks_h_
|
#ifndef SDL_main_callbacks_h_
|
||||||
#define SDL_main_callbacks_h_
|
#define SDL_main_callbacks_h_
|
||||||
|
|
||||||
SDL_bool SDL_HasMainCallbacks();
|
SDL_bool SDL_HasMainCallbacks(void);
|
||||||
int SDL_InitMainCallbacks(int argc, char *argv[], SDL_AppInit_func appinit, SDL_AppIterate_func _appiter, SDL_AppEvent_func _appevent, SDL_AppQuit_func _appquit);
|
int SDL_InitMainCallbacks(int argc, char *argv[], SDL_AppInit_func appinit, SDL_AppIterate_func _appiter, SDL_AppEvent_func _appevent, SDL_AppQuit_func _appquit);
|
||||||
int SDL_IterateMainCallbacks(SDL_bool pump_events);
|
int SDL_IterateMainCallbacks(SDL_bool pump_events);
|
||||||
void SDL_QuitMainCallbacks(void);
|
void SDL_QuitMainCallbacks(void);
|
||||||
|
|||||||
Reference in New Issue
Block a user