SDL_loadso.h: add missing SDLCALL to SDL_LoadFunction()
parent
54540a82a0
commit
be2afeec84
|
@ -89,8 +89,7 @@ extern DECLSPEC void *SDLCALL SDL_LoadObject(const char *sofile);
|
||||||
* \sa SDL_LoadObject
|
* \sa SDL_LoadObject
|
||||||
* \sa SDL_UnloadObject
|
* \sa SDL_UnloadObject
|
||||||
*/
|
*/
|
||||||
extern DECLSPEC SDL_FunctionPointer SDL_LoadFunction(void *handle,
|
extern DECLSPEC SDL_FunctionPointer SDLCALL SDL_LoadFunction(void *handle, const char *name);
|
||||||
const char *name);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unload a shared object from memory.
|
* Unload a shared object from memory.
|
||||||
|
|
Loading…
Reference in New Issue