Scroll to navigation

SDL_LoadObject(3) SDL3 FUNCTIONS SDL_LoadObject(3)

NAME

SDL_LoadObject - Dynamically load a shared object.

SYNOPSIS

#include "SDL3/SDL.h"
void* SDL_LoadObject(const char *sofile);

FUNCTION PARAMETERS

a system-dependent name of the object file

RETURN VALUE

Returns an opaque pointer to the object handle or NULL if there was an error; call SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_LoadFunction(3), SDL_UnloadObject(3)

SDL 3.1.0 SDL