DRAFT |
SDL_LoadFunction
Use this function to look up the address of the a named function in the shared object and return it.
Contents
Syntax
void* SDL_LoadFunction(void* handle,
const char* name)
Function Parameters
handle |
a pointer to the object handle |
name |
a pointer to the named function in the shared object |
Return Value
green
Returns a pointer to the object handle (or NULL if there was an error). ???
Code Examples
You can add your code example here
Remarks
This address is no longer valid after calling SDL_UnloadObject().
