SDL: SDL_GetProcessProperties is missing a SDLCALL

From f26dd520901a8decd9decbd14a91cc08733de803 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 4 Oct 2024 21:46:54 +0200
Subject: [PATCH] SDL_GetProcessProperties is missing a SDLCALL

---
 include/SDL3/SDL_process.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/SDL3/SDL_process.h b/include/SDL3/SDL_process.h
index 00308422559e8..1c63e57fe73e9 100644
--- a/include/SDL3/SDL_process.h
+++ b/include/SDL3/SDL_process.h
@@ -243,7 +243,7 @@ extern SDL_DECLSPEC SDL_Process *SDLCALL SDL_CreateProcessWithProperties(SDL_Pro
  *
  * \since This function is available since SDL 3.0.0.
  */
-extern SDL_DECLSPEC SDL_PropertiesID SDL_GetProcessProperties(SDL_Process *process);
+extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetProcessProperties(SDL_Process *process);
 
 #define SDL_PROP_PROCESS_PID_NUMBER         "SDL.process.pid"
 #define SDL_PROP_PROCESS_STDIN_POINTER      "SDL.process.stdin"