SDL_SaveFile

Function SDL_SaveFile 

Source
pub unsafe extern "C" fn SDL_SaveFile(
    file: *const c_char,
    data: *const c_void,
    datasize: usize,
) -> bool
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

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also