mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-11-12 13:28:44 +00:00
Removed SDL_bool in favor of plain bool
We require stdbool.h in the build environment, so we might as well use the plain bool type. If your environment doesn't have stdbool.h, this simple replacement will suffice: typedef signed char bool;
This commit is contained in:
@@ -32,6 +32,6 @@ struct SDL_Process
|
||||
};
|
||||
|
||||
bool SDL_SYS_CreateProcessWithProperties(SDL_Process *process, SDL_PropertiesID props);
|
||||
bool SDL_SYS_KillProcess(SDL_Process *process, SDL_bool force);
|
||||
bool SDL_SYS_WaitProcess(SDL_Process *process, SDL_bool block, int *exitcode);
|
||||
bool SDL_SYS_KillProcess(SDL_Process *process, bool force);
|
||||
bool SDL_SYS_WaitProcess(SDL_Process *process, bool block, int *exitcode);
|
||||
void SDL_SYS_DestroyProcess(SDL_Process *process);
|
||||
|
||||
Reference in New Issue
Block a user