SDL_LoadObject - Man Page
Dynamically load a shared object.
Synopsis
#include <SDL3/SDL_loadso.h> SDL_SharedObject * SDL_LoadObject(const char *sofile);
Function 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
Referenced By
SDL_LoadFunction(3), SDL_SharedObject.3type(3), SDL_UnloadObject(3).
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS