storage: SDL_WriteStorageFile() wasn't marked as SDLCALL.

Fixes #9594.
This commit is contained in:
Ryan C. Gordon 2024-04-21 09:26:07 -04:00
parent c623bd2fdc
commit 7a36504952
No known key found for this signature in database
GPG key ID: FA148B892AB48044
4 changed files with 4 additions and 1 deletions

View file

@ -1054,3 +1054,4 @@ SDL_DYNAPI_PROC(size_t,SDL_wcsnlen,(const wchar_t *a, size_t b),(a,b),return)
SDL_DYNAPI_PROC(wchar_t*,SDL_wcsnstr,(const wchar_t *a, const wchar_t *b, size_t c),(a,b,c),return)
SDL_DYNAPI_PROC(wchar_t*,SDL_wcsstr,(const wchar_t *a, const wchar_t *b),(a,b),return)
SDL_DYNAPI_PROC(long,SDL_wcstol,(const wchar_t *a, wchar_t **b, int c),(a,b,c),return)
SDL_DYNAPI_PROC(int,SDL_WriteStorageFile,(SDL_Storage *a, const char *b, const void *c, Uint64 d),(a,b,c,d),return)