table of contents
SDL_ReadProcess(3) | SDL3 FUNCTIONS | SDL_ReadProcess(3) |
NAME¶
SDL_ReadProcess - Read all the output from a process.
HEADER FILE¶
Defined in SDL3/SDL_process.h
SYNOPSIS¶
#include "SDL3/SDL.h"
void * SDL_ReadProcess(SDL_Process *process, size_t *datasize, int *exitcode);
DESCRIPTION¶
If a process was created with I/O enabled, you can use this function to read the output. This function blocks until the process is complete, capturing all output, and providing the process exit code.
The data is allocated with a zero byte at the end (null terminated) for convenience. This extra byte is not included in the value reported via datasize .
The data should be freed with SDL_free ().
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns the data or NULL on failure; call
SDL_GetError () for more information.
THREAD SAFETY¶
This function is not thread safe.
AVAILABILITY¶
This function is available since SDL 3.1.3.
SEE ALSO¶
•(3), SDL_CreateProcess(3), •(3), SDL_CreateProcessWithProperties(3), •(3), SDL_DestroyProcess(3)
SDL 3.1.6 | Simple Directmedia Layer |