Function SDL_SaveFile
pub unsafe extern "C" fn SDL_SaveFile(
file: *const i8,
data: *const c_void,
datasize: usize,
) -> bool
Available on crate feature
dep_sdl3
only.Expand description
Save all the data into a file path.
§Parameters
file
: the path to write all available data into.data
: the data to be written. If datasize is 0, may be NULL or a invalid pointer.datasize
: the number of bytes to be written.
§Return value
Returns true on success or false on failure; call SDL_GetError()
for more
information.
§Thread safety
This function is not thread safe.
§Availability
This function is available since SDL 3.2.0.