SDL: SDL_loadso.h: add missing SDLCALL to SDL_LoadFunction()

From be2afeec841fd89bb4645390fd7fc1a14182fc83 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Thu, 26 Jan 2023 18:01:10 +0300
Subject: [PATCH] SDL_loadso.h: add missing SDLCALL to SDL_LoadFunction()

---
 include/SDL3/SDL_loadso.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/include/SDL3/SDL_loadso.h b/include/SDL3/SDL_loadso.h
index c5c564997a37..41439fd2d23d 100644
--- a/include/SDL3/SDL_loadso.h
+++ b/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.