I've been using SDL2 for development almost since it came out. Long story short, I stumbled upon the SDL dynamic apiAPI explanation. I've looked in SDL_Dynapi.cSDL_Dynapi.c to understand how it works. I get that the jump table can be updated with function pointers to newer versions of the functions, but what I don't get is how one would actually goes about doing that dynamically.
Did iI miss a function declaration, is there some specific function to call outside the application,? I have no idea how an updated dynapidynapi loads itself.