SDL_GUIDFromString() renamed SDL_StringToGUID()

This commit is contained in:
Sam Lantinga 2024-07-22 10:33:25 -07:00
parent 5e12706ae0
commit ef21e31a9a
10 changed files with 30 additions and 16 deletions

View file

@ -75,7 +75,7 @@ typedef struct SDL_GUID {
*
* \since This function is available since SDL 3.0.0.
*
* \sa SDL_GUIDFromString
* \sa SDL_StringToGUID
*/
extern SDL_DECLSPEC const char * SDLCALL SDL_GUIDToString(SDL_GUID guid);
@ -93,7 +93,7 @@ extern SDL_DECLSPEC const char * SDLCALL SDL_GUIDToString(SDL_GUID guid);
*
* \sa SDL_GUIDToString
*/
extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GUIDFromString(const char *pchGUID);
extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_StringToGUID(const char *pchGUID);
/* Ends C function definitions when using C++ */
#ifdef __cplusplus