Function SDL_LoadObject

pub unsafe extern "C" fn SDL_LoadObject(
    sofile: *const i8,
) -> *mut SDL_SharedObject
Available on crate feature dep_sdl3 only.
Expand description

Dynamically load a shared object.

§Parameters

  • sofile: a system-dependent name of the object file.

§Return value

Returns an opaque pointer to the object handle or NULL 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