#pragma section-numbers off #pragma disable-camelcase = SDL_LoadObject = Use this function to dynamically load a shared object and return a pointer to the object handle. <> == Syntax == {{{#!highlight cpp void* SDL_LoadObject(const char* sofile) }}} == Function Parameters == ||'''sofile'''||a system dependent name of the object file|| == Return Value == Returns a pointer to the object handle or NULL if there was an error; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp #include "SDL.h" /* Dynamically load mylib.so */ SDL_LoadObject("mylib.so"); }}} == Remarks == ''You can add useful comments here'' == Related Functions == .[[SDL_LoadFunction]] .[[SDL_UnloadObject]] ---- [[CategoryAPI]], [[CategorySharedObject]]