소스 검색

SDL_loadso.h: add missing SDLCALL to SDL_LoadFunction()

Ozkan Sezer 2 년 전
부모
커밋
be2afeec84
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      include/SDL3/SDL_loadso.h

+ 1 - 2
include/SDL3/SDL_loadso.h

@@ -89,8 +89,7 @@ extern DECLSPEC void *SDLCALL SDL_LoadObject(const char *sofile);
  * \sa SDL_LoadObject
  * \sa SDL_UnloadObject
  */
-extern DECLSPEC SDL_FunctionPointer SDL_LoadFunction(void *handle,
-                                                     const char *name);
+extern DECLSPEC SDL_FunctionPointer SDLCALL SDL_LoadFunction(void *handle, const char *name);
 
 /**
  * Unload a shared object from memory.