Function SDL_DestroyProcess
pub unsafe extern "C" fn SDL_DestroyProcess(process: *mut SDL_Process)
Available on crate feature
dep_sdl3
only.Expand description
Destroy a previously created process object.
Note that this does not stop the process, just destroys the SDL object used
to track it. If you want to stop the process you should use
SDL_KillProcess()
.
§Parameters
process
: The process object to destroy.
§Thread safety
This function is not thread safe.
§Availability
This function is available since SDL 3.2.0.